[FFmpeg-cvslog] avformat/file: reindent after the previous commit
Zhao Zhili
git at videolan.org
Wed Jan 11 05:06:30 EET 2023
ffmpeg | branch: master | Zhao Zhili <zhilizhao at tencent.com> | Thu Dec 15 01:10:08 2022 +0800| [8d91a8faab8104872bc83d8e73355d2126a1ce15] | committer: Zhao Zhili
avformat/file: reindent after the previous commit
Signed-off-by: Zhao Zhili <zhilizhao at tencent.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8d91a8faab8104872bc83d8e73355d2126a1ce15
---
libavformat/file.c | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/libavformat/file.c b/libavformat/file.c
index db619fcaac..a56be64342 100644
--- a/libavformat/file.c
+++ b/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
More information about the ffmpeg-cvslog
mailing list