Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRukhsana Ruby <rukhsana.afroz@gmail.com>2011-05-24 01:56:20 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-05-24 03:31:54 +0400
commit88e9397ef1e8c854e00b329cc866f88d046893d9 (patch)
tree32e0b97d08eb18c7cb5101205223738dbe5f1578 /libavcodec/j2k.h
parentcbe60f34515dcfcbd08c00685d5810857ba9513e (diff)
j2k[c/h] j2kdec.c: Implement 2 code block styles
Diffstat (limited to 'libavcodec/j2k.h')
-rw-r--r--libavcodec/j2k.h2
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];
}