Home
last modified time | relevance | path

Searched refs:string_code (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmlz.c39 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
[all …]
Dmlz.h39 int string_code; member