You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-06 08:29:25 +02:00
mpegvideo_parser: Set field_order.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
committed by
Anton Khirnov
parent
507b1e454c
commit
f43c14d046
@@ -114,6 +114,14 @@ static void mpegvideo_extract_headers(AVCodecParserContext *s,
|
|||||||
s->repeat_pict = 2;
|
s->repeat_pict = 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!pc->progressive_sequence) {
|
||||||
|
if (top_field_first)
|
||||||
|
s->field_order = AV_FIELD_TT;
|
||||||
|
else
|
||||||
|
s->field_order = AV_FIELD_BB;
|
||||||
|
} else
|
||||||
|
s->field_order = AV_FIELD_PROGRESSIVE;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user