diff options
author | Steven Liu <lq@chinaffmpeg.org> | 2017-12-04 23:52:17 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2017-12-04 23:52:17 +0800 |
commit | d67c1dda403288bcfd30b5d4a0412582728c2c79 (patch) | |
tree | 589474056e68a3c0215dc3069e4f431cac2df766 | |
parent | 5ff0d2acaef87950a254cea9c75153f48caaa729 (diff) | |
download | ffmpeg-streaming-d67c1dda403288bcfd30b5d4a0412582728c2c79.zip ffmpeg-streaming-d67c1dda403288bcfd30b5d4a0412582728c2c79.tar.gz |
avformat/hlsenc: fix compiling error when disable-network
-rw-r--r-- | libavformat/hlsenc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index aeeed5b..7dc8f42 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -45,7 +45,9 @@ #include "avformat.h" #include "avio_internal.h" +#if CONFIG_HTTP_PROTOCOL #include "http.h" +#endif #include "hlsplaylist.h" #include "internal.h" #include "os_support.h" @@ -245,13 +247,15 @@ static int hlsenc_io_open(AVFormatContext *s, AVIOContext **pb, char *filename, AVDictionary **options) { HLSContext *hls = s->priv_data; int http_base_proto = is_http_proto(filename); - int err; + int err = AVERROR_MUXER_NOT_FOUND; if (!*pb || !http_base_proto || !hls->http_persistent) { err = s->io_open(s, pb, filename, AVIO_FLAG_WRITE, options); +#if CONFIG_HTTP_PROTOCOL } else { URLContext *http_url_context = ffio_geturlcontext(*pb); av_assert0(http_url_context); err = ff_http_do_new_request(http_url_context, filename); +#endif } return err; } |