Browse Source

avformat/file: reindent after the previous commit

Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
Zhao Zhili 2 years ago
parent
commit
8d91a8faab
1 changed files with 10 additions and 10 deletions
  1. 10 10
      libavformat/file.c

+ 10 - 10
libavformat/file.c

@@ -384,17 +384,17 @@ static int pipe_open(URLContext *h, const char *filename, int flags)
     char *final;
 
     if (c->fd < 0) {
-    av_strstart(filename, "pipe:", &filename);
-
-    fd = strtol(filename, &final, 10);
-    if((filename == final) || *final ) {/* No digits found, or something like 10ab */
-        if (flags & AVIO_FLAG_WRITE) {
-            fd = 1;
-        } else {
-            fd = 0;
+        av_strstart(filename, "pipe:", &filename);
+
+        fd = strtol(filename, &final, 10);
+        if((filename == final) || *final ) {/* No digits found, or something like 10ab */
+            if (flags & AVIO_FLAG_WRITE) {
+                fd = 1;
+            } else {
+                fd = 0;
+            }
         }
-    }
-    c->fd = fd;
+        c->fd = fd;
     }
 
 #if HAVE_SETMODE