Fuzz introspector
For issues and ideas: https://github.com/ossf/fuzz-introspector/issues

Project functions overview

The following table shows data about each function in the project. The functions included in this table correspond to all functions that exist in the executables of the fuzzers. As such, there may be functions that are from third-party libraries.

For further technical details on the meaning of columns in the below table, please see the Glossary .

Func name Functions filename Args Function call depth Reached by Fuzzers Runtime reached by Fuzzers Combined reached by Fuzzers Fuzzers runtime hit Func lines hit % I Count BB Count Cyclomatic complexity Functions reached Reached by functions Accumulated cyclomatic complexity Undiscovered complexity

Fuzzer details

Fuzzer: ojph_expand_fuzz_target

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 25 64.1%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 14 35.8%
All colors 39 100

Fuzz blockers

The following nodes represent call sites where fuzz blockers occur.

Amount of callsites blocked Calltree index Parent function Callsite Largest blocked function
18 4 LLVMFuzzerTestOneInput call site: 00004
3 0 EP call site: 00000
1 23 LLVMFuzzerTestOneInput call site: 00023
1 25 LLVMFuzzerTestOneInput call site: 00025
1 28 LLVMFuzzerTestOneInput call site: 00028
1 30 LLVMFuzzerTestOneInput call site: 00030

Runtime coverage analysis

Covered functions
418
Functions that are reachable but not covered
16
Reachable functions
17
Percentage of reachable functions covered
5.88%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
fuzzing/fuzz_targets/ojph_expand_fuzz_target.cpp 12
src/core/others/ojph_file.cpp 1
src/core/codestream/ojph_codestream.cpp 6
src/core/codestream/ojph_codestream_local.cpp 5
src/core/openjph/ojph_mem.h 1
src/core/codestream/ojph_params.cpp 1

Analyses and suggestions

Optimal target analysis

Remaining optimal interesting functions

The following table shows a list of functions that are optimal targets. Optimal targets are identified by finding the functions that in combination, yield a high code coverage.

