mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
isomp4: Don't use gst_video_colorimetry_to_string_full()
The API was reverted. Just use the plain gst_video_colorimetry_to_string() function.
This commit is contained in:
parent
8ff5dd8029
commit
324cc4dc4a
1 changed files with 1 additions and 1 deletions
|
@ -7550,7 +7550,7 @@ gst_qtdemux_configure_stream (GstQTDemux * qtdemux, QtDemuxStream * stream)
|
||||||
stream->colorimetry.matrix ||
|
stream->colorimetry.matrix ||
|
||||||
stream->colorimetry.transfer || stream->colorimetry.primaries) {
|
stream->colorimetry.transfer || stream->colorimetry.primaries) {
|
||||||
gchar *colorimetry =
|
gchar *colorimetry =
|
||||||
gst_video_colorimetry_to_string_full (&stream->colorimetry, TRUE);
|
gst_video_colorimetry_to_string (&stream->colorimetry);
|
||||||
gst_caps_set_simple (stream->caps, "colorimetry", G_TYPE_STRING,
|
gst_caps_set_simple (stream->caps, "colorimetry", G_TYPE_STRING,
|
||||||
colorimetry, NULL);
|
colorimetry, NULL);
|
||||||
g_free (colorimetry);
|
g_free (colorimetry);
|
||||||
|
|
Loading…
Reference in a new issue