summaryrefslogtreecommitdiff
path: root/gst-libs/gst
diff options
context:
space:
mode:
authorScott D Phillips <scott.d.phillips@intel.com>2016-02-19 14:27:59 -0800
committerSebastian Dröge <sebastian@centricular.com>2016-02-20 10:55:46 +0200
commitcf0d45c100d884e9717ab9b6b94dcdd3771f9ea3 (patch)
treea66cde5b35b032b53c1a6b61c36de52610b76bd3 /gst-libs/gst
parent115945b66366a875f9d848d8f463a9406a1bd514 (diff)
downloadgstreamer-plugins-bad-cf0d45c100d884e9717ab9b6b94dcdd3771f9ea3.tar.gz
codecparsers: h265: Fix initialization of slice_deblocking_filter_disabled_flag
H.265 7.4.7.1 says: > When slice_deblocking_filter_disabled_flag is not present, it is > inferred to be equal to pps_deblocking_filter_disabled_flag. https://bugzilla.gnome.org/show_bug.cgi?id=762351
Diffstat (limited to 'gst-libs/gst')
-rw-r--r--gst-libs/gst/codecparsers/gsth265parser.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst-libs/gst/codecparsers/gsth265parser.c b/gst-libs/gst/codecparsers/gsth265parser.c
index 09842253f..52a1fc2a7 100644
--- a/gst-libs/gst/codecparsers/gsth265parser.c
+++ b/gst-libs/gst/codecparsers/gsth265parser.c
@@ -1955,6 +1955,7 @@ gst_h265_parser_parse_slice_hdr (GstH265Parser * parser,
* and have valid defaults */
slice->pic_output_flag = 1;
slice->collocated_from_l0_flag = 1;
+ slice->deblocking_filter_disabled_flag = pps->deblocking_filter_disabled_flag;
slice->beta_offset_div2 = pps->beta_offset_div2;
slice->tc_offset_div2 = pps->tc_offset_div2;
slice->loop_filter_across_slices_enabled_flag =