1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

avidec: make scale and rate unsigned.

The specs say they are unsigned 32bit integers.
This commit is contained in:
Anton Khirnov 2012-06-04 11:36:51 +02:00
parent bb7431f4fc
commit a982e5a031

View File

@ -39,8 +39,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) */