Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-09-20 04:31:48 +0300
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-09-20 04:31:48 +0300
commitb4093e60c51af493a6dad7819264ef769736227f (patch)
treea125588e37150443b2323af71c79bddf95d04ca1 /libavformat/caf.c
parente428e5ded6266d8e68cecbd9953fdaba55b097e1 (diff)
lavf/caf: Support demuxing Opus.
Introduced in macOS High Sierra and iOS 11.
Diffstat (limited to 'libavformat/caf.c')
-rw-r--r--libavformat/caf.c1
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') },