summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/h263.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-07-01 13:32:38 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-07-01 13:32:38 +0000
commitc89b49e764fb121ad068be09bf341ceccb05baf3 (patch)
tree5f7c96023eadd6c43b4496907f699d50bea016be /src/libffmpeg/libavcodec/h263.c
parentf4abc8f19216da9d1762920191c05481d5c86430 (diff)
downloadxine-lib-c89b49e764fb121ad068be09bf341ceccb05baf3.tar.gz
xine-lib-c89b49e764fb121ad068be09bf341ceccb05baf3.tar.bz2
- ffmpeg sync
- skip decoding b-frames when late CVS patchset: 2185 CVS date: 2002/07/01 13:32:38
Diffstat (limited to 'src/libffmpeg/libavcodec/h263.c')
-rw-r--r--src/libffmpeg/libavcodec/h263.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/libffmpeg/libavcodec/h263.c b/src/libffmpeg/libavcodec/h263.c
index 0b3a5347c..ae1eea7d7 100644
--- a/src/libffmpeg/libavcodec/h263.c
+++ b/src/libffmpeg/libavcodec/h263.c
@@ -3182,12 +3182,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;
-#ifdef __GNUC__
const int vop_ref[4][2]= {{0,0}, {s->width,0}, {0, s->height}, {s->width, s->height}}; // only true for rectangle shapes
-#else
- int vop_ref[4][2]= {{0,0}, {s->width,0}, {0, s->height}, {s->width, s->height}}; // only true for rectangle shapes
-#endif
-
int d[4][2]={{0,0}, {0,0}, {0,0}, {0,0}};
int sprite_ref[4][2];
int virtual_ref[2][2];