diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2003-05-01 22:45:09 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2003-05-01 22:45:09 +0000 |
commit | ed543377a41ceeb10c1703b55ab0dddda3f43424 (patch) | |
tree | 6b34bf9e9d248d2217b0640d12559c967eb1987c /libavcodec | |
parent | b706b007a45d18ffac87fb26faa1dcd5df86ffa7 (diff) | |
download | ffmpeg-ed543377a41ceeb10c1703b55ab0dddda3f43424.tar.gz |
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
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index b678960320..2d89a3cce7 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -278,7 +278,7 @@ static void dv_decode_ac(DVVideoDecodeContext *s, if (pos >= 64) { read_error: #if defined(VLC_DEBUG) || 1 - printf("error pos=%d\n", pos); + fprintf(stderr, "error pos=%d\n", pos); #endif /* for errors, we consider the eob is reached */ mb->eob_reached = 1; |