mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
ext/a52dec/gsta52dec.c: Don't do sample adjusting anymore, we use float audio now.
Original commit message from CVS: * ext/a52dec/gsta52dec.c: (gst_a52dec_loop), (gst_a52dec_change_state): Don't do sample adjusting anymore, we use float audio now. * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate): Don't fixate to non-existing properties.
This commit is contained in:
parent
6bf9bf004c
commit
1de3e19fdb
2 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
|
||||
(gst_a52dec_change_state):
|
||||
Don't do sample adjusting anymore, we use float audio now.
|
||||
* gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
|
||||
Don't fixate to non-existing properties.
|
||||
|
||||
2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
|
||||
|
|
|
@ -598,8 +598,10 @@ gst_audio_convert_fixate (GstPad * pad, const GstCaps * caps)
|
|||
}
|
||||
if (_fixate_caps_to_int (©, "width", try.width))
|
||||
return copy;
|
||||
if (_fixate_caps_to_int (©, "depth", try.depth))
|
||||
return copy;
|
||||
if (gst_structure_get_name (gst_caps_get_structure (copy, 0))[12] == 'i') {
|
||||
if (_fixate_caps_to_int (©, "depth", try.depth))
|
||||
return copy;
|
||||
}
|
||||
if (_fixate_caps_to_int (©, "endianness", try.endianness))
|
||||
return copy;
|
||||
if ((pos_val = gst_structure_get_value (gst_caps_get_structure (copy, 0),
|
||||
|
|
Loading…
Reference in a new issue