Commit e6db28ce authored by Matthieu Crapet's avatar Matthieu Crapet Committed by 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
parent 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% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment