summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Schmidt <jan@centricular.com>2016-11-02 11:46:07 +1100
committerJan Schmidt <jan@centricular.com>2016-11-02 11:46:07 +1100
commit324cc4dc4ae1ccb31092a13ba923561da4027673 (patch)
treeedf33c295324d87c9401a2cbe43a25377feacd4d
parent8ff5dd802932a6f9c33f80e2750262359797a78b (diff)
isomp4: Don't use gst_video_colorimetry_to_string_full()
The API was reverted. Just use the plain gst_video_colorimetry_to_string() function.
-rw-r--r--gst/isomp4/qtdemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c
index a1588a578..d55311517 100644
--- a/gst/isomp4/qtdemux.c
+++ b/gst/isomp4/qtdemux.c
@@ -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);