diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2010-08-30 21:17:34 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-08-30 21:17:34 +0000 |
commit | e94204dfd88b80c21f8756ea354dc12e1c4b206e (patch) | |
tree | 65a2d898465227b31bb1ebc700312783e9564720 /libavformat/raw.h | |
parent | 79ce0f002e3078ceb68375dd80805cafbd2fcf9e (diff) | |
download | ffmpeg-e94204dfd88b80c21f8756ea354dc12e1c4b206e.tar.gz |
move pcm demuxers to their own file
Originally committed as revision 24993 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/raw.h')
-rw-r--r-- | libavformat/raw.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavformat/raw.h b/libavformat/raw.h index 73d1d5d069..9621e0c45d 100644 --- a/libavformat/raw.h +++ b/libavformat/raw.h @@ -24,11 +24,10 @@ #include "avformat.h" -int pcm_read_seek(AVFormatContext *s, - int stream_index, int64_t timestamp, int flags); - int ff_raw_write_packet(AVFormatContext *s, AVPacket *pkt); +int ff_raw_read_header(AVFormatContext *s, AVFormatParameters *ap); + int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt); int ff_raw_audio_read_header(AVFormatContext *s, AVFormatParameters *ap); |