mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
s/gst_caps_simplify/gst_caps_do_simplify/
Original commit message from CVS: * ext/hermes/gsthermescolorspace.c: (gst_hermes_colorspace_caps_remove_format_info): * gst/colorspace/gstcolorspace.c: (gst_colorspace_caps_remove_format_info): * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcolorspace_caps_remove_format_info): s/gst_caps_simplify/gst_caps_do_simplify/
This commit is contained in:
parent
0f6862668b
commit
29e86d6493
2 changed files with 12 additions and 3 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2004-04-22 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
|
* ext/hermes/gsthermescolorspace.c:
|
||||||
|
(gst_hermes_colorspace_caps_remove_format_info):
|
||||||
|
* gst/colorspace/gstcolorspace.c:
|
||||||
|
(gst_colorspace_caps_remove_format_info):
|
||||||
|
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
|
||||||
|
(gst_ffmpegcolorspace_caps_remove_format_info):
|
||||||
|
s/gst_caps_simplify/gst_caps_do_simplify/
|
||||||
|
|
||||||
2004-04-22 Benjamin Otte <otte@gnome.org>
|
2004-04-22 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
* gst-libs/gst/riff/riff-media.c:
|
* gst-libs/gst/riff/riff-media.c:
|
||||||
|
|
|
@ -125,9 +125,8 @@ gst_ffmpegcolorspace_caps_remove_format_info (GstCaps * caps)
|
||||||
gst_structure_remove_field (structure, "blue_mask");
|
gst_structure_remove_field (structure, "blue_mask");
|
||||||
}
|
}
|
||||||
|
|
||||||
rgbcaps = gst_caps_simplify (caps);
|
gst_caps_do_simplify (caps);
|
||||||
gst_caps_free (caps);
|
rgbcaps = gst_caps_copy (caps);
|
||||||
caps = gst_caps_copy (rgbcaps);
|
|
||||||
|
|
||||||
for (i = 0; i < gst_caps_get_size (rgbcaps); i++) {
|
for (i = 0; i < gst_caps_get_size (rgbcaps); i++) {
|
||||||
structure = gst_caps_get_structure (rgbcaps, i);
|
structure = gst_caps_get_structure (rgbcaps, i);
|
||||||
|
|
Loading…
Reference in a new issue