diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-03-08 21:51:39 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-03-08 21:51:39 +0000 |
commit | 6c953a6af3da2d883a54fe1a33fe67cfafb0710d (patch) | |
tree | 59a7e51c55d8e73b26ca6773d494917bc8580ffe | |
parent | 267f7edcd1f1f31595610b4de29a8c4d3e7929c5 (diff) | |
download | ffmpeg-6c953a6af3da2d883a54fe1a33fe67cfafb0710d.tar.gz |
Use AV_LOG_DEBUG loglevel instead of AV_LOG_ERROR where appropriate.
Originally committed as revision 5128 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/dv1394.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/dv1394.c b/libavformat/dv1394.c index 96bbae145a..1e0a5ab585 100644 --- a/libavformat/dv1394.c +++ b/libavformat/dv1394.c @@ -173,7 +173,7 @@ restart_poll: return AVERROR_IO; } #ifdef DV1394_DEBUG - av_log(context, AV_LOG_ERROR, "DV1394: status\n" + av_log(context, AV_LOG_DEBUG, "DV1394: status\n" "\tactive_frame\t%d\n" "\tfirst_clear_frame\t%d\n" "\tn_clear_frames\t%d\n" @@ -196,7 +196,7 @@ restart_poll: } #ifdef DV1394_DEBUG - av_log(context, AV_LOG_ERROR, "index %d, avail %d, done %d\n", dv->index, dv->avail, + av_log(context, AV_LOG_DEBUG, "index %d, avail %d, done %d\n", dv->index, dv->avail, dv->done); #endif |