summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-06-08 17:58:19 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-06-08 17:58:19 +0000
commit421e2da398a743b184037f2964ce6e3003bcbe83 (patch)
tree6fa38ecbe9ae69ce71fe342284ba9336286fdcd3
parent8ee9bdb44c2b47ad13dd4fc2a5f55b5a28312a66 (diff)
downloadgst-plugins-bad-421e2da398a743b184037f2964ce6e3003bcbe83.tar.gz
gst-plugins-bad-421e2da398a743b184037f2964ce6e3003bcbe83.tar.bz2
gst-plugins-bad-421e2da398a743b184037f2964ce6e3003bcbe83.zip
ext/faad/gstfaad.c: I don't understand how this got unnoticed for so long - did the faad API change or something ? al...
Original commit message from CVS: * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain): I don't understand how this got unnoticed for so long - did the faad API change or something ? also, we're getting samplerate and channels in the first call, but not actually *doing* anything with that. Sigh. * ext/libmng/gstmngdec.c: switch from 0.0 to 1.0 minimum framerate, even though that's *stupid* because we want to use mngdec for things that happen less than once a second, but it's the only way to have somewhat acceptable negotiation. * ext/theora/theoraenc.c: (theora_enc_chain): add a debug message.
-rw-r--r--ChangeLog15
-rw-r--r--ext/faad/gstfaad.c4
2 files changed, 17 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6cee7a01..61cc290e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2005-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
+
+ * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
+ I don't understand how this got unnoticed for so long - did the
+ faad API change or something ?
+ also, we're getting samplerate and channels in the first call,
+ but not actually *doing* anything with that. Sigh.
+ * ext/libmng/gstmngdec.c:
+ switch from 0.0 to 1.0 minimum framerate, even though that's
+ *stupid* because we want to use mngdec for things that happen
+ less than once a second, but it's the only way to have
+ somewhat acceptable negotiation.
+ * ext/theora/theoraenc.c: (theora_enc_chain):
+ add a debug message.
+
2005-06-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst/playback/gstplaybasebin.c: (gen_preroll_element):
diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c
index eecfc8b0..ee173455 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"))) {
- guint32 samplerate;
+ unsigned long 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) {
- guint32 samplerate;
+ unsigned long samplerate;
guchar channels;
glong init_res;