Remove pointless '#ifdef DEBUG' around dprintf macro.

Originally committed as revision 19535 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2009-07-29 17:12:47 +00:00
parent 700363afe7
commit 18b55f639a
1 changed files with 0 additions and 2 deletions

View File

@ -288,9 +288,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
avi->movi_list = url_ftell(pb) - 4;
if(size) avi->movi_end = avi->movi_list + size + (size & 1);
else avi->movi_end = url_fsize(pb);
#ifdef DEBUG
dprintf(NULL, "movi end=%"PRIx64"\n", avi->movi_end);
#endif
goto end_of_header;
}
break;