mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
avcodecmap: Add mapping for Opus audio decoder
Make avdec_opus work. https://bugzilla.gnome.org/show_bug.cgi?id=773672
This commit is contained in:
parent
d634d9fac3
commit
efe5797041
1 changed files with 10 additions and 0 deletions
|
@ -2108,6 +2108,16 @@ gst_ffmpeg_codecid_to_caps (enum AVCodecID codec_id,
|
|||
}
|
||||
break;
|
||||
|
||||
case AV_CODEC_ID_OPUS:
|
||||
/* Note that ffmpeg has no encoder yet, but just for safety. In the
|
||||
* encoder case, we want to add things like samplerate, channels... */
|
||||
if (!encode) {
|
||||
/* FIXME: can ffmpeg handle multichannel Opus? */
|
||||
caps = gst_caps_new_simple ("audio/x-opus",
|
||||
"channel-mapping-family", G_TYPE_INT, 0, NULL);
|
||||
}
|
||||
break;
|
||||
|
||||
case AV_CODEC_ID_S302M:
|
||||
caps = gst_caps_new_empty_simple ("audio/x-smpte-302m");
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue