diff options
author | James Almer <jamrial@gmail.com> | 2017-10-26 14:50:36 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-26 15:21:59 -0300 |
commit | 4bb09bf5a04af7a76f8bb514edf7e755066b81cd (patch) | |
tree | 8b575bb470557d05f7b7e50e123bfb5a033bc8cd /libavformat/mov.c | |
parent | 4576ee100b9e645ff3a63e36c500ea4b3001a198 (diff) | |
parent | 604fbb3132e88727e496c96c92cfe02748c25a1a (diff) | |
download | ffmpeg-4bb09bf5a04af7a76f8bb514edf7e755066b81cd.tar.gz |
Merge commit '604fbb3132e88727e496c96c92cfe02748c25a1a'
* commit '604fbb3132e88727e496c96c92cfe02748c25a1a':
mov: Move code shared with CAF to a separate file
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index a5177e8f91..2ee67561e4 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -767,28 +767,6 @@ static int mov_read_hdlr(MOVContext *c, AVIOContext *pb, MOVAtom atom) return 0; } -int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb) -{ - AVStream *st; - int tag; - - if (fc->nb_streams < 1) - return 0; - st = fc->streams[fc->nb_streams-1]; - - avio_rb32(pb); /* version + flags */ - ff_mp4_read_descr(fc, pb, &tag); - if (tag == MP4ESDescrTag) { - ff_mp4_parse_es_descr(pb, NULL); - } else - avio_rb16(pb); /* ID */ - - ff_mp4_read_descr(fc, pb, &tag); - if (tag == MP4DecConfigDescrTag) - ff_mp4_read_dec_config_descr(fc, st, pb); - return 0; -} - static int mov_read_esds(MOVContext *c, AVIOContext *pb, MOVAtom atom) { return ff_mov_read_esds(c->fc, pb); @@ -2013,20 +1991,6 @@ static int mov_read_stco(MOVContext *c, AVIOContext *pb, MOVAtom atom) return 0; } -/** - * Compute codec id for 'lpcm' tag. - * See CoreAudioTypes and AudioStreamBasicDescription at Apple. - */ -enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags) -{ - /* lpcm flags: - * 0x1 = float - * 0x2 = big-endian - * 0x4 = signed - */ - return ff_get_pcm_codec_id(bps, flags & 1, flags & 2, flags & 4 ? -1 : 0); -} - static int mov_codec_id(AVStream *st, uint32_t format) { int id = ff_codec_get_id(ff_codec_movaudio_tags, format); |