From 2548834b2248ad4d7da9bd0afed09d7d0cddeeb0 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 10 Apr 2013 16:13:50 +0200 Subject: [PATCH] vf_setpts: cosmetics, reformat --- libavfilter/vf_setpts.c | 12 ++++++------ 1 file 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; }