diff options
author | Reinhard Nißl <rnissl@gmx.de> | 2007-12-31 12:09:01 +0100 |
---|---|---|
committer | Reinhard Nißl <rnissl@gmx.de> | 2007-12-31 12:09:01 +0100 |
commit | 3a636d2081083046da558174b945c390eeb9341f (patch) | |
tree | 57a554925a3afd484301c6818d9cb40dc954b079 /src/libffmpeg/ff_video_decoder.c | |
parent | 827f7684690ba127f6477a1d32548dd14d3c79bb (diff) | |
download | xine-lib-3a636d2081083046da558174b945c390eeb9341f.tar.gz xine-lib-3a636d2081083046da558174b945c390eeb9341f.tar.bz2 |
Add a missing initialisation.
Diffstat (limited to 'src/libffmpeg/ff_video_decoder.c')
-rw-r--r-- | src/libffmpeg/ff_video_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libffmpeg/ff_video_decoder.c b/src/libffmpeg/ff_video_decoder.c index 784571779..dc1176e78 100644 --- a/src/libffmpeg/ff_video_decoder.c +++ b/src/libffmpeg/ff_video_decoder.c @@ -1197,7 +1197,7 @@ static void ff_handle_buffer (ff_video_decoder_t *this, buf_element_t *buf) { int got_one_picture = 0; int offset = 0; int codec_type = buf->type & 0xFFFF0000; - int video_step_to_use; + int video_step_to_use = this->video_step; /* pad input data */ /* note: bitstream, alt bitstream reader or something will cause |