aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/common.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-11-03 18:06:54 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-11-03 18:06:54 +0000
commit3d0ef6dd52b7db3375249978113847d5dea361a7 (patch)
treee30f7eaaaaa789048968f9219b3a8b4320ba2b7d /libavcodec/common.c
parentea05d9c9c71f916b4dd3c62386286d1da09e0ad6 (diff)
downloadffmpeg-3d0ef6dd52b7db3375249978113847d5dea361a7.tar.gz
av_log patch(2 of ?) by (Michel Bardiaux <mbardiaux at peaktime dot be>)
Originally committed as revision 2474 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/common.c')
-rw-r--r--libavcodec/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/common.c b/libavcodec/common.c
index f5bd81983c..96889813e3 100644
--- a/libavcodec/common.c
+++ b/libavcodec/common.c
@@ -282,7 +282,7 @@ static int build_table(VLC *vlc, int table_nb_bits,
nb = 1 << (table_nb_bits - n);
for(k=0;k<nb;k++) {
#ifdef DEBUG_VLC
- av_log(AV_LOG_DEBUG, "%4x: code=%d n=%d\n",
+ av_log(NULL, AV_LOG_DEBUG, "%4x: code=%d n=%d\n",
j, i, n);
#endif
if (table[j][1] /*bits*/ != 0) {