comparison mpegvideo.c @ 880:1c32039e7215 libavcodec

aspect ratio cleanup
author michaelni
date Wed, 20 Nov 2002 13:08:04 +0000
parents 8cc0d241da37
children 34943cb0c2fb
comparison
equal deleted inserted replaced
879:af969e91f422 880:1c32039e7215
555 s->qmax= avctx->qmax; 555 s->qmax= avctx->qmax;
556 s->max_qdiff= avctx->max_qdiff; 556 s->max_qdiff= avctx->max_qdiff;
557 s->qcompress= avctx->qcompress; 557 s->qcompress= avctx->qcompress;
558 s->qblur= avctx->qblur; 558 s->qblur= avctx->qblur;
559 s->avctx = avctx; 559 s->avctx = avctx;
560 s->aspect_ratio_info= avctx->aspect_ratio_info;
561 if (avctx->aspect_ratio_info == FF_ASPECT_EXTENDED)
562 {
563 s->aspected_width = avctx->aspected_width;
564 s->aspected_height = avctx->aspected_height;
565 }
566 s->flags= avctx->flags; 560 s->flags= avctx->flags;
567 s->max_b_frames= avctx->max_b_frames; 561 s->max_b_frames= avctx->max_b_frames;
568 s->b_frame_strategy= avctx->b_frame_strategy; 562 s->b_frame_strategy= avctx->b_frame_strategy;
569 s->codec_id= avctx->codec->id; 563 s->codec_id= avctx->codec->id;
570 s->luma_elim_threshold = avctx->luma_elim_threshold; 564 s->luma_elim_threshold = avctx->luma_elim_threshold;