summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-04-10 16:13:50 +0200
committerAnton Khirnov <anton@khirnov.net>2013-04-30 11:17:23 +0200
commit2548834b2248ad4d7da9bd0afed09d7d0cddeeb0 (patch)
tree5a68e5835fee668973ea3a154d99652a4eabf7a4
parentc22263d3e813d442df8fa5f5ba8993573fe775d8 (diff)
vf_setpts: cosmetics, reformat
-rw-r--r--libavfilter/vf_setpts.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavfilter/vf_setpts.c b/libavfilter/vf_setpts.c
index 5cf9093709..bc26954eb6 100644
--- a/libavfilter/vf_setpts.c
+++ b/libavfilter/vf_setpts.c
@@ -85,13 +85,13 @@ static av_cold int init(AVFilterContext *ctx)
return ret;
}
- setpts->var_values[VAR_E ] = M_E;
- setpts->var_values[VAR_N ] = 0.0;
- setpts->var_values[VAR_PHI ] = M_PHI;
- setpts->var_values[VAR_PI ] = M_PI;
- setpts->var_values[VAR_PREV_INPTS ] = NAN;
+ setpts->var_values[VAR_E] = M_E;
+ setpts->var_values[VAR_N] = 0.0;
+ setpts->var_values[VAR_PHI] = M_PHI;
+ setpts->var_values[VAR_PI] = M_PI;
+ setpts->var_values[VAR_PREV_INPTS] = NAN;
setpts->var_values[VAR_PREV_OUTPTS] = NAN;
- setpts->var_values[VAR_STARTPTS ] = NAN;
+ setpts->var_values[VAR_STARTPTS] = NAN;
return 0;
}