comparison mpegvideo.c @ 9426:638187aad3aa libavcodec

fix indentation
author bcoudurier
date Mon, 13 Apr 2009 03:35:32 +0000
parents fc417197fe11
children 0d6c8c99382e
comparison
equal deleted inserted replaced
9425:1ff6eb1d7d14 9426:638187aad3aa
445 int y_size, c_size, yc_size, i, mb_array_size, mv_table_size, x, y, threads; 445 int y_size, c_size, yc_size, i, mb_array_size, mv_table_size, x, y, threads;
446 446
447 if(s->codec_id == CODEC_ID_MPEG2VIDEO && !s->progressive_sequence) 447 if(s->codec_id == CODEC_ID_MPEG2VIDEO && !s->progressive_sequence)
448 s->mb_height = (s->height + 31) / 32 * 2; 448 s->mb_height = (s->height + 31) / 32 * 2;
449 else 449 else
450 s->mb_height = (s->height + 15) / 16; 450 s->mb_height = (s->height + 15) / 16;
451 451
452 if(s->avctx->pix_fmt == PIX_FMT_NONE){ 452 if(s->avctx->pix_fmt == PIX_FMT_NONE){
453 av_log(s->avctx, AV_LOG_ERROR, "decoding to PIX_FMT_NONE is not supported.\n"); 453 av_log(s->avctx, AV_LOG_ERROR, "decoding to PIX_FMT_NONE is not supported.\n");
454 return -1; 454 return -1;
455 } 455 }