Skip to content
Snippets Groups Projects
Commit fb8a9e2f authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

fixing interlaced dct + hq mode

Originally committed as revision 1048 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8ecc6a46
No related branches found
No related tags found
No related merge requests found
...@@ -2428,6 +2428,7 @@ static inline void copy_context_after_encode(MpegEncContext *d, MpegEncContext * ...@@ -2428,6 +2428,7 @@ static inline void copy_context_after_encode(MpegEncContext *d, MpegEncContext *
d->block= s->block; d->block= s->block;
for(i=0; i<6; i++) for(i=0; i<6; i++)
d->block_last_index[i]= s->block_last_index[i]; d->block_last_index[i]= s->block_last_index[i];
d->interlaced_dct= s->interlaced_dct;
} }
static inline void encode_mb_hq(MpegEncContext *s, MpegEncContext *backup, MpegEncContext *best, int type, static inline void encode_mb_hq(MpegEncContext *s, MpegEncContext *backup, MpegEncContext *best, int type,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment