summaryrefslogtreecommitdiff
path: root/libavcodec/frwu.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-11-22 05:15:57 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-11-22 05:21:38 +0100
commit91743fb7305a0212655e4841c20d8cd0cbc1be99 (patch)
tree0b1522261a146159b8b0fedf27423c39728d6ace /libavcodec/frwu.c
parent305a935968e2b7d917e2fd273c50a5713dfd7104 (diff)
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>
Diffstat (limited to 'libavcodec/frwu.c')
-rw-r--r--libavcodec/frwu.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/frwu.c b/libavcodec/frwu.c
index 90ffc79a0c..c70013b622 100644
--- a/libavcodec/frwu.c
+++ b/libavcodec/frwu.c
@@ -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;