mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
ext/faad/gstfaad.c: Set DURATION even if source buffer didn't. Also use increasing timestamps.
Original commit message from CVS: * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst), (gst_faad_chanpos_to_gst), (gst_faad_chain): Set DURATION even if source buffer didn't. Also use increasing timestamps. * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps_with_data): Block_align can have larger values than 8192.
This commit is contained in:
parent
e79f1b11b9
commit
bfd5e47553
2 changed files with 11 additions and 1 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
|
||||
(gst_faad_chanpos_to_gst), (gst_faad_chain):
|
||||
Set DURATION even if source buffer didn't. Also use increasing
|
||||
timestamps.
|
||||
* gst-libs/gst/riff/riff-media.c:
|
||||
(gst_riff_create_audio_caps_with_data):
|
||||
Block_align can have larger values than 8192.
|
||||
|
||||
2004-12-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
|
||||
|
|
|
@ -514,7 +514,7 @@ gst_riff_create_audio_caps_with_data (guint16 codec_id,
|
|||
}
|
||||
if (block_align) {
|
||||
gst_caps_set_simple (caps,
|
||||
"block_align", GST_TYPE_INT_RANGE, 1, 8192, NULL);
|
||||
"block_align", GST_TYPE_INT_RANGE, 1, G_MAXINT, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue