summaryrefslogtreecommitdiff
path: root/libavcodec/svq3.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-05-16 19:18:53 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-05-16 19:18:53 +0000
commit377ec88802f2023b8091954f880f94b0d5b49a98 (patch)
tree32a29769e9db2b688677cf858750df26b467fa76 /libavcodec/svq3.c
parent4c701ac80d528745090406e6dbd407b8343bffd6 (diff)
bigendian fix
Originally committed as revision 1887 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index 767d638404..e30fd72e8f 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -438,7 +438,7 @@ static int svq3_decode_mb (H264Context *h, unsigned int mb_type) {
}
/* update mv_cache */
- fill_rectangle(h->mv_cache[0][scan8[k]], part_width>>2, part_height>>2, 8, (mx&0xFFFF)+(my<<16), 4);
+ fill_rectangle(h->mv_cache[0][scan8[k]], part_width>>2, part_height>>2, 8, pack16to32(mx,my), 4);
}
}