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:
Jan Schmidt 2016-11-02 11:46:07 +11:00
parent 8ff5dd8029
commit 324cc4dc4a

View file

@ -7550,7 +7550,7 @@ gst_qtdemux_configure_stream (GstQTDemux * qtdemux, QtDemuxStream * stream)
stream->colorimetry.matrix ||
stream->colorimetry.transfer || stream->colorimetry.primaries) {
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,
colorimetry, NULL);
g_free (colorimetry);