[FFmpeg-cvslog] r11134 - trunk/libavcodec/dnxhdenc.c
bcoudurier
subversion
Sun Dec 2 20:28:20 CET 2007
Author: bcoudurier
Date: Sun Dec 2 20:28:20 2007
New Revision: 11134
Log:
indentation
Modified:
trunk/libavcodec/dnxhdenc.c
Modified: trunk/libavcodec/dnxhdenc.c
==============================================================================
--- trunk/libavcodec/dnxhdenc.c (original)
+++ trunk/libavcodec/dnxhdenc.c Sun Dec 2 20:28:20 2007
@@ -172,19 +172,19 @@ static int dnxhd_encode_init(AVCodecCont
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)
More information about the ffmpeg-cvslog
mailing list