mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +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);
|
||||
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:
|
||||
caps = gst_ff_vid_caps_new (context, codec_id, "video/x-indeo",
|
||||
"indeoversion", G_TYPE_INT, 3, NULL);
|
||||
|
@ -3162,6 +3167,9 @@ gst_ffmpeg_caps_to_codecid (const GstCaps * caps, AVCodecContext * context)
|
|||
case 5:
|
||||
id = CODEC_ID_INDEO5;
|
||||
break;
|
||||
case 4:
|
||||
id = CODEC_ID_INDEO4;
|
||||
break;
|
||||
case 3:
|
||||
id = CODEC_ID_INDEO3;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue