Commit d67c1dda authored by Steven Liu's avatar Steven Liu

avformat/hlsenc: fix compiling error when disable-network

parent 5ff0d2ac
...@@ -45,7 +45,9 @@ ...@@ -45,7 +45,9 @@
#include "avformat.h" #include "avformat.h"
#include "avio_internal.h" #include "avio_internal.h"
#if CONFIG_HTTP_PROTOCOL
#include "http.h" #include "http.h"
#endif
#include "hlsplaylist.h" #include "hlsplaylist.h"
#include "internal.h" #include "internal.h"
#include "os_support.h" #include "os_support.h"
...@@ -245,13 +247,15 @@ static int hlsenc_io_open(AVFormatContext *s, AVIOContext **pb, char *filename, ...@@ -245,13 +247,15 @@ static int hlsenc_io_open(AVFormatContext *s, AVIOContext **pb, char *filename,
AVDictionary **options) { AVDictionary **options) {
HLSContext *hls = s->priv_data; HLSContext *hls = s->priv_data;
int http_base_proto = is_http_proto(filename); int http_base_proto = is_http_proto(filename);
int err; int err = AVERROR_MUXER_NOT_FOUND;
if (!*pb || !http_base_proto || !hls->http_persistent) { if (!*pb || !http_base_proto || !hls->http_persistent) {
err = s->io_open(s, pb, filename, AVIO_FLAG_WRITE, options); err = s->io_open(s, pb, filename, AVIO_FLAG_WRITE, options);
#if CONFIG_HTTP_PROTOCOL
} else { } else {
URLContext *http_url_context = ffio_geturlcontext(*pb); URLContext *http_url_context = ffio_geturlcontext(*pb);
av_assert0(http_url_context); av_assert0(http_url_context);
err = ff_http_do_new_request(http_url_context, filename); err = ff_http_do_new_request(http_url_context, filename);
#endif
} }
return err; return err;
} }
......
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