OpenJPH
Open-source implementation of JPEG2000 Part-15
|
Namespaces | |
namespace | local |
namespace | net |
namespace | stex |
namespace | thds |
Classes | |
class | argument |
class | cli_interpreter |
struct | coded_lists |
class | codestream |
The object represent a codestream. More... | |
class | comment_exchange |
class | dpx_in |
class | image_in_base |
class | image_out_base |
class | infile_base |
class | j2c_infile |
class | j2c_outfile |
struct | lifting_buf |
class | line_buf |
class | mem_elastic_allocator |
class | mem_fixed_allocator |
class | mem_infile |
class | mem_outfile |
mem_outfile stores encoded j2k codestreams in memory More... | |
class | message_base |
This is the base class from which all messaging levels are derived. More... | |
class | message_error |
Derived from message_base to handle error messages. More... | |
class | message_info |
Derived from message_base to handle info messages. More... | |
class | message_warning |
Derived from message_base to handle warning messages. More... | |
class | outfile_base |
class | param_cod |
class | param_nlt |
non-linearity point transformation object (implements NLT marker segment) More... | |
class | param_qcd |
class | param_siz |
class | pfm_in |
class | pfm_out |
struct | point |
class | ppm_in |
class | ppm_out |
class | raw_in |
class | raw_out |
struct | rect |
struct | size |
class | yuv_in |
class | yuv_out |
Typedefs | |
typedef void(* | conversion_fun) (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
typedef uint8_t | ui8 |
typedef int8_t | si8 |
typedef uint16_t | ui16 |
typedef int16_t | si16 |
typedef uint32_t | ui32 |
typedef int32_t | si32 |
typedef uint64_t | ui64 |
typedef int64_t | si64 |
Functions | |
void | gen_cvrt_32b1c_to_8ub1c (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | gen_cvrt_32b3c_to_8ub3c (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | gen_cvrt_32b1c_to_16ub1c_le (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | gen_cvrt_32b3c_to_16ub3c_le (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | gen_cvrt_32b1c_to_16ub1c_be (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | gen_cvrt_32b3c_to_16ub3c_be (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | sse41_cvrt_32b1c_to_8ub1c (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | sse41_cvrt_32b3c_to_8ub3c (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | sse41_cvrt_32b1c_to_16ub1c_le (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | sse41_cvrt_32b3c_to_16ub3c_le (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | sse41_cvrt_32b1c_to_16ub1c_be (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | sse41_cvrt_32b3c_to_16ub3c_be (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | avx2_cvrt_32b1c_to_8ub1c (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | avx2_cvrt_32b3c_to_8ub3c (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | avx2_cvrt_32b1c_to_16ub1c_le (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
void | avx2_cvrt_32b1c_to_16ub1c_be (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
static ui16 | be2le (const ui16 v) |
static ui32 | be2le (const ui32 t) |
static void | eat_white_spaces (FILE *fh) |
static ui16 | be2le (const ui16 v) |
static ui16 | be2le (const ui16 v) |
OJPH_EXPORT int | get_cpu_ext_level () |
static ui32 | population_count (ui32 val) |
static ui32 | population_count64 (ui64 val) |
static ui32 | count_leading_zeros (ui32 val) |
static ui32 | count_leading_zeros (ui64 val) |
static ui32 | count_trailing_zeros (ui32 val) |
static si32 | ojph_round (float val) |
static si32 | ojph_trunc (float val) |
template<typename T , ui32 N> | |
size_t | calc_aligned_size (size_t size) |
template<typename T , ui32 N> | |
T * | align_ptr (T *ptr) |
int | ojph_fseek (FILE *stream, si64 offset, int origin) |
si64 | ojph_ftell (FILE *stream) |
OJPH_EXPORT void | set_info_stream (FILE *s) |
Replaces the info output file from the default stdout to user defined output file. | |
OJPH_EXPORT void | configure_info (message_info *info) |
This overrides the default behaviour of handling info messages. | |
OJPH_EXPORT message_info * | get_info () |
Get the info message object, whose operator() member class is called for info messages – See the macros below. | |
OJPH_EXPORT void | set_warning_stream (FILE *s) |
Replaces the warning output file from the default stdout to user defined output file. | |
OJPH_EXPORT void | configure_warning (message_warning *warn) |
This overrides the default behaviour of handling warning messages. | |
OJPH_EXPORT message_warning * | get_warning () |
Get the warning message object, whose operator() member class is called for warning messages – See the macros below. | |
OJPH_EXPORT void | set_error_stream (FILE *s) |
Replaces the error output file from the default stderr to user defined output file. | |
OJPH_EXPORT void | configure_error (message_error *error) |
This overrides the default behaviour of handling error messages. | |
OJPH_EXPORT message_error * | get_error () |
Get the error message object, whose operator() member class is called for error messages – See the macros below. | |
OJPH_EXPORT void | set_message_level (OJPH_MSG_LEVEL level) |
Sets the minimum severity of the message to be reported. | |
bool | init_cpu_ext_level (int &level) |
typedef void(* ojph::conversion_fun) (const line_buf *ln0, const line_buf *ln1, const line_buf *ln2, void *dp, ui32 bit_depth, ui32 count) |
Definition at line 513 of file ojph_img_io.h.
typedef int16_t ojph::si16 |
Definition at line 53 of file ojph_defs.h.
typedef int32_t ojph::si32 |
Definition at line 55 of file ojph_defs.h.
typedef int64_t ojph::si64 |
Definition at line 57 of file ojph_defs.h.
typedef int8_t ojph::si8 |
Definition at line 51 of file ojph_defs.h.
typedef uint16_t ojph::ui16 |
Definition at line 52 of file ojph_defs.h.
typedef uint32_t ojph::ui32 |
Definition at line 54 of file ojph_defs.h.
typedef uint64_t ojph::ui64 |
Definition at line 56 of file ojph_defs.h.
typedef uint8_t ojph::ui8 |
Definition at line 50 of file ojph_defs.h.
anonymous enum : int |
Enumerator | |
---|---|
ARM_CPU_EXT_LEVEL_GENERIC | |
ARM_CPU_EXT_LEVEL_NEON | |
ARM_CPU_EXT_LEVEL_ASIMD | |
ARM_CPU_EXT_LEVEL_SVE | |
ARM_CPU_EXT_LEVEL_SVE2 |
Definition at line 143 of file ojph_arch.h.
anonymous enum : int |
Definition at line 128 of file ojph_arch.h.
enum ojph::OJPH_MSG_LEVEL : int |
This enum is use to specify the level of severity of message while processing markers.
Enumerator | |
---|---|
ALL_MSG | |
INFO | |
WARN | |
ERROR | |
NO_MSG |
Definition at line 52 of file ojph_message.h.
enum ojph::OJPH_PROFILE_NUM : si32 |
Enumerator | |
---|---|
OJPH_PN_UNDEFINED | |
OJPH_PN_PROFILE0 | |
OJPH_PN_PROFILE1 | |
OJPH_PN_CINEMA2K | |
OJPH_PN_CINEMA4K | |
OJPH_PN_CINEMAS2K | |
OJPH_PN_CINEMAS4K | |
OJPH_PN_BROADCAST | |
OJPH_PN_IMF |
Definition at line 74 of file ojph_params_local.h.
Enumerator | |
---|---|
OJPH_TILEPART_NO_DIVISIONS | |
OJPH_TILEPART_RESOLUTIONS | |
OJPH_TILEPART_COMPONENTS | |
OJPH_TILEPART_LAYERS |
Definition at line 98 of file ojph_params_local.h.
enum ojph::PROGRESSION_ORDER : si32 |
Enumerator | |
---|---|
OJPH_PO_LRCP | |
OJPH_PO_RLCP | |
OJPH_PO_RPCL | |
OJPH_PO_PCRL | |
OJPH_PO_CPRL |
Definition at line 57 of file ojph_params_local.h.
|
inline |
Definition at line 316 of file ojph_arch.h.
References count_leading_zeros().
void ojph::avx2_cvrt_32b1c_to_16ub1c_be | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 305 of file ojph_img_io_avx2.cpp.
References be2le(), ojph::line_buf::i32, and ojph_unused.
Referenced by ojph::ppm_out::configure().
void ojph::avx2_cvrt_32b1c_to_16ub1c_le | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 261 of file ojph_img_io_avx2.cpp.
References ojph::line_buf::i32, and ojph_unused.
void ojph::avx2_cvrt_32b1c_to_8ub1c | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 58 of file ojph_img_io_avx2.cpp.
References ojph::line_buf::i32, and ojph_unused.
Referenced by ojph::ppm_out::configure().
void ojph::avx2_cvrt_32b3c_to_8ub3c | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 116 of file ojph_img_io_avx2.cpp.
References ojph::line_buf::i32.
Referenced by ojph::ppm_out::configure().
Definition at line 55 of file ojph_img_io.cpp.
Referenced by avx2_cvrt_32b1c_to_16ub1c_be(), be2le(), gen_cvrt_32b1c_to_16ub1c_be(), gen_cvrt_32b3c_to_16ub3c_be(), ojph::dpx_in::open(), ojph::ppm_in::read(), ojph::dpx_in::read(), ojph::pfm_in::read(), sse41_cvrt_32b1c_to_16ub1c_be(), sse41_cvrt_32b3c_to_16ub3c_be(), and sse41_cvrt_32b3c_to_16ub3c_le().
Definition at line 52 of file ojph_img_io_avx2.cpp.
Definition at line 52 of file ojph_img_io_sse41.cpp.
Definition at line 62 of file ojph_img_io.cpp.
References be2le().
size_t ojph::calc_aligned_size | ( | size_t | size | ) |
Definition at line 306 of file ojph_arch.h.
References count_leading_zeros().
void ojph::configure_error | ( | message_error * | error | ) |
This overrides the default behaviour of handling error messages.
error | An object derived from message_error to implement the desired behaviour. Remember, remember to throw an exception at the end. |
Definition at line 138 of file ojph_message.cpp.
References error, and local_error.
void ojph::configure_info | ( | message_info * | info | ) |
This overrides the default behaviour of handling info messages.
info | An object derived from message_info to implement the desired behaviour. |
Definition at line 56 of file ojph_message.cpp.
References info, and local_info.
void ojph::configure_warning | ( | message_warning * | warn | ) |
This overrides the default behaviour of handling warning messages.
warn | An object derived from message_warning to implement the desired behaviour. |
Definition at line 97 of file ojph_message.cpp.
References local_warn, and warn.
Definition at line 199 of file ojph_arch.h.
References population_count().
Referenced by align_ptr(), calc_aligned_size(), ojph::local::frwd_read(), ojph::local::frwd_read(), ojph::local::frwd_read(), ojph::local::log2ceil(), ojph::local::ojph_decode_codeblock32(), ojph::local::ojph_decode_codeblock64(), ojph::local::ojph_encode_codeblock32(), ojph::local::ojph_encode_codeblock64(), ojph::ppm_in::open(), ojph::local::precinct::prepare_precinct(), ojph::param_cod::set_block_dims(), and ojph::param_cod::set_precinct_size().
Definition at line 221 of file ojph_arch.h.
References population_count64().
Definition at line 244 of file ojph_arch.h.
References population_count().
|
static |
Definition at line 72 of file ojph_img_io.cpp.
Referenced by ojph::ppm_in::open(), and ojph::pfm_in::open().
void ojph::gen_cvrt_32b1c_to_16ub1c_be | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 190 of file ojph_img_io.cpp.
References be2le(), ojph::line_buf::i32, and ojph_unused.
Referenced by ojph::ppm_out::configure().
void ojph::gen_cvrt_32b1c_to_16ub1c_le | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 145 of file ojph_img_io.cpp.
References ojph::line_buf::i32, and ojph_unused.
void ojph::gen_cvrt_32b1c_to_8ub1c | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 99 of file ojph_img_io.cpp.
References ojph::line_buf::i32, and ojph_unused.
Referenced by ojph::ppm_out::configure().
void ojph::gen_cvrt_32b3c_to_16ub3c_be | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 208 of file ojph_img_io.cpp.
References be2le(), and ojph::line_buf::i32.
Referenced by ojph::ppm_out::configure().
void ojph::gen_cvrt_32b3c_to_16ub3c_le | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 163 of file ojph_img_io.cpp.
References ojph::line_buf::i32.
void ojph::gen_cvrt_32b3c_to_8ub3c | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 118 of file ojph_img_io.cpp.
References ojph::line_buf::i32.
Referenced by ojph::ppm_out::configure().
int ojph::get_cpu_ext_level | ( | ) |
Definition at line 244 of file ojph_arch.cpp.
References cpu_level, and cpu_level_initialized.
Referenced by ojph::ppm_out::configure(), ojph::local::codeblock_fun::init(), ojph::local::init_colour_transform_functions(), and ojph::local::init_wavelet_transform_functions().
message_error * ojph::get_error | ( | ) |
Get the error message object, whose operator() member class is called for error messages – See the macros below.
Definition at line 144 of file ojph_message.cpp.
References local_error.
message_info * ojph::get_info | ( | ) |
Get the info message object, whose operator() member class is called for info messages – See the macros below.
Definition at line 62 of file ojph_message.cpp.
References local_info.
message_warning * ojph::get_warning | ( | ) |
Get the warning message object, whose operator() member class is called for warning messages – See the macros below.
Definition at line 103 of file ojph_message.cpp.
References local_warn.
bool ojph::init_cpu_ext_level | ( | int & | level | ) |
Definition at line 214 of file ojph_arch.cpp.
|
inline |
Definition at line 61 of file ojph_file.h.
Referenced by ojph::ppm_in::read(), ojph::pfm_in::read(), ojph::j2c_infile::seek(), and ojph::pfm_out::write().
|
inline |
Definition at line 66 of file ojph_file.h.
Referenced by ojph::pfm_out::open(), ojph::ppm_in::open(), ojph::pfm_in::open(), ojph::j2c_outfile::tell(), and ojph::j2c_infile::tell().
|
inlinestatic |
Definition at line 263 of file ojph_arch.h.
Referenced by ojph::local::gen_cnvrt_float_to_si32(), and ojph::local::gen_cnvrt_float_to_si32_shftd().
|
inlinestatic |
Definition at line 275 of file ojph_arch.h.
Referenced by ojph::local::gen_irv_tx_to_cb32().
Definition at line 152 of file ojph_arch.h.
Referenced by count_leading_zeros(), count_trailing_zeros(), ojph::local::ojph_decode_codeblock32(), ojph::local::ojph_decode_codeblock64(), ojph::local::param_cap::read(), and ojph::local::vlc_init_tables().
Definition at line 170 of file ojph_arch.h.
Referenced by count_leading_zeros().
void ojph::set_error_stream | ( | FILE * | s | ) |
Replaces the error output file from the default stderr to user defined output file.
s | A pointer to the desired output file; it can be stdout, stderr, a log file, or NULL if no error messages are desired. |
Definition at line 150 of file ojph_message.cpp.
References error_stream.
void ojph::set_info_stream | ( | FILE * | s | ) |
Replaces the info output file from the default stdout to user defined output file.
s | A pointer to the desired output file; it can be stdout, stderr, a log file, or NULL if no info messages are desired. |
Definition at line 68 of file ojph_message.cpp.
References info_stream.
void ojph::set_message_level | ( | OJPH_MSG_LEVEL | level | ) |
Sets the minimum severity of the message to be reported.
level | is the level of the message severity; values are defined in OJPH_MSG_LEVEL. |
Definition at line 174 of file ojph_message.cpp.
References ALL_MSG, message_level, and NO_MSG.
void ojph::set_warning_stream | ( | FILE * | s | ) |
Replaces the warning output file from the default stdout to user defined output file.
s | A pointer to the desired output file; it can be stdout, stderr, a log file, or NULL if no warning messages are desired. |
Definition at line 109 of file ojph_message.cpp.
References warning_stream.
void ojph::sse41_cvrt_32b1c_to_16ub1c_be | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 368 of file ojph_img_io_sse41.cpp.
References be2le(), ojph::line_buf::i32, and ojph_unused.
Referenced by ojph::ppm_out::configure().
void ojph::sse41_cvrt_32b1c_to_16ub1c_le | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 227 of file ojph_img_io_sse41.cpp.
References ojph::line_buf::i32, and ojph_unused.
void ojph::sse41_cvrt_32b1c_to_8ub1c | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 58 of file ojph_img_io_sse41.cpp.
References ojph::line_buf::i32, and ojph_unused.
Referenced by ojph::ppm_out::configure().
void ojph::sse41_cvrt_32b3c_to_16ub3c_be | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 410 of file ojph_img_io_sse41.cpp.
References be2le(), and ojph::line_buf::i32.
Referenced by ojph::ppm_out::configure().
void ojph::sse41_cvrt_32b3c_to_16ub3c_le | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 269 of file ojph_img_io_sse41.cpp.
References be2le(), and ojph::line_buf::i32.
void ojph::sse41_cvrt_32b3c_to_8ub3c | ( | const line_buf * | ln0, |
const line_buf * | ln1, | ||
const line_buf * | ln2, | ||
void * | dp, | ||
ui32 | bit_depth, | ||
ui32 | count | ||
) |
Definition at line 112 of file ojph_img_io_sse41.cpp.
References ojph::line_buf::i32.
Referenced by ojph::ppm_out::configure().
const ui32 ojph::byte_alignment = 64 |
Definition at line 290 of file ojph_arch.h.
Referenced by ojph::local::codeblock::finalize_alloc(), and ojph::local::codeblock::pre_alloc().
|
static |
Definition at line 240 of file ojph_arch.cpp.
Referenced by get_cpu_ext_level().
|
static |
Definition at line 241 of file ojph_arch.cpp.
Referenced by get_cpu_ext_level().
message_error ojph::error |
Definition at line 134 of file ojph_message.cpp.
Referenced by configure_error(), and ojph::local::tile::parse_tile_header().
FILE* ojph::error_stream = stderr |
Definition at line 131 of file ojph_message.cpp.
Referenced by ojph::message_error::operator()(), and set_error_stream().
message_info ojph::info |
Definition at line 51 of file ojph_message.cpp.
Referenced by configure_info().
FILE* ojph::info_stream = stdout |
Definition at line 48 of file ojph_message.cpp.
Referenced by ojph::message_info::operator()(), and set_info_stream().
message_error* ojph::local_error = &error |
Definition at line 135 of file ojph_message.cpp.
Referenced by configure_error(), and get_error().
message_info* ojph::local_info = &info |
Definition at line 52 of file ojph_message.cpp.
Referenced by configure_info(), and get_info().
message_warning* ojph::local_warn = &warn |
Definition at line 94 of file ojph_message.cpp.
Referenced by configure_warning(), and get_warning().
const ui32 ojph::log_byte_alignment = 31 - count_leading_zeros(byte_alignment) |
Definition at line 291 of file ojph_arch.h.
OJPH_MSG_LEVEL ojph::message_level = OJPH_MSG_LEVEL::ALL_MSG |
Definition at line 53 of file ojph_message.cpp.
Referenced by ojph::message_info::operator()(), ojph::message_warning::operator()(), ojph::message_error::operator()(), and set_message_level().
const int ojph::NUM_FRAC_BITS = 13 |
Definition at line 67 of file ojph_defs.h.
const ui32 ojph::object_alignment = 8 |
Definition at line 292 of file ojph_arch.h.
const char ojph::OJPH_PN_STRING_BROADCAST[] = "BROADCAST" |
Definition at line 94 of file ojph_params_local.h.
Referenced by ojph::local::codestream::set_profile().
const char ojph::OJPH_PN_STRING_CINEMA2K[] = "CINEMA2K" |
Definition at line 90 of file ojph_params_local.h.
const char ojph::OJPH_PN_STRING_CINEMA4K[] = "CINEMA4K" |
Definition at line 91 of file ojph_params_local.h.
const char ojph::OJPH_PN_STRING_CINEMAS2K[] = "CINEMAS2K" |
Definition at line 92 of file ojph_params_local.h.
const char ojph::OJPH_PN_STRING_CINEMAS4K[] = "CINEMAS4K" |
Definition at line 93 of file ojph_params_local.h.
const char ojph::OJPH_PN_STRING_IMF[] = "IMF" |
Definition at line 95 of file ojph_params_local.h.
Referenced by ojph::local::codestream::set_profile().
const char ojph::OJPH_PN_STRING_PROFILE0[] = "PROFILE0" |
Definition at line 88 of file ojph_params_local.h.
const char ojph::OJPH_PN_STRING_PROFILE1[] = "PROFILE1" |
Definition at line 89 of file ojph_params_local.h.
const char ojph::OJPH_PO_STRING_CPRL[] = "CPRL" |
Definition at line 71 of file ojph_params_local.h.
Referenced by ojph::param_cod::get_progression_order_as_string(), and ojph::param_cod::set_progression_order().
const char ojph::OJPH_PO_STRING_LRCP[] = "LRCP" |
Definition at line 67 of file ojph_params_local.h.
Referenced by ojph::param_cod::get_progression_order_as_string(), and ojph::param_cod::set_progression_order().
const char ojph::OJPH_PO_STRING_PCRL[] = "PCRL" |
Definition at line 70 of file ojph_params_local.h.
Referenced by ojph::param_cod::get_progression_order_as_string(), and ojph::param_cod::set_progression_order().
const char ojph::OJPH_PO_STRING_RLCP[] = "RLCP" |
Definition at line 68 of file ojph_params_local.h.
Referenced by ojph::param_cod::get_progression_order_as_string(), and ojph::param_cod::set_progression_order().
const char ojph::OJPH_PO_STRING_RPCL[] = "RPCL" |
Definition at line 69 of file ojph_params_local.h.
Referenced by ojph::param_cod::get_progression_order_as_string(), and ojph::param_cod::set_progression_order().
message_warning ojph::warn |
Definition at line 93 of file ojph_message.cpp.
Referenced by configure_warning().
FILE* ojph::warning_stream = stdout |
Definition at line 90 of file ojph_message.cpp.
Referenced by ojph::message_warning::operator()(), and set_warning_stream().