Mercurial > libavcodec.hg
comparison vmnc.c @ 4740:59f4fb490fa7 libavcodec
Remove redundant assign
author | kostya |
---|---|
date | Tue, 27 Mar 2007 05:23:07 +0000 |
parents | 05e932ddaaa9 |
children | b3ee9a1526b0 |
comparison
equal
deleted
inserted
replaced
4739:9b4c5d2fb8ce | 4740:59f4fb490fa7 |
---|---|
461 static int decode_init(AVCodecContext *avctx) | 461 static int decode_init(AVCodecContext *avctx) |
462 { | 462 { |
463 VmncContext * const c = (VmncContext *)avctx->priv_data; | 463 VmncContext * const c = (VmncContext *)avctx->priv_data; |
464 | 464 |
465 c->avctx = avctx; | 465 c->avctx = avctx; |
466 avctx->has_b_frames = 0; | |
467 | 466 |
468 c->pic.data[0] = NULL; | 467 c->pic.data[0] = NULL; |
469 c->width = avctx->width; | 468 c->width = avctx->width; |
470 c->height = avctx->height; | 469 c->height = avctx->height; |
471 | 470 |