diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-04-02 08:15:03 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-04-02 08:15:03 +0000 |
commit | 82a6ef2089d6af18434daae1256f069539009e55 (patch) | |
tree | cce9336f48253b4cacd4ab011bc4600ba60318e8 /libavutil/lzo.c | |
parent | da425800ee1d57d8a068a3704af464c863bd6921 (diff) | |
download | ffmpeg-82a6ef2089d6af18434daae1256f069539009e55.tar.gz |
Replace manual setting of the removed av_log_level variable by the
corresponding call to av_log_set_level().
Originally committed as revision 18310 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/lzo.c')
-rw-r--r-- | libavutil/lzo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/lzo.c b/libavutil/lzo.c index 686983a506..668c084515 100644 --- a/libavutil/lzo.c +++ b/libavutil/lzo.c @@ -249,7 +249,7 @@ int main(int argc, char *argv[]) { long tmp[LZO1X_MEM_COMPRESS]; int inlen, outlen; int i; - av_log_level = AV_LOG_DEBUG; + av_log_set_level(AV_LOG_DEBUG); lzo1x_999_compress(orig, s, comp, &clen, tmp); for (i = 0; i < 300; i++) { START_TIMER |