mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 22:10:34 +00:00
vc1dec: fix current ptr selection in vc1_mc_4mv_chroma()
No sample tried shows a difference Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
236b0c4084
commit
c5669f3c59
@ -849,7 +849,7 @@ static void vc1_mc_4mv_chroma(VC1Context *v, int dir)
|
||||
}
|
||||
|
||||
if (!dir) {
|
||||
if (v->field_mode && (v->cur_field_type != chroma_ref_type) && v->cur_field_type) {
|
||||
if (v->field_mode && (v->cur_field_type != chroma_ref_type) && v->second_field) {
|
||||
srcU = s->current_picture.f.data[1];
|
||||
srcV = s->current_picture.f.data[2];
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user