Commit 19b945dc authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Cosmetics: Fix indentation.

Found by: Alexander Strasser
parent ee884c30
...@@ -113,9 +113,9 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s) ...@@ -113,9 +113,9 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
if (depth == 1) { if (depth == 1) {
if (maxval == 1) { if (maxval == 1) {
avctx->pix_fmt = PIX_FMT_MONOWHITE; avctx->pix_fmt = PIX_FMT_MONOWHITE;
} else if (maxval == 255) { } else if (maxval == 255) {
avctx->pix_fmt = PIX_FMT_GRAY8; avctx->pix_fmt = PIX_FMT_GRAY8;
} else { } else {
avctx->pix_fmt = PIX_FMT_GRAY16BE; avctx->pix_fmt = PIX_FMT_GRAY16BE;
} }
} else if (depth == 3) { } else if (depth == 3) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment