1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-22 04:04:14 +02:00

Cosmetics: Fix indentation.

Found by: Alexander Strasser
This commit is contained in:
Carl Eugen Hoyos 2012-01-07 19:23:21 +01:00
parent ee884c3023
commit 19b945dc2a

View File

@ -113,9 +113,9 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
if (depth == 1) {
if (maxval == 1) {
avctx->pix_fmt = PIX_FMT_MONOWHITE;
} else if (maxval == 255) {
} else if (maxval == 255) {
avctx->pix_fmt = PIX_FMT_GRAY8;
} else {
} else {
avctx->pix_fmt = PIX_FMT_GRAY16BE;
}
} else if (depth == 3) {