From 3a459ebe352cae3cb61010e57dc4aaa713830695 Mon Sep 17 00:00:00 2001 From: Joakim Plate Date: Thu, 24 Jul 2008 18:40:43 +0000 Subject: aspect stored in nuv files must be converted from display- to sample-aspect. Patch by elupus (elupus ecce se) Originally committed as revision 14375 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/nuv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/nuv.c') diff --git a/libavformat/nuv.c b/libavformat/nuv.c index 995775dc39..c692cacf76 100644 --- a/libavformat/nuv.c +++ b/libavformat/nuv.c @@ -156,7 +156,7 @@ static int nuv_header(AVFormatContext *s, AVFormatParameters *ap) { vst->codec->width = width; vst->codec->height = height; vst->codec->bits_per_sample = 10; - vst->codec->sample_aspect_ratio = av_d2q(aspect, 10000); + vst->codec->sample_aspect_ratio = av_d2q(aspect * height / width, 10000); vst->r_frame_rate = av_d2q(fps, 60000); av_set_pts_info(vst, 32, 1, 1000); } else -- cgit v1.2.3