2003-02-16 00:05:07 +00:00
|
|
|
/*
|
2003-02-23 23:23:10 +00:00
|
|
|
mkvmerge -- utility for splicing together matroska files
|
2003-02-16 00:05:07 +00:00
|
|
|
from component media subtypes
|
|
|
|
|
|
|
|
r_mp3.h
|
|
|
|
|
|
|
|
Written by Moritz Bunkus <moritz@bunkus.org>
|
|
|
|
|
|
|
|
Distributed under the GPL
|
|
|
|
see the file COPYING for details
|
|
|
|
or visit http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*/
|
|
|
|
|
2003-02-23 23:23:10 +00:00
|
|
|
/*!
|
|
|
|
\file
|
2003-02-26 19:20:26 +00:00
|
|
|
\version \$Id: r_mp3.h,v 1.4 2003/02/26 19:20:26 mosu Exp $
|
2003-02-23 23:23:10 +00:00
|
|
|
\brief class definitions for the MP3 reader module
|
|
|
|
\author Moritz Bunkus <moritz @ bunkus.org>
|
|
|
|
*/
|
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
#ifndef __R_MP3_H
|
|
|
|
#define __R_MP3_H
|
2003-02-16 00:05:07 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2003-02-23 23:23:10 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "error.h"
|
2003-02-16 00:05:07 +00:00
|
|
|
#include "queue.h"
|
|
|
|
|
|
|
|
#include "p_mp3.h"
|
|
|
|
|
|
|
|
class mp3_reader_c: public generic_reader_c {
|
2003-02-26 19:20:26 +00:00
|
|
|
private:
|
|
|
|
unsigned char *chunk;
|
|
|
|
FILE *file;
|
|
|
|
class mp3_packetizer_c *mp3packetizer;
|
|
|
|
u_int64_t bytes_processed;
|
|
|
|
u_int64_t size;
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
public:
|
|
|
|
mp3_reader_c(char *fname, audio_sync_t *nasync, range_t *nrange)
|
|
|
|
throw (error_c);
|
|
|
|
virtual ~mp3_reader_c();
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual int read();
|
|
|
|
virtual packet_t *get_packet();
|
2003-02-23 23:23:10 +00:00
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual int display_priority();
|
|
|
|
virtual void display_progress();
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
static int probe_file(FILE *file, u_int64_t size);
|
2003-02-16 00:05:07 +00:00
|
|
|
};
|
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
#endif // __R_MP3_H
|