[FFmpeg-cvslog] r19698 - trunk/libavformat/mtv.c

reimar subversion
Tue Aug 25 09:47:34 CEST 2009


Author: reimar
Date: Tue Aug 25 09:47:34 2009
New Revision: 19698

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

Modified:
   trunk/libavformat/mtv.c

Modified: trunk/libavformat/mtv.c
==============================================================================
--- trunk/libavformat/mtv.c	Mon Aug 24 23:42:25 2009	(r19697)
+++ trunk/libavformat/mtv.c	Tue Aug 25 09:47:34 2009	(r19698)
@@ -102,6 +102,8 @@ static int mtv_read_header(AVFormatConte
     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
 



More information about the ffmpeg-cvslog mailing list