mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
gstffmpegcodecmap: Add mapping for Indeo 5
This commit is contained in:
parent
9c497b6010
commit
5678ff1ac0
1 changed files with 8 additions and 0 deletions
|
@ -880,6 +880,11 @@ gst_ffmpeg_codecid_to_caps (enum CodecID codec_id,
|
|||
caps = gst_ff_vid_caps_new (context, codec_id, "video/x-h264", NULL);
|
||||
break;
|
||||
|
||||
case CODEC_ID_INDEO5:
|
||||
caps = gst_ff_vid_caps_new (context, codec_id, "video/x-indeo",
|
||||
"indeoversion", G_TYPE_INT, 5, NULL);
|
||||
break;
|
||||
|
||||
case CODEC_ID_INDEO3:
|
||||
caps = gst_ff_vid_caps_new (context, codec_id, "video/x-indeo",
|
||||
"indeoversion", G_TYPE_INT, 3, NULL);
|
||||
|
@ -2970,6 +2975,9 @@ gst_ffmpeg_caps_to_codecid (const GstCaps * caps, AVCodecContext * context)
|
|||
|
||||
if (gst_structure_get_int (structure, "indeoversion", &indeoversion)) {
|
||||
switch (indeoversion) {
|
||||
case 5:
|
||||
id = CODEC_ID_INDEO5;
|
||||
break;
|
||||
case 3:
|
||||
id = CODEC_ID_INDEO3;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue