From 49056037a80009b60b5cf9fb43d9c12f873b4fcf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= <Reimar.Doeffinger@gmx.de>
Date: Tue, 25 Aug 2009 07:47:34 +0000
Subject: [PATCH] Mark video from .mtv files correctly as upside-down.

Originally committed as revision 19698 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/mtv.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavformat/mtv.c b/libavformat/mtv.c
index 1ebeaee8a9f..42aa91f7b3a 100644
--- a/libavformat/mtv.c
+++ b/libavformat/mtv.c
@@ -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
 
-- 
GitLab