Searched refs:hash_prefix (Results 1 - 1 of 1) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dlzwenc.c43 int hash_prefix; member in struct:Code
121 * @param hash_prefix LZW code for prefix
124 static inline int findCode(LZWEncodeState * s, uint8_t c, int hash_prefix) argument
126 int h = hash(FFMAX(hash_prefix, 0), c);
129 while (s->tab[h].hash_prefix != LZW_PREFIX_FREE) {
131 && (s->tab[h].hash_prefix == hash_prefix))
143 * @param hash_prefix LZW code for prefix
146 static inline void addCode(LZWEncodeState * s, uint8_t c, int hash_prefix, int hash_code) argument
150 s->tab[hash_code].hash_prefix
[all...]

Completed in 92 milliseconds