Browse Source

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
tags/v0.5
Joakim Plate Reimar Döffinger 17 years ago
parent
commit
3a459ebe35
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/nuv.c

+ 1
- 1
libavformat/nuv.c View File

@@ -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


Loading…
Cancel
Save