• Home
  • Raw
  • Download

Lines Matching refs:string_code

39         dict[i].string_code = CODE_UNSET;  in ff_mlz_flush_dict()
50 static void set_new_entry_dict(MLZDict* dict, int string_code, int parent_code, int char_code) { in set_new_entry_dict() argument
51 dict[string_code].parent_code = parent_code; in set_new_entry_dict()
52 dict[string_code].string_code = string_code; in set_new_entry_dict()
53 dict[string_code].char_code = char_code; in set_new_entry_dict()
55 dict[string_code].match_len = 2; in set_new_entry_dict()
57 dict[string_code].match_len = (dict[parent_code].match_len) + 1; in set_new_entry_dict()
61 static int decode_string(MLZ* mlz, unsigned char *buff, int string_code, int *first_char_code, unsi… in decode_string() argument
67 current_code = string_code; in decode_string()
126 int string_code, last_string_code, char_code; in ff_mlz_decompression() local
128 string_code = 0; in ff_mlz_decompression()
134 string_code = input_code(gb, mlz->dic_code_bit); in ff_mlz_decompression()
135 switch (string_code) { in ff_mlz_decompression()
146 if (string_code > mlz->current_dic_index_max) { in ff_mlz_decompression()
147 …ontext, AV_LOG_ERROR, "String code %d exceeds maximum value of %d.\n", string_code, mlz->current_d… in ff_mlz_decompression()
150 if (string_code == (int) mlz->bump_code) { in ff_mlz_decompression()
155 if (string_code >= mlz->next_code) { in ff_mlz_decompression()
175 … int ret = decode_string(mlz, &buff[output_chars], string_code, &char_code, size - output_chars); in ff_mlz_decompression()
194 last_string_code = string_code; in ff_mlz_decompression()