diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-07-03 16:57:26 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-07-03 18:30:01 +0200 |
commit | 91c9aa0941869531ce8cadbea8cd333a9c4b1244 (patch) | |
tree | 16674d19d5f888fff52367480ae1c61a78c09489 /libavformat/asfdec.c | |
parent | 14376a53b20bed4463a0998dfd25012f8a927838 (diff) | |
download | ffmpeg-91c9aa0941869531ce8cadbea8cd333a9c4b1244.tar.gz |
Move some conditionally used code below the appropriate #ifdef.
Diffstat (limited to 'libavformat/asfdec.c')
-rw-r--r-- | libavformat/asfdec.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index 16bba93c37..4fafb26259 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -84,13 +84,11 @@ static const ff_asf_guid index_guid = { 0x90, 0x08, 0x00, 0x33, 0xb1, 0xe5, 0xcf, 0x11, 0x89, 0xf4, 0x00, 0xa0, 0xc9, 0x03, 0x49, 0xcb }; +#ifdef DEBUG static const ff_asf_guid stream_bitrate_guid = { /* (http://get.to/sdp) */ 0xce, 0x75, 0xf8, 0x7b, 0x8d, 0x46, 0xd1, 0x11, 0x8d, 0x82, 0x00, 0x60, 0x97, 0xc9, 0xa2, 0xb2 }; -/**********************************/ -/* decoding */ -#ifdef DEBUG #define PRINT_IF_GUID(g,cmp) \ if (!ff_guidcmp(g, &cmp)) \ av_dlog(NULL, "(GUID: %s) ", #cmp) |