Commit 6cd09cb5 authored by bcoudurier's avatar bcoudurier

move DEBUG define before include to get dprintf and move guidcmp before...

move DEBUG define before include to get dprintf and move guidcmp before print_guid, fix compilation with DEBUG

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18928 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7ae1cc4a
......@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
//#define DEBUG
#include "libavutil/common.h"
#include "libavutil/avstring.h"
#include "libavcodec/mpegaudio.h"
......@@ -46,7 +48,10 @@ static const ff_asf_guid stream_bitrate_guid = { /* (http://get.to/sdp) */
/**********************************/
/* decoding */
//#define DEBUG
static int guidcmp(const void *g1, const void *g2)
{
return memcmp(g1, g2, sizeof(ff_asf_guid));
}
#ifdef DEBUG
#define PRINT_IF_GUID(g,cmp) \
......@@ -90,11 +95,6 @@ static void print_guid(const ff_asf_guid *g)
#define print_guid(g)
#endif
static int guidcmp(const void *g1, const void *g2)
{
return memcmp(g1, g2, sizeof(ff_asf_guid));
}
static void get_guid(ByteIOContext *s, ff_asf_guid *g)
{
assert(sizeof(*g) == 16);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment