# HG changeset patch # User Ryan C. Gordon # Date 1000910050 0 # Node ID d9e84e857569396c28ea89e3598c0b10c818d410 # Parent ba49bdd9ea33774a7c3d357c7608fd8046039629 Changed some debug output. Still broken. diff -r ba49bdd9ea33 -r d9e84e857569 decoders/mp3.c --- a/decoders/mp3.c Wed Sep 19 14:33:22 2001 +0000 +++ b/decoders/mp3.c Wed Sep 19 14:34:10 2001 +0000 @@ -121,18 +121,18 @@ } /* if */ _D(("MP3: Accepting data stream.\n")); - _D(("MP3: has_audio == %s.\n", smpeg_info.has_audio ? "TRUE" : "FALSE")); - _D(("MP3: has_video == %s.\n", smpeg_info.has_video ? "TRUE" : "FALSE")); - _D(("MP3: width == %d.\n", smpeg_info.width)); - _D(("MP3: height == %d.\n", smpeg_info.height)); - _D(("MP3: current_frame == %d.\n", smpeg_info.current_frame)); - _D(("MP3: current_fps == %f.\n", smpeg_info.current_fps)); + _D(("MP3: has_audio == {%s}.\n", smpeg_info.has_audio ? "TRUE" : "FALSE")); + _D(("MP3: has_video == {%s}.\n", smpeg_info.has_video ? "TRUE" : "FALSE")); + _D(("MP3: width == (%d).\n", smpeg_info.width)); + _D(("MP3: height == (%d).\n", smpeg_info.height)); + _D(("MP3: current_frame == (%d).\n", smpeg_info.current_frame)); + _D(("MP3: current_fps == (%f).\n", smpeg_info.current_fps)); _D(("MP3: audio_string == [%s].\n", smpeg_info.audio_string)); - _D(("MP3: audio_current_frame == %d.\n", smpeg_info.audio_current_frame)); - _D(("MP3: current_offset == %d.\n", smpeg_info.current_offset)); - _D(("MP3: total_size == %d.\n", smpeg_info.total_size)); - _D(("MP3: current_time == %f.\n", smpeg_info.current_time)); - _D(("MP3: total_time == %f.\n", smpeg_info.total_time)); + _D(("MP3: audio_current_frame == (%d).\n", smpeg_info.audio_current_frame)); + _D(("MP3: current_offset == (%d).\n", smpeg_info.current_offset)); + _D(("MP3: total_size == (%d).\n", smpeg_info.total_size)); + _D(("MP3: current_time == (%f).\n", smpeg_info.current_time)); + _D(("MP3: total_time == (%f).\n", smpeg_info.total_time)); SMPEG_enablevideo(smpeg, 0); SMPEG_enableaudio(smpeg, 1);