comparison eatgv.c @ 12462:ffb3668ff7af libavcodec

Use new imgutils.h API names, fix deprecation warnings.
author stefano
date Tue, 07 Sep 2010 19:15:29 +0000
parents 914f484bb476
children
comparison
equal deleted inserted replaced
12461:25174028da0a 12462:ffb3668ff7af
274 s->palette[i] = AV_RB24(buf); 274 s->palette[i] = AV_RB24(buf);
275 buf += 3; 275 buf += 3;
276 } 276 }
277 } 277 }
278 278
279 if (av_check_image_size(s->width, s->height, 0, avctx)) 279 if (av_image_check_size(s->width, s->height, 0, avctx))
280 return -1; 280 return -1;
281 281
282 /* shuffle */ 282 /* shuffle */
283 FFSWAP(AVFrame, s->frame, s->last_frame); 283 FFSWAP(AVFrame, s->frame, s->last_frame);
284 if (!s->frame.data[0]) { 284 if (!s->frame.data[0]) {