comparison oggvorbis.c @ 1064:b32afefe7d33 libavcodec

* UINTX -> uintx_t INTX -> intx_t
author kabi
date Tue, 11 Feb 2003 16:35:48 +0000
parents 159333d9297e
children 1e39f273ecd6
comparison
equal deleted inserted replaced
1063:fdeac9642346 1064:b32afefe7d33
177 } 177 }
178 178
179 179
180 static int oggvorbis_decode_frame(AVCodecContext *avccontext, 180 static int oggvorbis_decode_frame(AVCodecContext *avccontext,
181 void *data, int *data_size, 181 void *data, int *data_size,
182 UINT8 *buf, int buf_size) 182 uint8_t *buf, int buf_size)
183 { 183 {
184 OggVorbisContext *context = avccontext->priv_data ; 184 OggVorbisContext *context = avccontext->priv_data ;
185 ogg_packet *op = (ogg_packet*)buf ; 185 ogg_packet *op = (ogg_packet*)buf ;
186 float **pcm ; 186 float **pcm ;
187 int samples, total_samples, total_bytes ; 187 int samples, total_samples, total_bytes ;