Commit aec33d68 authored by Matthias Keiser's avatar Matthias Keiser Committed by Jean-Baptiste Kempf

Avformat: Support rotation information

Notably for mp4

Ref #2882
parent 5abfaffa
......@@ -335,6 +335,28 @@ int OpenDemux( vlc_object_t *p_this )
fmt.video.i_width = cc->width;
fmt.video.i_height = cc->height;
char const *kRotateKey = "rotate";
AVDictionaryEntry *rotation = av_dict_get(s->metadata, kRotateKey, NULL, 0);
if( rotation )
{
long angle = strtol(rotation->value, NULL, 10);
if (angle > 45 && angle < 135)
fmt.video.orientation = ORIENT_ROTATED_270;
else if (angle > 135 && angle < 225)
fmt.video.orientation = ORIENT_ROTATED_180;
else if (angle > 225 && angle < 315)
fmt.video.orientation = ORIENT_ROTATED_90;
else
fmt.video.orientation = ORIENT_NORMAL;
}
#if LIBAVCODEC_VERSION_MAJOR < 54
if( cc->palctrl )
{
......
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