Func name Functions filename Arg count Args Function depth hitcount instr count bb count cyclomatic complexity Reachable functions Incoming references total cyclomatic complexity Unreached complexity
ojph::local::codestream::write_headers /src/OpenJPH/src/core/codestream/ojph_codestream_local.cpp 3 ['outfile_base*', 'comment_exchange*', 'ui32'] 7 0 86 26 32 91 0 206 206
ojph::local::ojph_decode_codeblock32 /src/OpenJPH/src/core/coding/ojph_block_decoder32.cpp 10 ['ui8*', 'ui32*', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'bool'] 3 0 408 59 84 21 0 125 123
ojph::local::ojph_decode_codeblock64 /src/OpenJPH/src/core/coding/ojph_block_decoder64.cpp 10 ['ui8*', 'ui64*', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'bool'] 3 0 398 52 77 24 0 111 82
ojph::local::ojph_decode_codeblock_wasm /src/OpenJPH/src/core/coding/ojph_block_decoder_wasm.cpp 10 ['ui8*', 'ui32*', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'bool'] 4 0 447 45 71 91 0 122 81
ojph::local::ojph_decode_codeblock_avx2 /src/OpenJPH/src/core/coding/ojph_block_decoder_avx2.cpp 10 ['ui8*', 'ui32*', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'bool'] 4 0 386 45 71 99 0 119 78
ojph::local::codestream::read_headers /src/OpenJPH/src/core/codestream/ojph_codestream_local.cpp 1 ['infile_base*'] 8 0 68 26 29 87 0 141 74
ojph::local::ojph_decode_codeblock_ssse3 /src/OpenJPH/src/core/coding/ojph_block_decoder_ssse3.cpp 10 ['ui8*', 'ui32*', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'bool'] 4 0 439 45 71 66 0 118 71
ojph::local::tile::flush /src/OpenJPH/src/core/codestream/ojph_tile.cpp 1 ['outfile_base*'] 1 0 131 35 67 11 0 69 67
ojph::local::precinct::parse /src/OpenJPH/src/core/codestream/ojph_precinct.cpp 6 ['int', 'ui32*', 'mem_elastic_allocator*', 'ui32', 'infile_base*', 'bool'] 2 0 162 36 67 18 0 76 67
ojph::local::ojph_encode_codeblock32 /src/OpenJPH/src/core/coding/ojph_block_encoder.cpp 9 ['ui32*', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32', 'ui32*', 'ojph::mem_elastic_allocator*', 'ojph::coded_lists*'] 3 0 339 34 39 16 0 68 65

Implementing fuzzers that target the above functions will improve reachability such that it becomes:

Functions statically reachable by fuzzers
10.0%
95 / 980
Cyclomatic complexity statically reachable by fuzzers
25.0%
914 / 3717

All functions overview

If you implement fuzzers for these functions, the status of all functions in the project will be:

Func name Functions filename Args Function call depth Reached by Fuzzers Runtime reached by Fuzzers Combined reached by Fuzzers Fuzzers runtime hit Func lines hit % I Count BB Count Cyclomatic complexity Functions reached Reached by functions Accumulated cyclomatic complexity Undiscovered complexity

Runtime coverage analysis

This section shows analysis of runtime coverage data.

For futher technical details on how this section is generated, please see the Glossary .

Complex functions with low coverage

Func name Function total lines Lines covered at runtime percentage covered Reached by fuzzers
ojph::local::bb_skip_sop(ojph::local::bit_read_buf*) 36 13 36.11%
ojph::local::param_sot::read(ojph::infile_base*,bool) 71 18 25.35%
ojph::local::param_dfs::read(ojph::infile_base*) 43 22 51.16%
ojph::local::param_atk::read_coefficient(ojph::infile_base*,float&,int&) 58 16 27.58%
ojph::local::resolution::pull_line() 222 122 54.95%
ojph::local::tile::parse_tile_header(ojph::local::param_sotconst&,ojph::infile_base*,unsignedlongconst&) 129 66 51.16%
ojph::local::ojph_decode_codeblock64(unsignedchar*,unsignedlong*,unsignedint,unsignedint,unsignedint,unsignedint,unsignedint,unsignedint,unsignedint,bool) 560 239 42.67%
ojph::local::avx2_rev_convert(ojph::line_bufconst*,unsignedint,ojph::line_buf*,unsignedint,long,unsignedint) 58 17 29.31%
ojph::local::avx2_rct_backward(ojph::line_bufconst*,ojph::line_bufconst*,ojph::line_bufconst*,ojph::line_buf*,ojph::line_buf*,ojph::line_buf*,unsignedint) 91 34 37.36%
ojph::local::avx2_rev_vert_step32(ojph::local::lifting_stepconst*,ojph::line_bufconst*,ojph::line_bufconst*,ojph::line_bufconst*,unsignedint,bool) 120 40 33.33%
ojph::local::avx2_rev_vert_step64(ojph::local::lifting_stepconst*,ojph::line_bufconst*,ojph::line_bufconst*,ojph::line_bufconst*,unsignedint,bool) 99 40 40.40%
ojph::local::avx2_rev_horz_syn64(ojph::local::param_atkconst*,ojph::line_bufconst*,ojph::line_bufconst*,ojph::line_bufconst*,unsignedint,bool) 133 72 54.13%

Fuzz driver synthesis

New fuzzers

The below fuzzers are templates and suggestions for how to target the set of optimal functions above

ojph_codestream_local.cpp

Target file: /src/OpenJPH/src/core/codestream/ojph_codestream_local.cpp
Target functions: ojph::local::codestream::write_headers, ojph::local::codestream::read_headers
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target ojph::local::codestream::write_headers */
  UNKNOWN_TYPE unknown_0;
  UNKNOWN_TYPE unknown_1;
  UNKNOWN_TYPE unknown_2;
  ojph::local::codestream::write_headers(unknown_0, unknown_1, unknown_2);

  /* target ojph::local::codestream::read_headers */
  UNKNOWN_TYPE unknown_43;
  ojph::local::codestream::read_headers(unknown_43);

  af_safe_gb_cleanup();
}

ojph_block_decoder32.cpp

Target file: /src/OpenJPH/src/core/coding/ojph_block_decoder32.cpp
Target functions: ojph::local::ojph_decode_codeblock32
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target ojph::local::ojph_decode_codeblock32 */
  UNKNOWN_TYPE unknown_3;
  UNKNOWN_TYPE unknown_4;
  UNKNOWN_TYPE unknown_5;
  UNKNOWN_TYPE unknown_6;
  UNKNOWN_TYPE unknown_7;
  UNKNOWN_TYPE unknown_8;
  UNKNOWN_TYPE unknown_9;
  UNKNOWN_TYPE unknown_10;
  UNKNOWN_TYPE unknown_11;
  UNKNOWN_TYPE unknown_12;
  ojph::local::ojph_decode_codeblock32(unknown_3, unknown_4, unknown_5, unknown_6, unknown_7, unknown_8, unknown_9, unknown_10, unknown_11, unknown_12);

  af_safe_gb_cleanup();
}

