diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-12-03 17:22:21 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-12-05 12:40:57 +0000 |
commit | 93dc8ed0a113ba0c66fe1191f942766d82664514 (patch) | |
tree | 449842e60d6ce4671b0c510c981b8fa49043591f /libavformat/pcm.h | |
parent | 99efd596267248ba5eae1b0e540d880368a402c3 (diff) | |
download | ffmpeg-93dc8ed0a113ba0c66fe1191f942766d82664514.tar.gz |
pcmdec: move read_packet function to pcm.c so it can be shared with other demuxers
While here remove pts/dts code, it is apparently not needed and cause
problems for demuxers that will use such function.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/pcm.h')
-rw-r--r-- | libavformat/pcm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/pcm.h b/libavformat/pcm.h index 60d8eb3da0..9af36d5a2e 100644 --- a/libavformat/pcm.h +++ b/libavformat/pcm.h @@ -24,6 +24,7 @@ #include "avformat.h" +int ff_pcm_read_packet(AVFormatContext *s, AVPacket *pkt); int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags); |