Browse Source

indentation

Originally committed as revision 11134 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 17 years ago
parent
commit
c20d3ce255
1 changed files with 13 additions and 13 deletions
  1. +13
    -13
      libavcodec/dnxhdenc.c

+ 13
- 13
libavcodec/dnxhdenc.c View File

@@ -172,19 +172,19 @@ static int dnxhd_encode_init(AVCodecContext *avctx)
int i, index;

if (avctx->width == 1920 && avctx->height == 1080) {
if (avctx->flags & CODEC_FLAG_INTERLACED_DCT) {
if (avctx->bit_rate == 120000000)
ctx->cid = 1242;
else if (avctx->bit_rate == 185000000)
ctx->cid = 1243;
} else {
if (avctx->bit_rate == 120000000)
ctx->cid = 1237;
else if (avctx->bit_rate == 185000000)
ctx->cid = 1238;
else if (avctx->bit_rate == 36000000)
ctx->cid = 1253;
}
if (avctx->flags & CODEC_FLAG_INTERLACED_DCT) {
if (avctx->bit_rate == 120000000)
ctx->cid = 1242;
else if (avctx->bit_rate == 185000000)
ctx->cid = 1243;
} else {
if (avctx->bit_rate == 120000000)
ctx->cid = 1237;
else if (avctx->bit_rate == 185000000)
ctx->cid = 1238;
else if (avctx->bit_rate == 36000000)
ctx->cid = 1253;
}
} else if (avctx->width == 1280 && avctx->height == 720 &&
!(avctx->flags & CODEC_FLAG_INTERLACED_DCT)) {
if (avctx->bit_rate == 90000000)


Loading…
Cancel
Save