mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Silence GCC when incorrectly complaining that the "line" variable could be used
without having been initialized. Originally committed as revision 7711 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
200d9a885b
commit
b5bfb9f9de
@ -3547,7 +3547,7 @@ static void correlate_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand
|
||||
|
||||
// START_TIMER
|
||||
|
||||
DWTELEM * line;
|
||||
DWTELEM * line=0; // silence silly "could be used without having been initialized" warning
|
||||
DWTELEM * prev;
|
||||
|
||||
if (start_y != 0)
|
||||
|
Loading…
Reference in New Issue
Block a user