Commit 69b63db9 authored by diego's avatar diego

Remove pointless '#ifdef DEBUG' around dprintf macro.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19535 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9f5f8056
...@@ -288,9 +288,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -288,9 +288,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
avi->movi_list = url_ftell(pb) - 4; avi->movi_list = url_ftell(pb) - 4;
if(size) avi->movi_end = avi->movi_list + size + (size & 1); if(size) avi->movi_end = avi->movi_list + size + (size & 1);
else avi->movi_end = url_fsize(pb); else avi->movi_end = url_fsize(pb);
#ifdef DEBUG
dprintf(NULL, "movi end=%"PRIx64"\n", avi->movi_end); dprintf(NULL, "movi end=%"PRIx64"\n", avi->movi_end);
#endif
goto end_of_header; goto end_of_header;
} }
break; break;
......
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