ojph_block_decoder64.cpp

Target file: /src/OpenJPH/src/core/coding/ojph_block_decoder64.cpp
Target functions: ojph::local::ojph_decode_codeblock64
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target ojph::local::ojph_decode_codeblock64 */
  UNKNOWN_TYPE unknown_13;
  UNKNOWN_TYPE unknown_14;
  UNKNOWN_TYPE unknown_15;
  UNKNOWN_TYPE unknown_16;
  UNKNOWN_TYPE unknown_17;
  UNKNOWN_TYPE unknown_18;
  UNKNOWN_TYPE unknown_19;
  UNKNOWN_TYPE unknown_20;
  UNKNOWN_TYPE unknown_21;
  UNKNOWN_TYPE unknown_22;
  ojph::local::ojph_decode_codeblock64(unknown_13, unknown_14, unknown_15, unknown_16, unknown_17, unknown_18, unknown_19, unknown_20, unknown_21, unknown_22);

  af_safe_gb_cleanup();
}

ojph_block_decoder_wasm.cpp

Target file: /src/OpenJPH/src/core/coding/ojph_block_decoder_wasm.cpp
Target functions: ojph::local::ojph_decode_codeblock_wasm
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target ojph::local::ojph_decode_codeblock_wasm */
  UNKNOWN_TYPE unknown_23;
  UNKNOWN_TYPE unknown_24;
  UNKNOWN_TYPE unknown_25;
  UNKNOWN_TYPE unknown_26;
  UNKNOWN_TYPE unknown_27;
  UNKNOWN_TYPE unknown_28;
  UNKNOWN_TYPE unknown_29;
  UNKNOWN_TYPE unknown_30;
  UNKNOWN_TYPE unknown_31;
  UNKNOWN_TYPE unknown_32;
  ojph::local::ojph_decode_codeblock_wasm(unknown_23, unknown_24, unknown_25, unknown_26, unknown_27, unknown_28, unknown_29, unknown_30, unknown_31, unknown_32);

  af_safe_gb_cleanup();
}

ojph_block_decoder_avx2.cpp

Target file: /src/OpenJPH/src/core/coding/ojph_block_decoder_avx2.cpp
Target functions: ojph::local::ojph_decode_codeblock_avx2
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target ojph::local::ojph_decode_codeblock_avx2 */
  UNKNOWN_TYPE unknown_33;
  UNKNOWN_TYPE unknown_34;
  UNKNOWN_TYPE unknown_35;
  UNKNOWN_TYPE unknown_36;
  UNKNOWN_TYPE unknown_37;
  UNKNOWN_TYPE unknown_38;
  UNKNOWN_TYPE unknown_39;
  UNKNOWN_TYPE unknown_40;
  UNKNOWN_TYPE unknown_41;
  UNKNOWN_TYPE unknown_42;
  ojph::local::ojph_decode_codeblock_avx2(unknown_33, unknown_34, unknown_35, unknown_36, unknown_37, unknown_38, unknown_39, unknown_40, unknown_41, unknown_42);

  af_safe_gb_cleanup();
}

ojph_block_decoder_ssse3.cpp

Target file: /src/OpenJPH/src/core/coding/ojph_block_decoder_ssse3.cpp
Target functions: ojph::local::ojph_decode_codeblock_ssse3
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target ojph::local::ojph_decode_codeblock_ssse3 */
  UNKNOWN_TYPE unknown_44;
  UNKNOWN_TYPE unknown_45;
  UNKNOWN_TYPE unknown_46;
  UNKNOWN_TYPE unknown_47;
  UNKNOWN_TYPE unknown_48;
  UNKNOWN_TYPE unknown_49;
  UNKNOWN_TYPE unknown_50;
  UNKNOWN_TYPE unknown_51;
  UNKNOWN_TYPE unknown_52;
  UNKNOWN_TYPE unknown_53;
  ojph::local::ojph_decode_codeblock_ssse3(unknown_44, unknown_45, unknown_46, unknown_47, unknown_48, unknown_49, unknown_50, unknown_51, unknown_52, unknown_53);

  af_safe_gb_cleanup();
}

ojph_tile.cpp

Target file: /src/OpenJPH/src/core/codestream/ojph_tile.cpp
Target functions: ojph::local::tile::flush
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target ojph::local::tile::flush */
  UNKNOWN_TYPE unknown_54;
  ojph::local::tile::flush(unknown_54);

  af_safe_gb_cleanup();
}

