Mercurial > mplayer.hg
changeset 29842:5087d7ad1f5b
Map AV_LOG_VERBOSE to MSGL_V in order to avoid spurious log output.
based on a patch by On2
author | diego |
---|---|
date | Tue, 10 Nov 2009 18:10:16 +0000 |
parents | bfbcbf7deb57 |
children | f6d56a15f1d8 |
files | libmpcodecs/vd_ffmpeg.c |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/vd_ffmpeg.c Tue Nov 10 18:01:10 2009 +0000 +++ b/libmpcodecs/vd_ffmpeg.c Tue Nov 10 18:10:16 2009 +0000 @@ -159,6 +159,7 @@ char buf[256]; switch(level){ + case AV_LOG_VERBOSE: mp_level = MSGL_V ; break; case AV_LOG_DEBUG: mp_level= MSGL_V ; break; case AV_LOG_INFO : mp_level= MSGL_INFO; break; case AV_LOG_ERROR: mp_level= MSGL_ERR ; break;