comparison h263dec.c @ 1453:20a79b0e6d2a libavcodec

removed warnings
author bellard
date Tue, 09 Sep 2003 22:50:44 +0000
parents 3a6d613c88d8
children 460e5ead6722
comparison
equal deleted inserted replaced
1452:37dc515e3dac 1453:20a79b0e6d2a
388 int ff_h263_decode_frame(AVCodecContext *avctx, 388 int ff_h263_decode_frame(AVCodecContext *avctx,
389 void *data, int *data_size, 389 void *data, int *data_size,
390 uint8_t *buf, int buf_size) 390 uint8_t *buf, int buf_size)
391 { 391 {
392 MpegEncContext *s = avctx->priv_data; 392 MpegEncContext *s = avctx->priv_data;
393 int ret,i; 393 int ret;
394 AVFrame *pict = data; 394 AVFrame *pict = data;
395 float new_aspect; 395 float new_aspect;
396 396
397 #ifdef PRINT_FRAME_TIME 397 #ifdef PRINT_FRAME_TIME
398 uint64_t time= rdtsc(); 398 uint64_t time= rdtsc();