diff options
author | Peter Ross <pross@xvid.org> | 2009-09-16 11:35:01 +0000 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2009-09-16 11:35:01 +0000 |
commit | 2d423666c0c01e26c64ab515078c0120945a85dc (patch) | |
tree | 53096a782d7e2534cb7ddb7e3936ced44864b867 /libavformat/isom.h | |
parent | fa77dd639da796b32d84bed2a00d64b2dd434707 (diff) | |
download | ffmpeg-2d423666c0c01e26c64ab515078c0120945a85dc.tar.gz |
Make mov LPCM and AAC parsing functions public
Originally committed as revision 19878 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index 445a900b05..7799a09257 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -137,4 +137,8 @@ typedef struct MOVContext { int itunes_metadata; ///< metadata are itunes style } MOVContext; +int ff_mp4_read_descr_len(ByteIOContext *pb); +int ff_mov_read_esds(AVFormatContext *fc, ByteIOContext *pb, MOVAtom atom); +enum CodecID ff_mov_get_lpcm_codec_id(int bps, int flags); + #endif /* AVFORMAT_ISOM_H */ |