summaryrefslogtreecommitdiff
path: root/libavcodec/libopenjpeg.c
diff options
context:
space:
mode:
authorJai Menon <jmenon86@gmail.com>2009-11-10 14:37:42 +0000
committerJai Menon <jmenon86@gmail.com>2009-11-10 14:37:42 +0000
commitb70b158833707d8f6f7b7aa5a5d9863c300ca932 (patch)
tree5ca70cfacb890c17e2fabe9387b54f049b5f50fd /libavcodec/libopenjpeg.c
parent7fc58b1eeb5980120a44329c8a553085fe71d98a (diff)
cosmetics : fix indentation.
Originally committed as revision 20499 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libopenjpeg.c')
-rw-r--r--libavcodec/libopenjpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libopenjpeg.c b/libavcodec/libopenjpeg.c
index 7cf20af809..3a3a127327 100644
--- a/libavcodec/libopenjpeg.c
+++ b/libavcodec/libopenjpeg.c
@@ -78,9 +78,9 @@ static int libopenjpeg_decode_frame(AVCodecContext *avctx,
if((AV_RB32(buf) == 12) &&
(AV_RB32(buf + 4) == JP2_SIG_TYPE) &&
(AV_RB32(buf + 8) == JP2_SIG_VALUE)) {
- dec = opj_create_decompress(CODEC_JP2);
+ dec = opj_create_decompress(CODEC_JP2);
} else {
- dec = opj_create_decompress(CODEC_J2K);
+ dec = opj_create_decompress(CODEC_J2K);
}
if(!dec) {