This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit fcc1a03a0e7542209f1272b5870deeb414d3c873
Author:     Niklas Haas <[email protected]>
AuthorDate: Sun Feb 15 18:28:29 2026 +0100
Commit:     Niklas Haas <[email protected]>
CommitDate: Wed Mar 4 08:49:53 2026 +0000

    avformat/http: move retry label (cosmetic)
    
    Move this closer to the corresponding `goto`. From the PoV of the control
    flow, these placements are completely identical.
---
 libavformat/http.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavformat/http.c b/libavformat/http.c
index 0ca20d06fd..6764e7e24a 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -1840,6 +1840,8 @@ static int http_read_stream(URLContext *h, uint8_t *buf, 
int size)
     if (s->compressed)
         return http_buf_read_compressed(h, buf, size);
 #endif /* CONFIG_ZLIB */
+
+retry:
     read_ret = http_buf_read(h, buf, size);
     while (read_ret < 0) {
         uint64_t target = h->is_streamed ? 0 : s->off;
@@ -1887,7 +1889,6 @@ static int http_read_stream(URLContext *h, uint8_t *buf, 
int size)
             return read_ret;
         }
 
-retry:
         read_ret = http_buf_read(h, buf, size);
     }
 

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to