ojph_precinct.cpp

Target file: /src/OpenJPH/src/core/codestream/ojph_precinct.cpp
Target functions: ojph::local::precinct::parse
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target ojph::local::precinct::parse */
  int new_var55 = ada_safe_get_int();
  UNKNOWN_TYPE unknown_56;
  UNKNOWN_TYPE unknown_57;
  UNKNOWN_TYPE unknown_58;
  UNKNOWN_TYPE unknown_59;
  UNKNOWN_TYPE unknown_60;
  ojph::local::precinct::parse(new_var55, unknown_56, unknown_57, unknown_58, unknown_59, unknown_60);

  af_safe_gb_cleanup();
}

ojph_block_encoder.cpp

Target file: /src/OpenJPH/src/core/coding/ojph_block_encoder.cpp
Target functions: ojph::local::ojph_encode_codeblock32
#include "ada_fuzz_header.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  af_safe_gb_init(data, size);

  /* target ojph::local::ojph_encode_codeblock32 */
  UNKNOWN_TYPE unknown_61;
  UNKNOWN_TYPE unknown_62;
  UNKNOWN_TYPE unknown_63;
  UNKNOWN_TYPE unknown_64;
  UNKNOWN_TYPE unknown_65;
  UNKNOWN_TYPE unknown_66;
  UNKNOWN_TYPE unknown_67;
  UNKNOWN_TYPE unknown_68;
  UNKNOWN_TYPE unknown_69;
  ojph::local::ojph_encode_codeblock32(unknown_61, unknown_62, unknown_63, unknown_64, unknown_65, unknown_66, unknown_67, unknown_68, unknown_69);

  af_safe_gb_cleanup();
}

Files and Directories in report

This section shows which files and directories are considered in this report. The main reason for showing this is fuzz introspector may include more code in the reasoning than is desired. This section helps identify if too many files/directories are included, e.g. third party code, which may be irrelevant for the threat model. In the event too much is included, fuzz introspector supports a configuration file that can exclude data from the report. See the following link for more information on how to create a config file: link

Files in report

