comparison cscd.c @ 12479:ca1896830b44 libavcodec

Fix indentation.
author reimar
date Thu, 09 Sep 2010 20:23:41 +0000
parents 8a4984c5cacc
children 8cafb4db28cb
comparison
equal deleted inserted replaced
12478:5942c42c44e5 12479:ca1896830b44
222 case 32: avctx->pix_fmt = PIX_FMT_RGB32; break; 222 case 32: avctx->pix_fmt = PIX_FMT_RGB32; break;
223 default: 223 default:
224 av_log(avctx, AV_LOG_ERROR, 224 av_log(avctx, AV_LOG_ERROR,
225 "CamStudio codec error: invalid depth %i bpp\n", 225 "CamStudio codec error: invalid depth %i bpp\n",
226 avctx->bits_per_coded_sample); 226 avctx->bits_per_coded_sample);
227 return 1; 227 return 1;
228 } 228 }
229 c->bpp = avctx->bits_per_coded_sample; 229 c->bpp = avctx->bits_per_coded_sample;
230 c->pic.data[0] = NULL; 230 c->pic.data[0] = NULL;
231 c->linelen = avctx->width * avctx->bits_per_coded_sample / 8; 231 c->linelen = avctx->width * avctx->bits_per_coded_sample / 8;
232 c->height = avctx->height; 232 c->height = avctx->height;