Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Scholz <epirat07@gmail.com>2022-10-04 17:40:08 +0300
committerAnton Khirnov <anton@khirnov.net>2022-10-14 13:19:13 +0300
commitfed841f6f9ca0251358f386411127bb248601349 (patch)
treebd599facbe4ea217ce017e250adb9478d07cf317 /fftools
parent88635c7f953ebae9e1beced0e4ecb5f026f47dde (diff)
fftools/ffmpeg_opt: Use av_err2str
This simplifies the code as there is no other place the error buffer is needed, so the av_err2str helper macro can be used. Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'fftools')
-rw-r--r--fftools/ffmpeg_opt.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c
index c1de4e5041..fbc8638eed 100644
--- a/fftools/ffmpeg_opt.c
+++ b/fftools/ffmpeg_opt.c
@@ -3716,7 +3716,6 @@ static int open_files(OptionGroupList *l, const char *inout,
int ffmpeg_parse_options(int argc, char **argv)
{
OptionParseContext octx;
- uint8_t error[128];
int ret;
memset(&octx, 0, sizeof(octx));
@@ -3767,8 +3766,7 @@ int ffmpeg_parse_options(int argc, char **argv)
fail:
uninit_parse_context(&octx);
if (ret < 0) {
- av_strerror(ret, error, sizeof(error));
- av_log(NULL, AV_LOG_FATAL, "%s\n", error);
+ av_log(NULL, AV_LOG_FATAL, "%s\n", av_err2str(ret));
}
return ret;
}