diff options
author | Charles Liu <liuchh83@gmail.com> | 2018-10-30 11:09:14 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2018-10-30 11:09:14 +0800 |
commit | 2365f47bf51a77442034fd8aa0af0346a373388b (patch) | |
tree | a83990e1b4a1e733e412ae928379ba99205bcb35 /libavformat | |
parent | e9dbd62cb5f167c99298467db54d56c61a6be74f (diff) | |
download | ffmpeg-2365f47bf51a77442034fd8aa0af0346a373388b.tar.gz |
avformat/hlsenc.c: remove the useless variable fmp4_init_mode.
Signed-off-by: Charles Liu <liuchh83@gmail.com>
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/hlsenc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index c322b5a48f..0fd5d2a995 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -147,7 +147,6 @@ typedef struct VariantStream { char *fmp4_init_filename; char *base_output_dirname; - int fmp4_init_mode; AVStream **streams; char codec_attr[128]; @@ -733,7 +732,6 @@ static int hls_mux_init(AVFormatContext *s, VariantStream *vs) vs->packets_written = 1; vs->start_pos = 0; vs->new_start = 1; - vs->fmp4_init_mode = 0; if (hls->segment_type == SEGMENT_TYPE_FMP4) { if (hls->max_seg_size > 0) { @@ -743,7 +741,6 @@ static int hls_mux_init(AVFormatContext *s, VariantStream *vs) vs->packets_written = 0; vs->init_range_length = 0; - vs->fmp4_init_mode = !byterange_mode; set_http_options(s, &options, hls); if ((ret = avio_open_dyn_buf(&oc->pb)) < 0) return ret; @@ -2291,7 +2288,6 @@ static int hls_write_packet(AVFormatContext *s, AVPacket *pkt) vs->start_pos += vs->size; } - vs->fmp4_init_mode = 0; if (hls->flags & HLS_SINGLE_FILE) { vs->number++; } else if (hls->max_seg_size > 0) { |