diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2014-09-23 21:36:41 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-27 11:50:41 +0200 |
commit | f183febcdafb9f59d24afa752461a4d62e3bcf93 (patch) | |
tree | 7ae8a59f40e84379b21a83c02ca05e6402fe2aaa /libavcodec/hevc_cabac.c | |
parent | bfdf0f078a7463e1f304ef6fea3b25518cc45c3b (diff) | |
download | ffmpeg-f183febcdafb9f59d24afa752461a4d62e3bcf93.tar.gz |
hevc: remove CodingTree
Signed-off-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 2b3d8c09a3..e2e5fac0ad 100644 --- a/libavcodec/hevc_cabac.c +++ b/libavcodec/hevc_cabac.c @@ -835,7 +835,7 @@ int ff_hevc_inter_pred_idc_decode(HEVCContext *s, int nPbW, int nPbH) { if (nPbW + nPbH == 12) return GET_CABAC(elem_offset[INTER_PRED_IDC] + 4); - if (GET_CABAC(elem_offset[INTER_PRED_IDC] + s->HEVClc->ct.depth)) + if (GET_CABAC(elem_offset[INTER_PRED_IDC] + s->HEVClc->ct_depth)) return PRED_BI; return GET_CABAC(elem_offset[INTER_PRED_IDC] + 4); |