Browse Source

Fix aspect ratio.

fixes issue404
avienc.c change by StevieS

Originally committed as revision 12601 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 17 years ago
parent
commit
61559562f5
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      libavformat/avidec.c
  2. +1
    -1
      libavformat/avienc.c

+ 1
- 1
libavformat/avidec.c View File

@@ -538,8 +538,8 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
get_le32(pb);
get_le32(pb);

active_aspect.num= get_le16(pb);
active_aspect.den= get_le16(pb);
active_aspect.num= get_le16(pb);
active.num = get_le32(pb);
active.den = get_le32(pb);
get_le32(pb); //nbFieldsPerFrame


+ 1
- 1
libavformat/avienc.c View File

@@ -297,8 +297,8 @@ static int avi_write_header(AVFormatContext *s)
put_le32(pb, lrintf(1.0/av_q2d(stream->time_base)));
put_le32(pb, stream->width );
put_le32(pb, stream->height);
put_le16(pb, num);
put_le16(pb, den);
put_le16(pb, num);
put_le32(pb, stream->width );
put_le32(pb, stream->height);
put_le32(pb, 1); //progressive FIXME


Loading…
Cancel
Save