Browse Source

oggparseogm: Fix order or arguments.

Bug introduced by libav in 1bb3990b56

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 14 years ago
parent
commit
12c65efb41
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/oggparseogm.c

+ 1
- 1
libavformat/oggparseogm.c View File

@@ -84,7 +84,7 @@ ogm_header(AVFormatContext *s, int idx)
if(st->codec->codec_type == AVMEDIA_TYPE_VIDEO){
st->codec->width = bytestream_get_le32(&p);
st->codec->height = bytestream_get_le32(&p);
avpriv_set_pts_info(st, 64, spu * 10000000, time_unit);
avpriv_set_pts_info(st, 64, time_unit, spu * 10000000);
} else {
st->codec->channels = bytestream_get_le16(&p);
p += 2; /* block_align */


Loading…
Cancel
Save