Browse Source

Cosmetics: Fix indentation.

Found by: Alexander Strasser
tags/n0.10
Carl Eugen Hoyos 14 years ago
parent
commit
19b945dc2a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/pnm.c

+ 2
- 2
libavcodec/pnm.c 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) {


Loading…
Cancel
Save