summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorRodeo <[email protected]>2014-02-18 02:26:52 +0000
committerRodeo <[email protected]>2014-02-18 02:26:52 +0000
commit52036382899171921343e10053fa3adaedcb19d2 (patch)
tree9c0204eeee2959d85b55b74984936e8cf46ce82a /contrib
parent6bd1bab325550ccc8a9c9d3ee372a0aaa2e75c2e (diff)
Bump libav to v10_beta1
Remove some patches that have been applied upstream. Add support for AVDownmixInfo side data (i.e. mix levels). git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6039 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ffmpeg/A01-vc1-numref.patch39
-rw-r--r--contrib/ffmpeg/A02-ac3dec-asymmetric-drc.patch44
-rw-r--r--contrib/ffmpeg/A03-reget-buffer-pkt-pts.patch30
-rw-r--r--contrib/ffmpeg/module.defs2
4 files changed, 1 insertions, 114 deletions
diff --git a/contrib/ffmpeg/A01-vc1-numref.patch b/contrib/ffmpeg/A01-vc1-numref.patch
deleted file mode 100644
index 29e84e5a6..000000000
--- a/contrib/ffmpeg/A01-vc1-numref.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 1ad55faa4d730f437bce612531132f00556d29fb Mon Sep 17 00:00:00 2001
-From: Michael Niedermayer <[email protected]>
-Date: Sun, 19 Jan 2014 17:13:51 +0100
-Subject: [PATCH] vc1: Always reset numref when parsing a new frame header.
-
-Fixes an issue where the B-frame coding mode switches from interlaced
-fields to interlaced frames, causing incorrect decisions in the motion
-compensation code and resulting in visual artifacts.
-
-Signed-off-by: Tim Walker <[email protected]>
----
- libavcodec/vc1.c | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
-index acefce6..a7f2aab 100644
---- a/libavcodec/vc1.c
-+++ b/libavcodec/vc1.c
-@@ -842,6 +842,7 @@ int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
- int mbmodetab, imvtab, icbptab, twomvbptab, fourmvbptab; /* useful only for debugging */
- int field_mode, fcm;
-
-+ v->numref = 0;
- v->p_frame_skipped = 0;
- if (v->second_field) {
- v->s.pict_type = (v->fptype & 1) ? AV_PICTURE_TYPE_P : AV_PICTURE_TYPE_I;
-@@ -1011,8 +1012,6 @@ int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
- v->reffield = get_bits1(gb);
- v->ref_field_type[0] = v->reffield ^ !v->cur_field_type;
- }
-- } else {
-- v->numref = 0;
- }
- if (v->extended_mv)
- v->mvrange = get_unary(gb, 0, 3);
---
-1.8.3.4 (Apple Git-47)
-
diff --git a/contrib/ffmpeg/A02-ac3dec-asymmetric-drc.patch b/contrib/ffmpeg/A02-ac3dec-asymmetric-drc.patch
deleted file mode 100644
index b87de1602..000000000
--- a/contrib/ffmpeg/A02-ac3dec-asymmetric-drc.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From e275318cecee53cf8ce13e4ab41df91c8c7fdcd4 Mon Sep 17 00:00:00 2001
-From: John Stebbins <[email protected]>
-Date: Mon, 13 Jan 2014 17:04:30 +0000
-Subject: [PATCH] ac3dec: Allow asymmetric application of DRC when drc_scale >
- 1
-
-Amplification of quiet sounds is enhanced.
-Inspired by gbooker's A52Decoder.
----
- libavcodec/ac3dec.c | 11 ++++++++---
- 1 file changed, 8 insertions(+), 3 deletions(-)
-
-diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
-index 87638e7..0416dbc 100644
---- a/libavcodec/ac3dec.c
-+++ b/libavcodec/ac3dec.c
-@@ -772,8 +772,13 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
- i = !s->channel_mode;
- do {
- if (get_bits1(gbc)) {
-- s->dynamic_range[i] = powf(dynamic_range_tab[get_bits(gbc, 8)],
-- s->drc_scale);
-+ /* Allow asymmetric application of DRC when drc_scale > 1.
-+ Amplification of quiet sounds is enhanced */
-+ float range = dynamic_range_tab[get_bits(gbc, 8)];
-+ if (range > 1.0 || s->drc_scale <= 1.0)
-+ s->dynamic_range[i] = powf(range, s->drc_scale);
-+ else
-+ s->dynamic_range[i] = range;
- } else if (blk == 0) {
- s->dynamic_range[i] = 1.0f;
- }
-@@ -1487,7 +1492,7 @@ static av_cold int ac3_decode_end(AVCodecContext *avctx)
- #define OFFSET(x) offsetof(AC3DecodeContext, x)
- #define PAR (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM)
- static const AVOption options[] = {
-- { "drc_scale", "percentage of dynamic range compression to apply", OFFSET(drc_scale), AV_OPT_TYPE_FLOAT, {.dbl = 1.0}, 0.0, 1.0, PAR },
-+ { "drc_scale", "percentage of dynamic range compression to apply", OFFSET(drc_scale), AV_OPT_TYPE_FLOAT, {.dbl = 1.0}, 0.0, 6.0, PAR },
- { NULL},
- };
-
---
-1.8.3.4 (Apple Git-47)
-
diff --git a/contrib/ffmpeg/A03-reget-buffer-pkt-pts.patch b/contrib/ffmpeg/A03-reget-buffer-pkt-pts.patch
deleted file mode 100644
index c64c39e40..000000000
--- a/contrib/ffmpeg/A03-reget-buffer-pkt-pts.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 091f3393401f7eb83fef4fb9cbb2e5ed2837b623 Mon Sep 17 00:00:00 2001
-From: John Stebbins <[email protected]>
-Date: Mon, 10 Feb 2014 08:52:07 -0700
-Subject: [PATCH] lavc: set AVFrame pkt_pts and reordered_opaque in
- reget_buffer
-
----
- libavcodec/utils.c | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/libavcodec/utils.c b/libavcodec/utils.c
-index 46f339f..b2b11ef 100644
---- a/libavcodec/utils.c
-+++ b/libavcodec/utils.c
-@@ -762,8 +762,11 @@ int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
- if (!frame->data[0])
- return ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
-
-- if (av_frame_is_writable(frame))
-+ if (av_frame_is_writable(frame)) {
-+ frame->pkt_pts = avctx->internal->pkt ? avctx->internal->pkt->pts : AV_NOPTS_VALUE;
-+ frame->reordered_opaque = avctx->reordered_opaque;
- return 0;
-+ }
-
- av_frame_move_ref(&tmp, frame);
-
---
-1.8.5.3
-
diff --git a/contrib/ffmpeg/module.defs b/contrib/ffmpeg/module.defs
index 875065505..3884487c2 100644
--- a/contrib/ffmpeg/module.defs
+++ b/contrib/ffmpeg/module.defs
@@ -5,7 +5,7 @@ $(eval $(call import.MODULE.defs,FFMPEG,ffmpeg,YASM BZIP2 ZLIB FDKAAC))
endif
$(eval $(call import.CONTRIB.defs,FFMPEG))
-FFMPEG.FETCH.url = http://download.handbrake.fr/handbrake/contrib/libav-v10_alpha2.tar.bz2
+FFMPEG.FETCH.url = http://download.handbrake.fr/handbrake/contrib/libav-v10_beta1.tar.bz2
FFMPEG.CONFIGURE.deps =
FFMPEG.CONFIGURE.env =