summaryrefslogtreecommitdiff
path: root/libavformat/avidec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-04 22:54:15 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-04 22:59:32 +0200
commit944d049eaa1ca829d97c2877ec9524c049148e14 (patch)
tree472292bb64fb4b786c5c2bd22835f9bdb0f227b5 /libavformat/avidec.c
parentdf03ae8dd80b28e0461611709e290bc61db3cdca (diff)
parent41e9682af22336bd08a5906629731c0c32aa00c6 (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: movenc: Write chan atom for all audio tracks in mov mode movies. mpegtsenc: use avio_open_dyn_buf(), zero pointers after freeing doc/avconv: add some details about the transcoding process. avidec: make scale and rate unsigned. avconv: check output stream recording time before each frame returned from filters avconv: split selecting input file out of transcode(). avconv: split checking for active outputs out of transcode(). avfiltergraph: make some functions static. Conflicts: ffmpeg.c libavfilter/avfiltergraph.c libavfilter/internal.h libavformat/mpegtsenc.c tests/ref/fate/acodec-alac tests/ref/fate/acodec-pcm-s16be tests/ref/fate/acodec-pcm-s24be tests/ref/fate/acodec-pcm-s32be tests/ref/fate/acodec-pcm-s8 tests/ref/lavf/mov Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avidec.c')
-rw-r--r--libavformat/avidec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index 24aacd04fd..fea069434e 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -40,8 +40,8 @@ typedef struct AVIStream {
int remaining;
int packet_size;
- int scale;
- int rate;
+ uint32_t scale;
+ uint32_t rate;
int sample_size; /* size of one sample (or packet) (in the rate/scale sense) in bytes */
int64_t cum_len; /* temporary storage (used during seek) */