Commit a1acae04 authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg_opt: remove rotate metadata in case of autorotate

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f5b26fbc
......@@ -2184,8 +2184,11 @@ loop_end:
continue;
ist = input_streams[output_streams[i]->source_index];
av_dict_copy(&output_streams[i]->st->metadata, ist->st->metadata, AV_DICT_DONT_OVERWRITE);
if (!output_streams[i]->stream_copy)
if (!output_streams[i]->stream_copy) {
av_dict_set(&output_streams[i]->st->metadata, "encoder", NULL, 0);
if (ist->autorotate)
av_dict_set(&output_streams[i]->st->metadata, "rotate", NULL, 0);
}
}
/* process manually set metadata */
......
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