mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
gst/ffmpegcolorspace/gstffmpegcodecmap.c: The "signed" field in raw audio caps is of boolean type, trying to extract ...
Original commit message from CVS: * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_smpfmt): The "signed" field in raw audio caps is of boolean type, trying to extract the value with _get_int() will fail (fix to keep in sync with the copy in gst-ffmpeg)
This commit is contained in:
parent
5f8d6ab7a0
commit
d07b7ac539
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-12-21 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/ffmpegcolorspace/gstffmpegcodecmap.c:
|
||||
(gst_ffmpeg_caps_to_smpfmt):
|
||||
The "signed" field in raw audio caps is of boolean type, trying to
|
||||
extract the value with _get_int() will fail (fix to keep in sync with
|
||||
the copy in gst-ffmpeg)
|
||||
|
||||
2006-12-21 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* tests/check/elements/audioresample.c: (cleanup_audioresample):
|
||||
|
|
|
@ -472,7 +472,7 @@ gst_ffmpeg_caps_to_smpfmt (const GstCaps * caps,
|
|||
|
||||
if (gst_structure_get_int (structure, "width", &width) &&
|
||||
gst_structure_get_int (structure, "depth", &depth) &&
|
||||
gst_structure_get_int (structure, "signed", &signedness) &&
|
||||
gst_structure_get_boolean (structure, "signed", &signedness) &&
|
||||
gst_structure_get_int (structure, "endianness", &endianness)) {
|
||||
if (width == 16 && depth == 16 &&
|
||||
endianness == G_BYTE_ORDER && signedness == TRUE) {
|
||||
|
|
Loading…
Reference in a new issue