diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2007-03-02 18:24:14 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-03-02 18:24:14 +0000 |
commit | 6ca3c959b6d13112e2e7ff100e36d8a11a26f20e (patch) | |
tree | a9187c79be45f3c6d18a5f0e804d0c7a5cd0a24a /gst | |
parent | c8e4999eb02d68383f9c59aedd58f8b977969afa (diff) | |
download | gst-plugins-bad-6ca3c959b6d13112e2e7ff100e36d8a11a26f20e.tar.gz gst-plugins-bad-6ca3c959b6d13112e2e7ff100e36d8a11a26f20e.tar.bz2 gst-plugins-bad-6ca3c959b6d13112e2e7ff100e36d8a11a26f20e.zip |
ext/dts/gstdtsdec.c: A few small clean-ups.
Original commit message from CVS:
* ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_sink_event):
A few small clean-ups.
* gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
More debug output for failure cases.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/real/gstrealaudiodec.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/gst/real/gstrealaudiodec.c b/gst/real/gstrealaudiodec.c index 9e167578..3dba6512 100644 --- a/gst/real/gstrealaudiodec.c +++ b/gst/real/gstrealaudiodec.c @@ -237,8 +237,10 @@ gst_real_audio_dec_setcaps (GstPad * pad, GstCaps * caps) if (funcs.SetDLLAccessPath) funcs.SetDLLAccessPath (DEFAULT_PATH); - if ((res = funcs.RAOpenCodec2 (&context, NULL))) + if ((res = funcs.RAOpenCodec2 (&context, NULL))) { + GST_DEBUG_OBJECT (dec, "RAOpenCodec2() failed"); goto could_not_initialize; + } data.samplerate = rate; data.width = width; @@ -249,15 +251,19 @@ gst_real_audio_dec_setcaps (GstPad * pad, GstCaps * caps) data.datalen = buf ? GST_BUFFER_SIZE (buf) : 0; data.data = buf ? GST_BUFFER_DATA (buf) : NULL; - if ((res = funcs.RAInitDecoder (context, &data))) + if ((res = funcs.RAInitDecoder (context, &data))) { + GST_DEBUG_OBJECT (dec, "RAInitDecoder() failed"); goto could_not_initialize; + } - if (funcs.RASetPwd) + if (funcs.RASetPwd) { funcs.RASetPwd (dec->context, dec->pwd ? dec->pwd : DEFAULT_PWD); + } - res = funcs.RASetFlavor (context, flavor); - if (res) + if ((res = funcs.RASetFlavor (context, flavor))) { + GST_DEBUG_OBJECT (dec, "RASetFlavor(%d) failed", flavor); goto could_not_initialize; + } caps = gst_caps_new_simple ("audio/x-raw-int", "endianness", G_TYPE_INT, G_BYTE_ORDER, |