Commit fb3d155c authored by Michael Niedermayer's avatar Michael Niedermayer

big endian fix

Originally committed as revision 6391 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 113533a5
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment