diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2011-09-25 22:38:32 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-09-25 22:47:51 +0200 |
commit | 9921613e8287442839546d6e2f9e58204cd324ce (patch) | |
tree | ca2d2d81dc587dd93d0cb5d9cf2c5e867f5e9dcf | |
parent | 80daa247d8b67a735848eceb86b354ceab2af6c0 (diff) | |
download | ffmpeg-9921613e8287442839546d6e2f9e58204cd324ce.tar.gz |
vf_drawtext: apply misc style fixes
-rw-r--r-- | libavfilter/vf_drawtext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c index 8dda2d9042..156dbbd961 100644 --- a/libavfilter/vf_drawtext.c +++ b/libavfilter/vf_drawtext.c @@ -487,11 +487,11 @@ static int command(AVFilterContext *ctx, const char *cmd, const char *arg, char { DrawTextContext *dtext = ctx->priv; - if(!strcmp(cmd, "reinit")){ + if (!strcmp(cmd, "reinit")) { int ret; uninit(ctx); dtext->reinit = 1; - if((ret=init(ctx, arg, NULL)) < 0) + if ((ret = init(ctx, arg, NULL)) < 0) return ret; return config_input(ctx->inputs[0]); } |