summaryrefslogtreecommitdiffstats
path: root/libavcodec/ppc
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-01-30 15:40:48 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-01-30 16:43:14 +0100
commit3531594017bdca10f6e33a2afb65c8416d53d75e (patch)
treeb0b95c25fe416a0e78c8b7b75eed2f825dcd8b44 /libavcodec/ppc
parentbe128c1e34263f18b42d1bcb684ba45bad312d75 (diff)
downloadffmpeg-streaming-3531594017bdca10f6e33a2afb65c8416d53d75e.zip
ffmpeg-streaming-3531594017bdca10f6e33a2afb65c8416d53d75e.tar.gz
ppc/mpegvideo_altivec: Change assert to av_assert2()
And move it to where the variable is used Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ppc')
-rw-r--r--libavcodec/ppc/mpegvideo_altivec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/ppc/mpegvideo_altivec.c b/libavcodec/ppc/mpegvideo_altivec.c
index ce53ae4..1b6bda6 100644
--- a/libavcodec/ppc/mpegvideo_altivec.c
+++ b/libavcodec/ppc/mpegvideo_altivec.c
@@ -42,8 +42,6 @@ static void dct_unquantize_h263_altivec(MpegEncContext *s,
int i, level, qmul, qadd;
int nCoeffs;
- assert(s->block_last_index[n]>=0);
-
qadd = (qscale - 1) | 1;
qmul = qscale << 1;
@@ -59,6 +57,7 @@ static void dct_unquantize_h263_altivec(MpegEncContext *s,
nCoeffs= 63; //does not always use zigzag table
} else {
i = 0;
+ av_assert2(s->block_last_index[n]>=0);
nCoeffs= s->intra_scantable.raster_end[ s->block_last_index[n] ];
}
OpenPOWER on IntegriCloud