changeset 5976:e46f8cc350ef libavformat

Fix MTV decoding on big-endian systems
author vitor
date Wed, 21 Apr 2010 13:00:48 +0000
parents 028ad8c9a6f6
children 6eada15742a7
files mtv.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mtv.c	Wed Apr 21 06:36:09 2010 +0000
+++ b/mtv.c	Wed Apr 21 13:00:48 2010 +0000
@@ -125,10 +125,9 @@
     av_set_pts_info(st, 64, 1, mtv->video_fps);
     st->codec->codec_type      = AVMEDIA_TYPE_VIDEO;
     st->codec->codec_id        = CODEC_ID_RAWVIDEO;
-    st->codec->codec_tag       = MKTAG('R', 'G', 'B', mtv->img_bpp);
+    st->codec->pix_fmt         = PIX_FMT_RGB565;
     st->codec->width           = mtv->img_width;
     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;