Commit eccb94c3 authored by Limin Wang's avatar Limin Wang Committed by Steven Liu

lavf/hlsenc: fix one warning: unused variable 'filename' [-Wunused-variable]

Reviewed-by: 's avatarSteven Liu <lq@onvideo.cn>
Signed-off-by: 's avatarLimin Wang <lance.lmwang@gmail.com>
parent d0fa1a58
......@@ -1571,7 +1571,7 @@ static int hls_start(AVFormatContext *s, VariantStream *vs)
AVDictionary *options = NULL;
const char *proto = NULL;
int use_temp_file = 0;
char *filename, iv_string[KEYSIZE*2 + 1];
char iv_string[KEYSIZE*2 + 1];
int err = 0;
if (c->flags & HLS_SINGLE_FILE) {
......
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