Mercurial > libavcodec.hg
comparison resample.c @ 1064:b32afefe7d33 libavcodec
* UINTX -> uintx_t INTX -> intx_t
| author | kabi |
|---|---|
| date | Tue, 11 Feb 2003 16:35:48 +0000 |
| parents | bb5de8a59da8 |
| children | 1e39f273ecd6 |
comparison
equal
deleted
inserted
replaced
| 1063:fdeac9642346 | 1064:b32afefe7d33 |
|---|---|
| 18 */ | 18 */ |
| 19 #include "avcodec.h" | 19 #include "avcodec.h" |
| 20 | 20 |
| 21 typedef struct { | 21 typedef struct { |
| 22 /* fractional resampling */ | 22 /* fractional resampling */ |
| 23 UINT32 incr; /* fractional increment */ | 23 uint32_t incr; /* fractional increment */ |
| 24 UINT32 frac; | 24 uint32_t frac; |
| 25 int last_sample; | 25 int last_sample; |
| 26 /* integer down sample */ | 26 /* integer down sample */ |
| 27 int iratio; /* integer divison ratio */ | 27 int iratio; /* integer divison ratio */ |
| 28 int icount, isum; | 28 int icount, isum; |
| 29 int inv; | 29 int inv; |
