mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
gst/typefind/gsttypefindfunctions.c: printf fix.
Original commit message from CVS: * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset), (mpeg1_parse_header), (mpeg1_sys_type_find): printf fix.
This commit is contained in:
parent
4cc39ec809
commit
f259053d94
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2006-10-06 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
|
||||||
|
(mpeg1_parse_header), (mpeg1_sys_type_find):
|
||||||
|
printf fix.
|
||||||
|
|
||||||
2006-10-06 Wim Taymans <wim@fluendo.com>
|
2006-10-06 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/playback/gstdecodebin.c: (gst_decode_bin_init),
|
* gst/playback/gstdecodebin.c: (gst_decode_bin_init),
|
||||||
|
|
|
@ -728,7 +728,7 @@ mp3_type_find_at_offset (GstTypeFind * tf, guint64 start_off,
|
||||||
("audio/mpeg calculated %u = %u * %u / %u * (%u - %"
|
("audio/mpeg calculated %u = %u * %u / %u * (%u - %"
|
||||||
G_GUINT64_FORMAT ") / %u", probability, GST_TYPE_FIND_MAXIMUM,
|
G_GUINT64_FORMAT ") / %u", probability, GST_TYPE_FIND_MAXIMUM,
|
||||||
found, GST_MP3_TYPEFIND_TRY_HEADERS, GST_MP3_TYPEFIND_TRY_SYNC,
|
found, GST_MP3_TYPEFIND_TRY_HEADERS, GST_MP3_TYPEFIND_TRY_SYNC,
|
||||||
(guint) skipped, GST_MP3_TYPEFIND_TRY_SYNC);
|
(guint64) skipped, GST_MP3_TYPEFIND_TRY_SYNC);
|
||||||
/* make sure we're not id3 tagged */
|
/* make sure we're not id3 tagged */
|
||||||
head_data = gst_type_find_peek (tf, -128, 3);
|
head_data = gst_type_find_peek (tf, -128, 3);
|
||||||
if (head_data && (memcmp (head_data, "TAG", 3) == 0)) {
|
if (head_data && (memcmp (head_data, "TAG", 3) == 0)) {
|
||||||
|
|
Loading…
Reference in a new issue