From: Limin Wang <lance.lmw...@gmail.com>

Signed-off-by: Limin Wang <lance.lmw...@gmail.com>
---
 libavformat/internal.h | 2 +-
 libavformat/utils.c    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/internal.h b/libavformat/internal.h
index cc8c8f4..6f1f1c0 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -907,7 +907,7 @@ void ff_format_io_close(AVFormatContext *s, AVIOContext 
**pb);
  * @param s AVFormatContext
  * @param filename URL or file name to open for writing
  */
-int ff_is_http_proto(char *filename);
+int ff_is_http_proto(const char *filename);
 
 /**
  * Parse creation_time in AVFormatContext metadata if exists and warn if the
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 2157f93..509c0ec 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -1802,7 +1802,7 @@ void ff_format_io_close(AVFormatContext *s, AVIOContext 
**pb)
     *pb = NULL;
 }
 
-int ff_is_http_proto(char *filename) {
+int ff_is_http_proto(const char *filename) {
     const char *proto = avio_find_protocol_name(filename);
     return proto ? (!av_strcasecmp(proto, "http") || !av_strcasecmp(proto, 
"https")) : 0;
 }
-- 
1.8.3.1

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to