1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

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

Reviewed-by: Steven Liu <lq@onvideo.cn>
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
This commit is contained in:
Limin Wang
2019-08-19 09:42:29 +08:00
committed by Steven Liu
parent d0fa1a58da
commit eccb94c3ba

View File

@@ -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) {