mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
avcodecmap: Add mapping for G729 caps
https://bugzilla.gnome.org/show_bug.cgi?id=766333
This commit is contained in:
parent
438d6b3760
commit
445a301844
1 changed files with 5 additions and 0 deletions
|
@ -2133,6 +2133,11 @@ gst_ffmpeg_codecid_to_caps (enum AVCodecID codec_id,
|
|||
gst_ff_aud_caps_new (context, NULL, codec_id, encode,
|
||||
"audio/x-twin-vq", NULL);
|
||||
break;
|
||||
case AV_CODEC_ID_G729:
|
||||
caps =
|
||||
gst_ff_aud_caps_new (context, NULL, codec_id, encode, "audio/G729",
|
||||
NULL);
|
||||
break;
|
||||
default:
|
||||
GST_DEBUG ("Unknown codec ID %d, please add mapping here", codec_id);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue