mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-13 18:55:08 +00:00
frwu: do not set interlacing flags.
Our fate frwu sample is definitely not interlaced. If someone has a interlaced frwu file, please contact us. Without this change the field order patch would cause incorrect interlacing information to be written when using frwu input. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
305a935968
commit
91743fb730
@ -66,8 +66,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
|
|||||||
|
|
||||||
pic->pict_type = AV_PICTURE_TYPE_I;
|
pic->pict_type = AV_PICTURE_TYPE_I;
|
||||||
pic->key_frame = 1;
|
pic->key_frame = 1;
|
||||||
pic->interlaced_frame = 1;
|
|
||||||
pic->top_field_first = 1;
|
|
||||||
|
|
||||||
for (field = 0; field < 2; field++) {
|
for (field = 0; field < 2; field++) {
|
||||||
int i;
|
int i;
|
||||||
|
Loading…
Reference in New Issue
Block a user