1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avcodec/exr: remove pointless initialization

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol
2013-10-10 09:54:48 +00:00
parent 2d52834910
commit 996c73490c

View File

@@ -523,7 +523,7 @@ static int decode_frame(AVCodecContext *avctx,
channel_list_end = buf + variable_buffer_data_size;
while (channel_list_end - buf >= 19) {
EXRChannel *channel;
int current_pixel_type = -1;
enum ExrPixelType current_pixel_type;
int channel_index = -1;
int xsub, ysub;