[FFmpeg-cvslog] avformat/rtspdec: cosmetics
Andriy Gelman
git at videolan.org
Sat Nov 21 18:23:06 EET 2020
ffmpeg | branch: master | Andriy Gelman <andriy.gelman at gmail.com> | Mon Oct 12 16:36:07 2020 -0400| [9a70b6f5b84cf98cb7012ca3b5adc5f28f0f50bf] | committer: Andriy Gelman
avformat/rtspdec: cosmetics
Make error check style consistent with rest of function.
Signed-off-by: Andriy Gelman <andriy.gelman at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9a70b6f5b84cf98cb7012ca3b5adc5f28f0f50bf
---
libavformat/rtspdec.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c
index 8a2abc8ee9..28b35d1993 100644
--- a/libavformat/rtspdec.c
+++ b/libavformat/rtspdec.c
@@ -744,9 +744,9 @@ static int rtsp_read_header(AVFormatContext *s)
if (rt->initial_pause) {
/* do not start immediately */
} else {
- if ((ret = rtsp_read_play(s)) < 0) {
+ ret = rtsp_read_play(s);
+ if (ret < 0)
goto fail;
- }
}
}
More information about the ffmpeg-cvslog
mailing list