Commit 7c73e605 authored by bcoudurier's avatar bcoudurier

indentation

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11134 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d6c34b7e
...@@ -172,19 +172,19 @@ static int dnxhd_encode_init(AVCodecContext *avctx) ...@@ -172,19 +172,19 @@ static int dnxhd_encode_init(AVCodecContext *avctx)
int i, index; int i, index;
if (avctx->width == 1920 && avctx->height == 1080) { if (avctx->width == 1920 && avctx->height == 1080) {
if (avctx->flags & CODEC_FLAG_INTERLACED_DCT) { if (avctx->flags & CODEC_FLAG_INTERLACED_DCT) {
if (avctx->bit_rate == 120000000) if (avctx->bit_rate == 120000000)
ctx->cid = 1242; ctx->cid = 1242;
else if (avctx->bit_rate == 185000000) else if (avctx->bit_rate == 185000000)
ctx->cid = 1243; ctx->cid = 1243;
} else { } else {
if (avctx->bit_rate == 120000000) if (avctx->bit_rate == 120000000)
ctx->cid = 1237; ctx->cid = 1237;
else if (avctx->bit_rate == 185000000) else if (avctx->bit_rate == 185000000)
ctx->cid = 1238; ctx->cid = 1238;
else if (avctx->bit_rate == 36000000) else if (avctx->bit_rate == 36000000)
ctx->cid = 1253; ctx->cid = 1253;
} }
} else if (avctx->width == 1280 && avctx->height == 720 && } else if (avctx->width == 1280 && avctx->height == 720 &&
!(avctx->flags & CODEC_FLAG_INTERLACED_DCT)) { !(avctx->flags & CODEC_FLAG_INTERLACED_DCT)) {
if (avctx->bit_rate == 90000000) if (avctx->bit_rate == 90000000)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment