Add variant=h263p to ffenc_h263p caps

Original commit message from CVS:
Add variant=h263p to ffenc_h263p caps
This commit is contained in:
Philippe Kalaf 2006-05-16 20:03:00 +00:00
parent 4edb41e367
commit 6dc864a807
2 changed files with 6 additions and 3 deletions

2
common

@ -1 +1 @@
Subproject commit e41606ab2c6a31be473de511b5fd776bd2593b56
Subproject commit 3062df90281144cbdb55bd58ee9f0714ab346c23

View file

@ -163,12 +163,15 @@ gst_ffmpeg_codecid_to_caps (enum CodecID codec_id,
/* this is a special ID - don't need it in GStreamer, I think */
break;
/* I don't know the exact differences between those... Anyone? */
case CODEC_ID_H263:
case CODEC_ID_H263P:
caps = GST_FF_VID_CAPS_NEW ("video/x-h263", NULL);
break;
case CODEC_ID_H263P:
caps = GST_FF_VID_CAPS_NEW ("video/x-h263",
"variant", G_TYPE_STRING, "h263p", NULL);
break;
case CODEC_ID_H263I:
caps = GST_FF_VID_CAPS_NEW ("video/x-intel-h263", NULL);
break;