summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2016-06-24 01:06:12 +0300
committerMartin Storsjö <martin@martin.st>2016-06-24 22:30:46 +0300
commit31aa5335c390c83a6c3ea955b155067c36c4a2c4 (patch)
treead1c2a2930f5d42daba64110684d4a1a74b87102
parent4f98bb7b6d0323d9ecc3bebd6e24d46a3a374bad (diff)
libopenh264enc: Fix inconsistent whitespace
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r--libavcodec/libopenh264enc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/libopenh264enc.c b/libavcodec/libopenh264enc.c
index daab41fac9..01cb6fb960 100644
--- a/libavcodec/libopenh264enc.c
+++ b/libavcodec/libopenh264enc.c
@@ -184,8 +184,10 @@ FF_ENABLE_DEPRECATION_WARNINGS
param.sSpatialLayers[0].iSpatialBitrate = param.iTargetBitrate;
param.sSpatialLayers[0].iMaxSpatialBitrate = param.iMaxBitrate;
- if ((avctx->slices > 1) && (s->max_nal_size)){
- av_log(avctx,AV_LOG_ERROR,"Invalid combination -slices %d and -max_nal_size %d.\n",avctx->slices,s->max_nal_size);
+ if ((avctx->slices > 1) && (s->max_nal_size)) {
+ av_log(avctx, AV_LOG_ERROR,
+ "Invalid combination -slices %d and -max_nal_size %d.\n",
+ avctx->slices, s->max_nal_size);
goto fail;
}