diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-01 16:14:39 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-01 17:13:00 +0100 |
commit | 5eb1704d5f5a85ff5b532887d559f3cf2822d8fc (patch) | |
tree | 9282c0edf8e3dd4b4dd014f157044c34dc6527cb /libavcodec/hevc_cabac.c | |
parent | c617c669e9fce59905915c3ba1053f535add6a06 (diff) | |
parent | 064698d381e1e7790f21b0199a8930ea04e2e942 (diff) | |
download | ffmpeg-5eb1704d5f5a85ff5b532887d559f3cf2822d8fc.tar.gz |
Merge commit '064698d381e1e7790f21b0199a8930ea04e2e942'
* commit '064698d381e1e7790f21b0199a8930ea04e2e942':
Add HEVC decoder
Conflicts:
Changelog
libavcodec/Makefile
libavcodec/allcodecs.c
libavcodec/hevc.c
libavcodec/hevc.h
libavcodec/hevc_cabac.c
libavcodec/hevc_filter.c
libavcodec/hevc_mvs.c
libavcodec/hevc_parser.c
libavcodec/hevc_ps.c
libavcodec/hevc_refs.c
libavcodec/hevc_sei.c
libavcodec/hevcdsp.c
libavcodec/hevcdsp_template.c
libavcodec/hevcpred.c
libavcodec/hevcpred_template.c
libavcodec/version.h
cosmetics from hevc.h & hevc_ps.c mostly merged, other files left as they where in ffmpeg.
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc_cabac.c')
-rw-r--r-- | libavcodec/hevc_cabac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc_cabac.c b/libavcodec/hevc_cabac.c index 0fa7afa767..1b66c6fc7f 100644 --- a/libavcodec/hevc_cabac.c +++ b/libavcodec/hevc_cabac.c @@ -1137,7 +1137,7 @@ void ff_hevc_hls_residual_coding(HEVCContext *s, int x0, int y0, dc_scale = 16; if (s->sps->scaling_list_enable_flag) { - const ScalingList *sl = s->pps->pps_scaling_list_data_present_flag ? + const ScalingList *sl = s->pps->scaling_list_data_present_flag ? &s->pps->scaling_list : &s->sps->scaling_list; int matrix_id = lc->cu.pred_mode != MODE_INTRA; |