mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
gst-libs/gst/riff/riff-media.c: mp42/mp43 (no caps) exist too.
Original commit message from CVS: * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps_with_data): mp42/mp43 (no caps) exist too. * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps): Set pixel_width/height; we've got them in-caps. * gst/typefind/gsttypefindfunctions.c: (plugin_init): * gst/wavparse/gstwavparse.c: (plugin_init): Both are valid primary. * sys/oss/gstossmixer.c: Remove i18n hack and enable translations.
This commit is contained in:
parent
55965ea86f
commit
931758cb24
2 changed files with 15 additions and 0 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
||||||
|
2004-07-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
|
* gst-libs/gst/riff/riff-media.c:
|
||||||
|
(gst_riff_create_video_caps_with_data):
|
||||||
|
mp42/mp43 (no caps) exist too.
|
||||||
|
* gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
|
||||||
|
Set pixel_width/height; we've got them in-caps.
|
||||||
|
* gst/typefind/gsttypefindfunctions.c: (plugin_init):
|
||||||
|
* gst/wavparse/gstwavparse.c: (plugin_init):
|
||||||
|
Both are valid primary.
|
||||||
|
* sys/oss/gstossmixer.c:
|
||||||
|
Remove i18n hack and enable translations.
|
||||||
|
|
||||||
2004-07-15 Benjamin Otte <otte@gnome.org>
|
2004-07-15 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
|
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
|
||||||
|
|
|
@ -191,6 +191,7 @@ gst_riff_create_video_caps_with_data (guint32 codec_fcc,
|
||||||
*codec_name = g_strdup ("Microsoft MPEG-4 4.1");
|
*codec_name = g_strdup ("Microsoft MPEG-4 4.1");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case GST_MAKE_FOURCC ('m', 'p', '4', '2'):
|
||||||
case GST_MAKE_FOURCC ('M', 'P', '4', '2'):
|
case GST_MAKE_FOURCC ('M', 'P', '4', '2'):
|
||||||
caps = gst_caps_new_simple ("video/x-msmpeg",
|
caps = gst_caps_new_simple ("video/x-msmpeg",
|
||||||
"msmpegversion", G_TYPE_INT, 42, NULL);
|
"msmpegversion", G_TYPE_INT, 42, NULL);
|
||||||
|
@ -198,6 +199,7 @@ gst_riff_create_video_caps_with_data (guint32 codec_fcc,
|
||||||
*codec_name = g_strdup ("Microsoft MPEG-4 4.2");
|
*codec_name = g_strdup ("Microsoft MPEG-4 4.2");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case GST_MAKE_FOURCC ('m', 'p', '4', '3'):
|
||||||
case GST_MAKE_FOURCC ('M', 'P', '4', '3'):
|
case GST_MAKE_FOURCC ('M', 'P', '4', '3'):
|
||||||
caps = gst_caps_new_simple ("video/x-msmpeg",
|
caps = gst_caps_new_simple ("video/x-msmpeg",
|
||||||
"msmpegversion", G_TYPE_INT, 43, NULL);
|
"msmpegversion", G_TYPE_INT, 43, NULL);
|
||||||
|
|
Loading…
Reference in a new issue