summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-08-04 00:25:35 +0200
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-08-04 19:09:57 +0200
commit82b1516a85ad21b5455dcfef6fe49d1189565c33 (patch)
tree63deef9ef04084ce0dee46be615e304126c95ea7 /libavfilter
parent9e63720b4b1241a9b17622b789c47cff6e180a4f (diff)
yadif: correct documentation on the parity parameter
0 is top-field-first, 1 is bottom-field-first, not the other way around. Fix trac issue #380.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_yadif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c
index 6fc9f479e7..13186e79ad 100644
--- a/libavfilter/vf_yadif.c
+++ b/libavfilter/vf_yadif.c
@@ -36,8 +36,8 @@ typedef struct {
int mode;
/**
- * 0: bottom field first
- * 1: top field first
+ * 0: top field first
+ * 1: bottom field first
* -1: auto-detection
*/
int parity;