diff options
author | Steven Liu <[email protected]> | 2018-12-26 19:29:18 +0800 |
---|---|---|
committer | Steven Liu <[email protected]> | 2018-12-26 19:29:18 +0800 |
commit | cef857da481e14393a3ed4ab5663fe0d48d7fe24 (patch) | |
tree | cbfb305fd3f37f18887d3c38043cff96a4e60959 | |
parent | c822d70c3d2d59da986daa1dcbc9f9d1e3566ece (diff) |
avformat/hlsenc: remove unused variable to fix compiler warning
Signed-off-by: Steven Liu <[email protected]>
-rw-r--r-- | libavformat/hlsenc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 61236d495f..d202261771 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -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; } |