[FFmpeg-devel] [PATCH 2/2] lavf/dashdec: refactoring error handle logic for open_input
Jun Zhao
mypopydev at gmail.com
Sat May 11 10:23:44 EEST 2019
From: Jun Zhao <barryjzhao at tencent.com>
refactoring error handle logic for open_input.
Signed-off-by: Jun Zhao <barryjzhao at tencent.com>
---
libavformat/dashdec.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c
index ce8bd4a..2c50f23 100644
--- a/libavformat/dashdec.c
+++ b/libavformat/dashdec.c
@@ -1687,6 +1687,7 @@ static int open_input(DASHContext *c, struct representation *pls, struct fragmen
url = av_mallocz(c->max_url_size);
if (!url) {
+ ret = AVERROR(ENOMEM);
goto cleanup;
}
@@ -1701,9 +1702,6 @@ static int open_input(DASHContext *c, struct representation *pls, struct fragmen
av_log(pls->parent, AV_LOG_VERBOSE, "DASH request for url '%s', offset %"PRId64", playlist %d\n",
url, seg->url_offset, pls->rep_idx);
ret = open_url(pls->parent, &pls->input, url, c->avio_opts, opts, NULL);
- if (ret < 0) {
- goto cleanup;
- }
cleanup:
av_free(url);
--
1.7.1
More information about the ffmpeg-devel
mailing list