Commit 91743fb7 authored by Michael Niedermayer's avatar Michael Niedermayer

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: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 305a9359
......@@ -66,8 +66,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
pic->pict_type = AV_PICTURE_TYPE_I;
pic->key_frame = 1;
pic->interlaced_frame = 1;
pic->top_field_first = 1;
for (field = 0; field < 2; field++) {
int i;
......
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