Commit a982e5a0 authored by Anton Khirnov's avatar Anton Khirnov

avidec: make scale and rate unsigned.

The specs say they are unsigned 32bit integers.
parent bb7431f4
......@@ -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) */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment