mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
codecmap: Add mapping for Indeo 4 video codec
This commit is contained in:
parent
db8a94fcfb
commit
0a16f7edf6
1 changed files with 8 additions and 0 deletions
|
@ -906,6 +906,11 @@ gst_ffmpeg_codecid_to_caps (enum CodecID codec_id,
|
||||||
"indeoversion", G_TYPE_INT, 5, NULL);
|
"indeoversion", G_TYPE_INT, 5, NULL);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case CODEC_ID_INDEO4:
|
||||||
|
caps = gst_ff_vid_caps_new (context, codec_id, "video/x-indeo",
|
||||||
|
"indeoversion", G_TYPE_INT, 4, NULL);
|
||||||
|
break;
|
||||||
|
|
||||||
case CODEC_ID_INDEO3:
|
case CODEC_ID_INDEO3:
|
||||||
caps = gst_ff_vid_caps_new (context, codec_id, "video/x-indeo",
|
caps = gst_ff_vid_caps_new (context, codec_id, "video/x-indeo",
|
||||||
"indeoversion", G_TYPE_INT, 3, NULL);
|
"indeoversion", G_TYPE_INT, 3, NULL);
|
||||||
|
@ -3162,6 +3167,9 @@ gst_ffmpeg_caps_to_codecid (const GstCaps * caps, AVCodecContext * context)
|
||||||
case 5:
|
case 5:
|
||||||
id = CODEC_ID_INDEO5;
|
id = CODEC_ID_INDEO5;
|
||||||
break;
|
break;
|
||||||
|
case 4:
|
||||||
|
id = CODEC_ID_INDEO4;
|
||||||
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
id = CODEC_ID_INDEO3;
|
id = CODEC_ID_INDEO3;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue