aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llimagej2coj/llimagej2coj.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:11 -0500
committerJacek Antonelli2008-08-15 23:45:11 -0500
commit215f423cbe18fe9ca14a26caef918d303bad28ff (patch)
tree0743442b286216cc8e19aa487c26f4e9345ffd64 /linden/indra/llimagej2coj/llimagej2coj.cpp
parentSecond Life viewer sources 1.18.3.5-RC (diff)
downloadmeta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.zip
meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.gz
meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.bz2
meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.xz
Second Life viewer sources 1.18.4.0-RC
Diffstat (limited to 'linden/indra/llimagej2coj/llimagej2coj.cpp')
-rw-r--r--linden/indra/llimagej2coj/llimagej2coj.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/linden/indra/llimagej2coj/llimagej2coj.cpp b/linden/indra/llimagej2coj/llimagej2coj.cpp
index be6a087..7a323c8 100644
--- a/linden/indra/llimagej2coj/llimagej2coj.cpp
+++ b/linden/indra/llimagej2coj/llimagej2coj.cpp
@@ -2,6 +2,8 @@
2 * @file llimagej2coj.cpp 2 * @file llimagej2coj.cpp
3 * @brief This is an implementation of JPEG2000 encode/decode using OpenJPEG. 3 * @brief This is an implementation of JPEG2000 encode/decode using OpenJPEG.
4 * 4 *
5 * $LicenseInfo:firstyear=2006&license=viewergpl$
6 *
5 * Copyright (c) 2006-2007, Linden Research, Inc. 7 * Copyright (c) 2006-2007, Linden Research, Inc.
6 * 8 *
7 * Second Life Viewer Source Code 9 * Second Life Viewer Source Code
@@ -24,18 +26,24 @@
24 * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO 26 * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
25 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, 27 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
26 * COMPLETENESS OR PERFORMANCE. 28 * COMPLETENESS OR PERFORMANCE.
29 * $/LicenseInfo$
27 */ 30 */
28 31
29#include "linden_common.h" 32#include "linden_common.h"
30#include "llimagej2coj.h" 33#include "llimagej2coj.h"
31 34
32// this is defined so that we get static linking. 35// this is defined so that we get static linking.
33#define OPJ_STATIC
34#include "openjpeg/openjpeg.h" 36#include "openjpeg/openjpeg.h"
35 37
36#include "lltimer.h" 38#include "lltimer.h"
37#include "llmemory.h" 39#include "llmemory.h"
38 40
41const char* fallbackEngineInfoLLImageJ2CImpl()
42{
43 return (std::string("OpenJPEG: " OPENJPEG_VERSION ", Runtime: ")
44 + opj_version()).c_str();
45}
46
39LLImageJ2CImpl* fallbackCreateLLImageJ2CImpl() 47LLImageJ2CImpl* fallbackCreateLLImageJ2CImpl()
40{ 48{
41 return new LLImageJ2COJ(); 49 return new LLImageJ2COJ();