mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
flvdec: Fix compiler warning for uninitialized variables
These can't be used uninitialized in practice, but the compiler doesn't realize it. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
4be386b318
commit
2df73eefb4
@ -441,7 +441,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
int ret, i, type, size, flags, is_audio;
|
||||
int64_t next, pos;
|
||||
int64_t dts, pts = AV_NOPTS_VALUE;
|
||||
int sample_rate, channels;
|
||||
int sample_rate = 0, channels = 0;
|
||||
AVStream *st = NULL;
|
||||
|
||||
for(;;avio_skip(s->pb, 4)){ /* pkt size is repeated at end. skip it */
|
||||
|
Loading…
Reference in New Issue
Block a user