diff options
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 3440cca..d28d185 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -309,6 +309,11 @@ typedef struct H264SliceContext { int qp_thresh; ///< QP threshold to skip loopfilter int last_qscale_diff; + // deblock + int deblocking_filter; ///< disable_deblocking_filter_idc with 1 <-> 0 + int slice_alpha_c0_offset; + int slice_beta_offset; + // Weighted pred stuff int use_weight; int use_weight_chroma; @@ -525,11 +530,6 @@ typedef struct H264Context { int is_complex; - // deblock - int deblocking_filter; ///< disable_deblocking_filter_idc with 1 <-> 0 - int slice_alpha_c0_offset; - int slice_beta_offset; - // ============================================================= // Things below are not used in the MB or more inner code |