Commit 7fd3e1c7 authored by Stefano Sabatini's avatar Stefano Sabatini

lavdev/lavfi: initialize variable, fix warning

parent 9a151467
...@@ -213,7 +213,7 @@ static int lavfi_read_packet(AVFormatContext *avctx, AVPacket *pkt) ...@@ -213,7 +213,7 @@ static int lavfi_read_packet(AVFormatContext *avctx, AVPacket *pkt)
{ {
LavfiContext *lavfi = avctx->priv_data; LavfiContext *lavfi = avctx->priv_data;
double min_pts = DBL_MAX; double min_pts = DBL_MAX;
int min_pts_sink_idx; int min_pts_sink_idx = 0;
AVFilterBufferRef *picref; AVFilterBufferRef *picref;
AVPicture pict; AVPicture pict;
int ret, i, size; int ret, i, size;
......
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