Commit dccd66e4 authored by michael's avatar michael

Fix encoding wmv1 with -mbd 1.

fixes issue262


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11327 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 71171eed
......@@ -1769,6 +1769,8 @@ static inline void copy_context_before_encode(MpegEncContext *d, MpegEncContext
d->mb_skipped= 0;
d->qscale= s->qscale;
d->dquant= s->dquant;
d->esc3_level_length= s->esc3_level_length;
}
static inline void copy_context_after_encode(MpegEncContext *d, MpegEncContext *s, int type){
......@@ -1806,6 +1808,8 @@ static inline void copy_context_after_encode(MpegEncContext *d, MpegEncContext *
d->block_last_index[i]= s->block_last_index[i];
d->interlaced_dct= s->interlaced_dct;
d->qscale= s->qscale;
d->esc3_level_length= s->esc3_level_length;
}
static inline void encode_mb_hq(MpegEncContext *s, MpegEncContext *backup, MpegEncContext *best, int type,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment