Signed-off-by: Andreas Rheinhardt <[email protected]>
---
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
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".