summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2005-06-02 08:15:37 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2005-06-02 08:15:37 +0000
commit00da06c2d10f54794fe47d53cfafea711169efc2 (patch)
tree1ab3b7352afc69c992b6f669962cea6504b98789
parent356ee43b06d604df83e7d4abe0e9a94d50713f9b (diff)
downloadgst-plugins-bad-00da06c2d10f54794fe47d53cfafea711169efc2.tar.gz
gst-plugins-bad-00da06c2d10f54794fe47d53cfafea711169efc2.tar.bz2
gst-plugins-bad-00da06c2d10f54794fe47d53cfafea711169efc2.zip
if faad wants params in exact bit-width, then deliver them as such
Original commit message from CVS: if faad wants params in exact bit-width, then deliver them as such
-rw-r--r--ChangeLog5
-rw-r--r--ext/faad/gstfaad.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9282c6e7..6bf66161 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-02 Stefan Kost <ensonic@users.sf.net>
+
+ * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
+ if faad wants params in exact bit-width, then deliver them as such
+
2005-06-01 Benjamin Otte <in7y118@public.uni-hamburg.de>
* gst-libs/gst/audio/multichannel.c:
diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c
index cb2c6611..eecfc8b0 100644
--- a/ext/faad/gstfaad.c
+++ b/ext/faad/gstfaad.c
@@ -301,7 +301,7 @@ gst_faad_sinkconnect (GstPad * pad, const GstCaps * caps)
faad->packetised = FALSE;
if ((value = gst_structure_get_value (str, "codec_data"))) {
- gulong samplerate;
+ guint32 samplerate;
guchar channels;
/* We have codec data, means packetised stream */
@@ -674,7 +674,7 @@ gst_faad_chain (GstPad * pad, GstData * data)
/* init if not already done during capsnego */
if (!faad->init) {
- gulong samplerate;
+ guint32 samplerate;
guchar channels;
glong init_res;