diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2017-09-20 03:31:48 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2017-09-20 03:31:48 +0200 |
commit | b4093e60c51af493a6dad7819264ef769736227f (patch) | |
tree | a125588e37150443b2323af71c79bddf95d04ca1 /libavformat/caf.c | |
parent | e428e5ded6266d8e68cecbd9953fdaba55b097e1 (diff) | |
download | ffmpeg-b4093e60c51af493a6dad7819264ef769736227f.tar.gz |
lavf/caf: Support demuxing Opus.
Introduced in macOS High Sierra and iOS 11.
Diffstat (limited to 'libavformat/caf.c')
-rw-r--r-- | libavformat/caf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/caf.c b/libavformat/caf.c index 8d39415794..fe242ff032 100644 --- a/libavformat/caf.c +++ b/libavformat/caf.c @@ -52,6 +52,7 @@ const AVCodecTag ff_codec_caf_tags[] = { { AV_CODEC_ID_MP2, MKTAG('.','m','p','2') }, { AV_CODEC_ID_MP3, MKTAG('.','m','p','3') }, { AV_CODEC_ID_MP3, MKTAG('m','s', 0 ,'U') }, + { AV_CODEC_ID_OPUS, MKTAG('o','p','u','s') }, { AV_CODEC_ID_PCM_ALAW, MKTAG('a','l','a','w') }, { AV_CODEC_ID_PCM_MULAW, MKTAG('u','l','a','w') }, { AV_CODEC_ID_QCELP, MKTAG('Q','c','l','p') }, |