mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-28 03:13:08 +08:00
avcodec_string: Favor AVCodecContext.codec over the default codec.
This improves output for formats with more than one AVCodec.
This commit is contained in:
@@ -1498,7 +1498,9 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
|
|||||||
int bitrate;
|
int bitrate;
|
||||||
AVRational display_aspect_ratio;
|
AVRational display_aspect_ratio;
|
||||||
|
|
||||||
if (encode)
|
if (enc->codec)
|
||||||
|
p = enc->codec;
|
||||||
|
else if (encode)
|
||||||
p = avcodec_find_encoder(enc->codec_id);
|
p = avcodec_find_encoder(enc->codec_id);
|
||||||
else
|
else
|
||||||
p = avcodec_find_decoder(enc->codec_id);
|
p = avcodec_find_decoder(enc->codec_id);
|
||||||
|
|||||||
Reference in New Issue
Block a user