mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
copy language information from input stream to output
Originally committed as revision 9797 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a03d59b720
commit
8e0d882b49
4
ffmpeg.c
4
ffmpeg.c
@ -1507,6 +1507,10 @@ static int av_encode(AVFormatContext **output_files,
|
|||||||
codec = ost->st->codec;
|
codec = ost->st->codec;
|
||||||
icodec = ist->st->codec;
|
icodec = ist->st->codec;
|
||||||
|
|
||||||
|
if (!ost->st->language[0])
|
||||||
|
av_strlcpy(ost->st->language, ist->st->language,
|
||||||
|
sizeof(ost->st->language));
|
||||||
|
|
||||||
if (ost->st->stream_copy) {
|
if (ost->st->stream_copy) {
|
||||||
/* if stream_copy is selected, no need to decode or encode */
|
/* if stream_copy is selected, no need to decode or encode */
|
||||||
codec->codec_id = icodec->codec_id;
|
codec->codec_id = icodec->codec_id;
|
||||||
|
Loading…
Reference in New Issue
Block a user