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 /contrib/Jamfile | |
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 'contrib/Jamfile')
-rw-r--r-- | contrib/Jamfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/Jamfile b/contrib/Jamfile index 4a871903a..98b310bdc 100644 --- a/contrib/Jamfile +++ b/contrib/Jamfile @@ -79,6 +79,7 @@ rule LibAvCodec { FFMPEG_PATCH = "$(PATCH) -p0 < ../patch-ffmpeg.patch" ; FFMPEG_PATCH += " && $(PATCH) -p0 < ../patch-ffmpeg-latm.patch " ; + FFMPEG_PATCH += " && $(PATCH) -p0 < ../patch-ffmpeg-mpegleak.patch " ; if $(OS) = CYGWIN { FFMPEG_PATCH += " && $(PATCH) -p1 < ../patch-ffmpeg-cygwin.patch " ; |