avformat/hlsenc: remove unused variable to fix compiler warning

Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
This commit is contained in:
Steven Liu 2018-12-26 19:29:18 +08:00
parent c822d70c3d
commit cef857da48

View File

@ -2077,7 +2077,6 @@ static int hls_write_header(AVFormatContext *s)
{
HLSContext *hls = s->priv_data;
int ret, i, j;
AVDictionary *options = NULL;
VariantStream *vs = NULL;
for (i = 0; i < hls->nb_varstreams; i++) {
@ -2125,7 +2124,6 @@ static int hls_write_header(AVFormatContext *s)
}
}
}
fail:
return ret;
}