diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | gst/xingheader/gstxingmux.c | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,6 +1,12 @@ 2008-01-14 Sebastian Dröge <slomo@circular-chaos.org> * gst/xingheader/gstxingmux.c: (generate_xing_header): + Bitrate is 4 bits, not 8 so check for 0xe as maximum value instead + of 0xfe. + +2008-01-14 Sebastian Dröge <slomo@circular-chaos.org> + + * gst/xingheader/gstxingmux.c: (generate_xing_header): Remove accidentially leftover debug printf. 2008-01-14 Sebastian Dröge <slomo@circular-chaos.org> diff --git a/gst/xingheader/gstxingmux.c b/gst/xingheader/gstxingmux.c index 2a46fc6a..76f11ec8 100644 --- a/gst/xingheader/gstxingmux.c +++ b/gst/xingheader/gstxingmux.c @@ -236,9 +236,9 @@ generate_xing_header (GstXingMux * xing) parse_header (header, &size, &spf, &rate); 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!"); return NULL; } |