From 57375cf664a046f9d8707183f5c31fdb95616588 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 24 May 2007 15:16:59 +0000 Subject: [PATCH] gst-libs/gst/riff/riff-media.c: Don't add channels and rate fields to the template caps for audio/x-dts, as wavparse ... Original commit message from CVS: * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps): Don't add channels and rate fields to the template caps for audio/x-dts, as wavparse might not always be able to set them, which would then lead to 'caps are not a real subset of the template caps' warnings. --- ChangeLog | 8 ++++++++ gst-libs/gst/riff/riff-media.c | 2 ++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 3e0a26c847..4c5db41a0b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-05-24 Tim-Philipp Müller + + * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps): + Don't add channels and rate fields to the template caps for + audio/x-dts, as wavparse might not always be able to set them, + which would then lead to 'caps are not a real subset of the + template caps' warnings. + 2007-05-24 Jan Schmidt * gst/playback/gstplaybasebin.c: (new_decoded_pad_full): diff --git a/gst-libs/gst/riff/riff-media.c b/gst-libs/gst/riff/riff-media.c index 43cd39f946..16bdae4cde 100644 --- a/gst-libs/gst/riff/riff-media.c +++ b/gst-libs/gst/riff/riff-media.c @@ -1000,6 +1000,8 @@ gst_riff_create_audio_caps (guint16 codec_id, caps = gst_caps_new_simple ("audio/x-dts", NULL); if (codec_name) *codec_name = g_strdup ("DTS audio"); + /* wavparse is not always able to specify rate/channels for DTS-in-wav */ + rate_chan = FALSE; break; case GST_RIFF_WAVE_FORMAT_AAC: {