Commit ed543377 authored by Roman Shaposhnik's avatar Roman Shaposhnik

making it nicer to the client who doesn't expect errors messages in stdout

Originally committed as revision 1829 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b706b007
...@@ -278,7 +278,7 @@ static void dv_decode_ac(DVVideoDecodeContext *s, ...@@ -278,7 +278,7 @@ static void dv_decode_ac(DVVideoDecodeContext *s,
if (pos >= 64) { if (pos >= 64) {
read_error: read_error:
#if defined(VLC_DEBUG) || 1 #if defined(VLC_DEBUG) || 1
printf("error pos=%d\n", pos); fprintf(stderr, "error pos=%d\n", pos);
#endif #endif
/* for errors, we consider the eob is reached */ /* for errors, we consider the eob is reached */
mb->eob_reached = 1; mb->eob_reached = 1;
......
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