mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 02:15:31 +00:00
ext/ffmpeg/gstffmpegcodecmap.c: The "signed" field in raw audio caps is of boolean type, trying to extract the value ...
Original commit message from CVS: * ext/ffmpeg/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.
This commit is contained in:
parent
876f952468
commit
c0322416f6
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2006-12-21 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* ext/ffmpeg/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.
|
||||||
|
|
||||||
2006-12-15 Thomas Vander Stichele <thomas at apestaart dot org>
|
2006-12-15 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -1293,7 +1293,7 @@ gst_ffmpeg_caps_to_smpfmt (const GstCaps * caps,
|
||||||
|
|
||||||
if (gst_structure_get_int (structure, "width", &width) &&
|
if (gst_structure_get_int (structure, "width", &width) &&
|
||||||
gst_structure_get_int (structure, "depth", &depth) &&
|
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)) {
|
gst_structure_get_int (structure, "endianness", &endianness)) {
|
||||||
if (width == 16 && depth == 16 &&
|
if (width == 16 && depth == 16 &&
|
||||||
endianness == G_BYTE_ORDER && signedness == TRUE) {
|
endianness == G_BYTE_ORDER && signedness == TRUE) {
|
||||||
|
|
Loading…
Reference in a new issue