mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-27 01:28:34 +00:00
gst/xingheader/gstxingmux.c: Bitrate is 4 bits, not 8 so check for 0xe as maximum value instead of 0xfe.
Original commit message from CVS: * gst/xingheader/gstxingmux.c: (generate_xing_header): Bitrate is 4 bits, not 8 so check for 0xe as maximum value instead of 0xfe.
This commit is contained in:
parent
be2f3d1d99
commit
790c1041e5
1 changed files with 2 additions and 2 deletions
|
@ -236,9 +236,9 @@ generate_xing_header (GstXingMux * xing)
|
||||||
|
|
||||||
parse_header (header, &size, &spf, &rate);
|
parse_header (header, &size, &spf, &rate);
|
||||||
xing_offset = get_xing_offset (header);
|
xing_offset = get_xing_offset (header);
|
||||||
} while (size < (4 + xing_offset + 4 + 4 + 4 + 4 + 100) && bitrate < 0xfe);
|
} while (size < (4 + xing_offset + 4 + 4 + 4 + 4 + 100) && bitrate < 0xe);
|
||||||
|
|
||||||
if (bitrate == 0xfe) {
|
if (bitrate == 0xe) {
|
||||||
GST_ERROR ("No usable bitrate found!");
|
GST_ERROR ("No usable bitrate found!");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue