Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-12-08 16:20:25 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-12-08 16:25:40 +0400
commit31c55c572aa50134c8687a407a7a6e4e591080c6 (patch)
treec26879a2bc064097ab2ba4533f04e9bc488db2c1 /libavcodec/escape130.c
parente91c08805526758368ceb500f6156aaeaabc3ee8 (diff)
escape130: 10l for myself for not initializing y_base.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/escape130.c')
-rw-r--r--libavcodec/escape130.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/escape130.c b/libavcodec/escape130.c
index 3e811c2af9..322ec8f247 100644
--- a/libavcodec/escape130.c
+++ b/libavcodec/escape130.c
@@ -114,7 +114,7 @@ static int escape130_decode_frame(AVCodecContext *avctx,
block_index, row_index = 0;
unsigned y[4] = {0}, cb = 16, cr = 16;
unsigned skip = -1;
- unsigned y_base;
+ unsigned y_base = 0;
uint8_t *yb= s->bases;
AVFrame new_frame = { { 0 } };