comparison svq1.c @ 1064:b32afefe7d33 libavcodec

* UINTX -> uintx_t INTX -> intx_t
author kabi
date Tue, 11 Feb 2003 16:35:48 +0000
parents 6fadc19937b9
children 1e39f273ecd6
comparison
equal deleted inserted replaced
1063:fdeac9642346 1064:b32afefe7d33
1081 return 0; 1081 return 0;
1082 } 1082 }
1083 1083
1084 static int svq1_decode_frame(AVCodecContext *avctx, 1084 static int svq1_decode_frame(AVCodecContext *avctx,
1085 void *data, int *data_size, 1085 void *data, int *data_size,
1086 UINT8 *buf, int buf_size) 1086 uint8_t *buf, int buf_size)
1087 { 1087 {
1088 MpegEncContext *s=avctx->priv_data; 1088 MpegEncContext *s=avctx->priv_data;
1089 uint8_t *current, *previous; 1089 uint8_t *current, *previous;
1090 int result, i, x, y, width, height; 1090 int result, i, x, y, width, height;
1091 AVFrame *pict = data; 1091 AVFrame *pict = data;