[FFmpeg-cvslog] avformat/http: remove unused function ff_http_get_shutdown_status

Steven Liu git at videolan.org
Thu May 12 06:32:27 EEST 2022


ffmpeg | branch: master | Steven Liu <liuqi05 at kuaishou.com> | Sun May  8 07:46:57 2022 +0800| [1d6e9a7a3083ce07c8431f7b93958d8496531fcf] | committer: Steven Liu

avformat/http: remove unused function ff_http_get_shutdown_status

ff_http_get_shutdown_status is unused after ticket 9010 fixed.

Signed-off-by: Steven Liu <lq at chinaffmpeg.org>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1d6e9a7a3083ce07c8431f7b93958d8496531fcf
---

 libavformat/http.c | 15 ---------------
 libavformat/http.h |  9 ---------
 2 files changed, 24 deletions(-)

diff --git a/libavformat/http.c b/libavformat/http.c
index c4eeb58cd0..c8f3f4b6a3 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -441,21 +441,6 @@ fail:
         return ret;
     return ff_http_averror(s->http_code, AVERROR(EIO));
 }
-int ff_http_get_shutdown_status(URLContext *h)
-{
-    int ret = 0;
-    HTTPContext *s = h->priv_data;
-
-    /* flush the receive buffer when it is write only mode */
-    char buf[1024];
-    int read_ret;
-    read_ret = ffurl_read(s->hd, buf, sizeof(buf));
-    if (read_ret < 0) {
-        ret = read_ret;
-    }
-
-    return ret;
-}
 
 int ff_http_do_new_request(URLContext *h, const char *uri) {
     return ff_http_do_new_request2(h, uri, NULL);
diff --git a/libavformat/http.h b/libavformat/http.h
index 5557ce9b58..5f650ef143 100644
--- a/libavformat/http.h
+++ b/libavformat/http.h
@@ -37,15 +37,6 @@
  */
 void ff_http_init_auth_state(URLContext *dest, const URLContext *src);
 
-/**
- * Get the HTTP shutdown response status, be used after http_shutdown.
- *
- * @param h pointer to the resource
- * @return a negative value if an error condition occurred, 0
- * otherwise
- */
-int ff_http_get_shutdown_status(URLContext *h);
-
 /**
  * Send a new HTTP request, reusing the old connection.
  *



More information about the ffmpeg-cvslog mailing list