[FFmpeg-devel] [PATCH 27/45] avcodec/sgienc: Combine av_log() statements
Andreas Rheinhardt
andreas.rheinhardt at gmail.com
Fri Nov 27 03:02:31 EET 2020
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
---
libavcodec/sgienc.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/sgienc.c b/libavcodec/sgienc.c
index 65eff33bc8..3aa0c7f4a5 100644
--- a/libavcodec/sgienc.c
+++ b/libavcodec/sgienc.c
@@ -39,9 +39,9 @@ typedef struct SgiContext {
static av_cold int encode_init(AVCodecContext *avctx)
{
if (avctx->width > 65535 || avctx->height > 65535) {
- av_log(avctx, AV_LOG_ERROR,
- "Unsupported resolution %dx%d.\n", avctx->width, avctx->height);
- av_log(avctx, AV_LOG_ERROR, "SGI does not support resolutions above 65535x65535\n");
+ av_log(avctx, AV_LOG_ERROR, "Unsupported resolution %dx%d. "
+ "SGI does not support resolutions above 65535x65535\n",
+ avctx->width, avctx->height);
return AVERROR_INVALIDDATA;
}
--
2.25.1
More information about the ffmpeg-devel
mailing list