diff mbox series

[FFmpeg-devel] examples/transcode: fix log message

Message ID tencent_6AF45BB83527805435613F6F56659CECE009@qq.com
State Accepted
Commit 7665139656280a2f77ee8d047dd998c1b78af7eb
Headers show
Series [FFmpeg-devel] examples/transcode: fix log message | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Zhao Zhili Nov. 30, 2023, 3:57 p.m. UTC
From: Zhao Zhili <zhilizhao@tencent.com>

'encoder' can be audio or video encoder.
---
 doc/examples/transcode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Stefano Sabatini Dec. 11, 2023, 11:38 p.m. UTC | #1
On date Thursday 2023-11-30 23:57:31 +0800, Zhao Zhili wrote:
> From: Zhao Zhili <zhilizhao@tencent.com>
> 
> 'encoder' can be audio or video encoder.
> ---
>  doc/examples/transcode.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Looks good, will apply.
diff mbox series

Patch

diff --git a/doc/examples/transcode.c b/doc/examples/transcode.c
index ed6ac9fa03..a544ec0340 100644
--- a/doc/examples/transcode.c
+++ b/doc/examples/transcode.c
@@ -196,7 +196,7 @@  static int open_output_file(const char *filename)
             /* Third parameter can be used to pass settings to encoder */
             ret = avcodec_open2(enc_ctx, encoder, NULL);
             if (ret < 0) {
-                av_log(NULL, AV_LOG_ERROR, "Cannot open video encoder for stream #%u\n", i);
+                av_log(NULL, AV_LOG_ERROR, "Cannot open %s encoder for stream #%u\n", encoder->name, i);
                 return ret;
             }
             ret = avcodec_parameters_from_context(out_stream->codecpar, enc_ctx);