diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/faad/gstfaad.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -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; |