diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2003-04-05 22:42:28 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2003-04-05 22:42:28 +0000 |
commit | 52868140ed8175b91fb0e85e5d85684c1228b1e9 (patch) | |
tree | d80003980f23d593d0d38aee0f219ad89678b5b1 /src/libffmpeg/libavcodec/h263.c | |
parent | 9b228ee8af1b1809efcccdb94218b565c53a5652 (diff) | |
download | xine-lib-52868140ed8175b91fb0e85e5d85684c1228b1e9.tar.gz xine-lib-52868140ed8175b91fb0e85e5d85684c1228b1e9.tar.bz2 |
Fixes for C89 compliance. The libffmpeg-devel people are targeting C99 so they don't want patches. However, I'm packaging xine for blastwave.org (we package software for Solaris) and we don't have a C99 compliant version of Sun Workshop yet (and gcc is poor on SPARC by comparison) so I'm making these patches to libffmpeg/libavcodec as necessary -_-.
CVS patchset: 4541
CVS date: 2003/04/05 22:42:28
Diffstat (limited to 'src/libffmpeg/libavcodec/h263.c')
-rw-r--r-- | src/libffmpeg/libavcodec/h263.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libffmpeg/libavcodec/h263.c b/src/libffmpeg/libavcodec/h263.c index a054ebfb0..6b02095dd 100644 --- a/src/libffmpeg/libavcodec/h263.c +++ b/src/libffmpeg/libavcodec/h263.c @@ -4080,7 +4080,7 @@ static void mpeg4_decode_sprite_trajectory(MpegEncContext * s) int a= 2<<s->sprite_warping_accuracy; int rho= 3-s->sprite_warping_accuracy; int r=16/a; - const int vop_ref[4][2]= {{0,0}, {s->width,0}, {0, s->height}, {s->width, s->height}}; // only true for rectangle shapes + int vop_ref[4][2]= {{0,0}, {s->width,0}, {0, s->height}, {s->width, s->height}}; // only true for rectangle shapes int d[4][2]={{0,0}, {0,0}, {0,0}, {0,0}}; int sprite_ref[4][2]; int virtual_ref[2][2]; |