diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2005-06-02 08:15:37 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2005-06-02 08:15:37 +0000 |
commit | 00da06c2d10f54794fe47d53cfafea711169efc2 (patch) | |
tree | 1ab3b7352afc69c992b6f669962cea6504b98789 /ext/faad | |
parent | 356ee43b06d604df83e7d4abe0e9a94d50713f9b (diff) | |
download | gst-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
Diffstat (limited to 'ext/faad')
-rw-r--r-- | ext/faad/gstfaad.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |