comparison rv10.c @ 559:468d4800dbf1 libavcodec

dr1
author michaelni
date Tue, 16 Jul 2002 01:24:02 +0000
parents 762c67fd4078
children 980b661a494a
comparison
equal deleted inserted replaced
558:5690779adf16 559:468d4800dbf1
343 s->width = avctx->width; 343 s->width = avctx->width;
344 s->height = avctx->height; 344 s->height = avctx->height;
345 345
346 s->h263_rv10 = 1; 346 s->h263_rv10 = 1;
347 s->rv10_version = avctx->sub_id; 347 s->rv10_version = avctx->sub_id;
348
349 s->flags= avctx->flags;
348 350
349 if (MPV_common_init(s) < 0) 351 if (MPV_common_init(s) < 0)
350 return -1; 352 return -1;
351 353
352 h263_decode_init_vlc(s); 354 h263_decode_init_vlc(s);
505 sizeof(MpegEncContext), 507 sizeof(MpegEncContext),
506 rv10_decode_init, 508 rv10_decode_init,
507 NULL, 509 NULL,
508 rv10_decode_end, 510 rv10_decode_end,
509 rv10_decode_frame, 511 rv10_decode_frame,
512 CODEC_CAP_DR1
510 }; 513 };