[FFmpeg-cvslog] jpeg2000dec: merge struct field types from j2k
Michael Niedermayer
git at videolan.org
Fri May 31 03:11:46 CEST 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri May 31 01:47:22 2013 +0200| [5dbbb762e58c8c410cfdfbb25d89f8b8314164e7] | committer: Michael Niedermayer
jpeg2000dec: merge struct field types from j2k
Fixes AVOption type mismatch
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5dbbb762e58c8c410cfdfbb25d89f8b8314164e7
---
libavcodec/jpeg2000dec.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/libavcodec/jpeg2000dec.c b/libavcodec/jpeg2000dec.c
index e2765fe..e70b5ce 100644
--- a/libavcodec/jpeg2000dec.c
+++ b/libavcodec/jpeg2000dec.c
@@ -80,12 +80,13 @@ typedef struct Jpeg2000DecoderContext {
int bit_index;
- int16_t curtileno;
+ int curtileno;
+
Jpeg2000Tile *tile;
/*options parameters*/
- int16_t lowres;
- int16_t reduction_factor;
+ int lowres;
+ int reduction_factor;
} Jpeg2000DecoderContext;
/* get_bits functions for JPEG2000 packet bitstream
More information about the ffmpeg-cvslog
mailing list