Source file Reached by Covered by
/src/OpenJPH/src/core/coding/ojph_block_decoder_avx2.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_codestream_local.cpp ['ojph_expand_fuzz_target'] ['ojph_expand_fuzz_target']
/src/OpenJPH/src/apps/ojph_stream_expand/ojph_stream_expand.cpp [] []
/src/OpenJPH/tests/mse_pae.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_subband.h [] []
/src/OpenJPH/src/apps/ojph_stream_expand/threaded_frame_processors.cpp [] []
/src/OpenJPH/src/core/transform/ojph_transform.cpp [] []
/src/OpenJPH/src/core/openjph/ojph_codestream.h [] []
/src/OpenJPH/src/core/transform/ojph_transform_avx.cpp [] []
/src/OpenJPH/src/apps/ojph_stream_expand/stream_expand_support.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_precinct.h [] []
/src/OpenJPH/src/core/codestream/ojph_codestream_sse2.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_params.cpp ['ojph_expand_fuzz_target'] []
/src/OpenJPH/src/core/codestream/ojph_codestream_wasm.cpp [] []
/src/OpenJPH/src/apps/common/ojph_sockets.h [] []
/src/OpenJPH/src/core/coding/ojph_block_decoder_wasm.cpp [] []
/src/OpenJPH/src/core/transform/ojph_colour_sse2.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_codestream_avx2.cpp [] []
/src/OpenJPH/src/core/openjph/ojph_arch.h [] []
/src/OpenJPH/src/apps/others/ojph_threads.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_precinct.cpp [] []
/src/OpenJPH/src/core/openjph/ojph_params.h [] []
/src/OpenJPH/subprojects/js/src/ojph_wrapper.cpp [] []
/src/OpenJPH/src/core/openjph/ojph_arg.h [] []
/src/OpenJPH/src/core/codestream/ojph_codestream_avx.cpp [] []
/src/OpenJPH/src/apps/ojph_compress/ojph_compress.cpp [] []
/src/OpenJPH/src/core/others/ojph_mem.cpp [] []
/src/OpenJPH/src/apps/others/ojph_img_io_avx2.cpp [] []
/src/OpenJPH/src/core/openjph/ojph_base.h [] []
/src/OpenJPH/src/core/coding/ojph_block_encoder_avx512.cpp [] []
/src/OpenJPH/src/core/transform/ojph_colour.cpp [] []
/src/OpenJPH/src/core/transform/ojph_transform_wasm.cpp [] []
/src/OpenJPH/src/core/transform/ojph_colour_avx2.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_codestream_sse.cpp [] []
/src/OpenJPH/src/core/openjph/ojph_file.h [] []
/src/OpenJPH/src/core/codestream/ojph_tile.h [] []
/src/OpenJPH/src/core/openjph/ojph_mem.h ['ojph_expand_fuzz_target'] ['ojph_expand_fuzz_target']
/src/OpenJPH/src/apps/common/ojph_threads.h [] []
/src/OpenJPH/src/core/codestream/ojph_tile_comp.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_resolution.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_tile.cpp [] []
/src/OpenJPH/src/core/others/ojph_message.cpp [] []
/src/OpenJPH/src/apps/others/ojph_img_io.cpp [] []
/src/OpenJPH/src/apps/others/ojph_sockets.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_bitbuffer_read.h [] []
/src/OpenJPH/src/core/openjph/ojph_message.h [] []
/src/OpenJPH/src/apps/ojph_stream_expand/threaded_frame_processors.h [] []
/src/OpenJPH/src/core/transform/ojph_colour_avx.cpp [] []
/src/OpenJPH/src/core/others/ojph_arch.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_codeblock_fun.cpp [] []
/src/OpenJPH/src/apps/others/ojph_img_io_sse41.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_codestream_gen.cpp [] []
/src/OpenJPH/src/core/transform/ojph_colour_wasm.cpp [] []
/src/OpenJPH/src/core/others/ojph_file.cpp ['ojph_expand_fuzz_target'] []
/src/OpenJPH/src/core/codestream/ojph_params_local.h [] []
/src/OpenJPH/src/core/codestream/ojph_codestream.cpp ['ojph_expand_fuzz_target'] []
/src/OpenJPH/src/core/transform/ojph_colour_sse.cpp [] []
/src/OpenJPH/src/core/others/ojph_mem_c.c [] []
/src/OpenJPH/src/core/codestream/ojph_codestream_local.h [] []
/src/OpenJPH/src/apps/common/ojph_img_io.h [] []
/src/OpenJPH/src/core/coding/ojph_block_decoder32.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_bitbuffer_write.h [] []
/src/OpenJPH/src/core/transform/ojph_transform_avx2.cpp [] []
/src/OpenJPH/src/core/coding/ojph_block_decoder64.cpp [] []
/src/OpenJPH/src/core/transform/ojph_transform_sse2.cpp [] []
/src/OpenJPH/src/core/transform/ojph_transform_avx512.cpp [] []
/src/OpenJPH/src/core/openjph/ojph_defs.h [] []
/src/OpenJPH/src/core/codestream/ojph_subband.cpp [] []
/src/OpenJPH/src/core/transform/ojph_transform_sse.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_tile_comp.h [] []
/src/OpenJPH/src/core/codestream/ojph_resolution.h [] []
/src/OpenJPH/src/core/coding/ojph_block_decoder_ssse3.cpp [] []
/src/OpenJPH/src/core/coding/ojph_block_encoder_avx2.cpp [] []
/src/OpenJPH/tests/test_helpers/convert_mse_pae_to_tests.cpp [] []
/src/OpenJPH/src/core/codestream/ojph_codeblock.cpp [] []
/src/OpenJPH/src/core/coding/ojph_block_encoder.cpp [] []
/src/OpenJPH/tests/test_executables.cpp [] []
/src/OpenJPH/src/apps/ojph_stream_expand/stream_expand_support.h [] []
/src/OpenJPH/fuzzing/fuzz_targets/ojph_expand_fuzz_target.cpp ['ojph_expand_fuzz_target'] ['ojph_expand_fuzz_target']
/src/OpenJPH/tests/compare_files.cpp [] []

Directories in report

Directory
/src/OpenJPH/tests/
/src/OpenJPH/src/core/others/
/src/OpenJPH/src/apps/ojph_compress/
/src/OpenJPH/src/apps/ojph_stream_expand/
/src/OpenJPH/subprojects/js/src/
/src/OpenJPH/tests/test_helpers/
/src/OpenJPH/src/core/transform/
/src/OpenJPH/src/apps/others/
/src/OpenJPH/src/apps/common/
/src/OpenJPH/fuzzing/fuzz_targets/
/src/OpenJPH/src/core/codestream/
/src/OpenJPH/src/core/coding/
/src/OpenJPH/src/core/openjph/