diff options
author | van <[email protected]> | 2008-08-18 01:54:15 +0000 |
---|---|---|
committer | van <[email protected]> | 2008-08-18 01:54:15 +0000 |
commit | 1c4d7309b2924c283f9922adda37d93ad1beca88 (patch) | |
tree | 75d0f6df7f08453a5b7225df000b5356f05fd681 /libhb/hb.c | |
parent | 6f5fe2aa5351c13739ea7dc9b9e357d96304c6fc (diff) |
- patch a reference picture leak in ffmpeg/libavcodec/mpegvideo.c that caused aborts on h264 transport stream encodes.
- patch the log level of some h264 decoder error messages so we don't fill our log with messages about stuff that's a very likely & not terribly significant.
- don't let hb.c set the ffmpeg av_log level to AV_LOG_DEBUG -- it fills the HB activity log with junk.
- add a count of the decoder errors to decavcodec's final report.
- when we don't have any chapter text (i.e., during a typical cli encode) just print the chapter number rather than empty quote marks.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1639 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.c')
-rw-r--r-- | libhb/hb.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libhb/hb.c b/libhb/hb.c index 0e0bddb3c..f73a2437e 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -73,7 +73,6 @@ hb_handle_t * hb_init_real( int verbose, int update_check ) if( verbose > HB_DEBUG_NONE ) { putenv( "HB_DEBUG=1" ); - av_log_set_level(AV_LOG_DEBUG); } /* Check for an update on the website if asked to */ @@ -153,7 +152,6 @@ hb_handle_t * hb_init_dl( int verbose, int update_check ) if( verbose > HB_DEBUG_NONE ) { putenv( "HB_DEBUG=1" ); - av_log_set_level(AV_LOG_DEBUG); } /* Check for an update on the website if asked to */ |