diff options
author | Rukhsana Ruby <rukhsana.afroz@gmail.com> | 2011-05-23 23:56:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-24 01:31:54 +0200 |
commit | 88e9397ef1e8c854e00b329cc866f88d046893d9 (patch) | |
tree | 32e0b97d08eb18c7cb5101205223738dbe5f1578 /libavcodec/j2k.h | |
parent | cbe60f34515dcfcbd08c00685d5810857ba9513e (diff) | |
download | ffmpeg-88e9397ef1e8c854e00b329cc866f88d046893d9.tar.gz |
j2k[c/h] j2kdec.c: Implement 2 code block styles
Diffstat (limited to 'libavcodec/j2k.h')
-rw-r--r-- | libavcodec/j2k.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/j2k.h b/libavcodec/j2k.h index 3a41b5381c..85d5cd079c 100644 --- a/libavcodec/j2k.h +++ b/libavcodec/j2k.h @@ -208,7 +208,7 @@ void ff_j2k_set_significant(J2kT1Context *t1, int x, int y, int negative); extern uint8_t ff_j2k_nbctxno_lut[256][4]; -static inline int ff_j2k_getnbctxno(int flag, int bandno) +static inline int ff_j2k_getnbctxno(int flag, int bandno, int vert_causal_ctx_csty_symbol) { return ff_j2k_nbctxno_lut[flag&255][bandno]; } |