提交 e6db28ce 编写于 作者: M Matthieu Crapet 提交者: Carl Eugen Hoyos

Simplify freeing of audio_language and subtitle_language.

Patch by Matthieu, mcrapet gmail com

Originally committed as revision 20875 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 257c7147
......@@ -3259,8 +3259,7 @@ static void new_audio_stream(AVFormatContext *oc)
audio_enc->time_base= (AVRational){1, audio_sample_rate};
if (audio_language) {
av_metadata_set(&st->metadata, "language", audio_language);
av_free(audio_language);
audio_language = NULL;
av_freep(&audio_language);
}
/* reset some key parameters */
......@@ -3301,8 +3300,7 @@ static void new_subtitle_stream(AVFormatContext *oc)
if (subtitle_language) {
av_metadata_set(&st->metadata, "language", subtitle_language);
av_free(subtitle_language);
subtitle_language = NULL;
av_freep(&subtitle_language);
}
subtitle_disable = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册