Home | History | Annotate | Download | only in codec

Lines Matching refs:l_stream

124   opj_stream_t* l_stream = 00;
128 l_stream = opj_stream_create(p_size, p_is_read_stream);
129 if (!l_stream) {
132 opj_stream_set_user_data(l_stream, data, nullptr);
133 opj_stream_set_user_data_length(l_stream, data->src_size);
134 opj_stream_set_read_function(l_stream, opj_read_from_memory);
135 opj_stream_set_write_function(l_stream, opj_write_from_memory);
136 opj_stream_set_skip_function(l_stream, opj_skip_from_memory);
137 opj_stream_set_seek_function(l_stream, opj_seek_from_memory);
138 return l_stream;
706 opj_stream_t* l_stream;
711 : image(nullptr), l_codec(nullptr), l_stream(nullptr), m_ColorSpace(cs) {}
717 if (l_stream) {
718 opj_stream_destroy(l_stream);
735 l_stream = fx_opj_stream_create_memory_stream(&srcData,
737 if (!l_stream) {
761 if (!opj_read_header(l_stream, l_codec, &image)) {
774 if (!(opj_decode(l_codec, l_stream, image) &&
775 opj_end_decompress(l_codec, l_stream))) {
781 if (!opj_get_decoded_tile(l_codec, l_stream, image,
786 opj_stream_destroy(l_stream);
787 l_stream = nullptr;