Commit d6a11728 authored by reimar's avatar reimar

Mark video from .mtv files correctly as upside-down.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19698 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4e5eda44
......@@ -102,6 +102,8 @@ static int mtv_read_header(AVFormatContext *s, AVFormatParameters *ap)
st->codec->height = mtv->img_height;
st->codec->bits_per_coded_sample = mtv->img_bpp;
st->codec->sample_rate = mtv->video_fps;
st->codec->extradata = av_strdup("BottomUp");
st->codec->extradata_size = 9;
// audio - mp3
......
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