cosmetics: indentation, prettyprinting

Originally committed as revision 15908 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-11-22 16:36:50 +00:00
parent 7f8205da4c
commit 76de302dd8

View File

@ -151,7 +151,8 @@ static void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp)
} }
#undef stride #undef stride
static void svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp, int dc) static void svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp,
int dc)
{ {
const int qmul = svq3_dequant_coeff[qp]; const int qmul = svq3_dequant_coeff[qp];
int i; int i;
@ -902,8 +903,7 @@ static int svq3_decode_frame(AVCodecContext *avctx,
if (avctx->debug&FF_DEBUG_PICT_INFO){ if (avctx->debug&FF_DEBUG_PICT_INFO){
av_log(h->s.avctx, AV_LOG_DEBUG, "%c hpel:%d, tpel:%d aqp:%d qp:%d, slice_num:%02X\n", av_log(h->s.avctx, AV_LOG_DEBUG, "%c hpel:%d, tpel:%d aqp:%d qp:%d, slice_num:%02X\n",
av_get_pict_type_char(s->pict_type), h->halfpel_flag, h->thirdpel_flag, av_get_pict_type_char(s->pict_type), h->halfpel_flag, h->thirdpel_flag,
s->adaptive_quant, s->qscale, h->slice_num s->adaptive_quant, s->qscale, h->slice_num);
);
} }
/* for hurry_up == 5 */ /* for hurry_up == 5 */