diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-09-30 11:35:14 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-09-30 11:35:14 +0000 |
commit | fb3d155c316b3e62cc25d7ae82f1d9330c8e9d8f (patch) | |
tree | cbfb65e7d269458ad1008590ffb5325bab5593ca /libavcodec | |
parent | 113533a58215ee692406fbc983148f8cf8bb6263 (diff) | |
download | ffmpeg-fb3d155c316b3e62cc25d7ae82f1d9330c8e9d8f.tar.gz |
big endian fix
Originally committed as revision 6391 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/rv10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index 47445da354..0bafbd11d5 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -532,7 +532,7 @@ static int rv10_decode_init(AVCodecContext *avctx) s->width = avctx->width; s->height = avctx->height; - s->h263_long_vectors= !!(*(uint32_t*)avctx->extradata & 0x1000000); + s->h263_long_vectors= ((uint8_t*)avctx->extradata)[3] & 1; switch(avctx->sub_id){ case 0x10000000: |