ext/faad/gstfaad.c: Only increment timestamp if it's valid. Fixes raw AAC streams.

Original commit message from CVS:
* ext/faad/gstfaad.c: (gst_faad_chain):
Only increment timestamp if it's valid. Fixes raw AAC streams.
This commit is contained in:
Ronald S. Bultje 2005-01-06 10:34:40 +00:00
parent 5e19f0229d
commit 9ea83f3ee4
2 changed files with 27 additions and 20 deletions

View file

@ -1,3 +1,8 @@
2005-01-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* ext/faad/gstfaad.c: (gst_faad_chain):
Only increment timestamp if it's valid. Fixes raw AAC streams.
2005-01-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
* configure.ac:

View file

@ -60,13 +60,13 @@ static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
#define STATIC_CAPS \
STATIC_INT_CAPS (16)
#if 0
"; "
STATIC_INT_CAPS (24)
"; "
STATIC_INT_CAPS (32)
"; "
STATIC_FLOAT_CAPS (32)
"; "
#define NOTUSED "; " \
STATIC_INT_CAPS (24) \
"; " \
STATIC_INT_CAPS (32) \
"; " \
STATIC_FLOAT_CAPS (32) \
"; " \
STATIC_FLOAT_CAPS (64)
#endif
static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
@ -654,7 +654,9 @@ gst_faad_chain (GstPad * pad, GstData * data)
GST_BUFFER_TIMESTAMP (outbuf) = next_ts;
GST_BUFFER_DURATION (outbuf) =
(guint64) GST_SECOND *info->samples / faad->samplerate;
if (GST_CLOCK_TIME_IS_VALID (next_ts)) {
next_ts += GST_BUFFER_DURATION (outbuf);
}
gst_pad_push (faad->srcpad, GST_DATA (outbuf));
}
}