Commit 81980bf7 authored by Jean First's avatar Jean First Committed by Stefano Sabatini

lavd/lavfi: fix compiler warning for uninitialized variables

Signed-off-by: 's avatarJean First <jeanfirst@gmail.com>
Signed-off-by: 's avatarStefano Sabatini <stefasab@gmail.com>
parent 8fb03b4d
......@@ -270,7 +270,8 @@ static int lavfi_read_packet(AVFormatContext *avctx, AVPacket *pkt)
int stream_idx, min_pts_sink_idx = 0;
AVFilterBufferRef *ref;
AVPicture pict;
int ret, i, size;
int ret, i;
int size = 0;
/* iterate through all the graph sinks. Select the sink with the
* minimum PTS */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment