summaryrefslogtreecommitdiff
path: root/libavcodec/pnm.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-11-04 23:35:09 +0000
committerPaul B Mahol <onemda@gmail.com>2012-11-04 23:35:09 +0000
commitcc5bcaa48e6af34c8ffd0d2d014f741d738d66d0 (patch)
treec491246ee9cdda488cae85ef7819f2e08718a982 /libavcodec/pnm.c
parentae5ecb8e60ad888f94a0792c681dca8916c127bf (diff)
pnm: cosmetics: reindent
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/pnm.c')
-rw-r--r--libavcodec/pnm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pnm.c b/libavcodec/pnm.c
index 91efbe40d6..13ecbb057f 100644
--- a/libavcodec/pnm.c
+++ b/libavcodec/pnm.c
@@ -126,7 +126,7 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
avctx->pix_fmt = AV_PIX_FMT_GRAY8A;
} else if (depth == 3) {
if (maxval < 256) {
- avctx->pix_fmt = AV_PIX_FMT_RGB24;
+ avctx->pix_fmt = AV_PIX_FMT_RGB24;
} else {
avctx->pix_fmt = AV_PIX_FMT_RGB48BE;
}