Lines Matching defs:mode
123 /* Now we search backwards to find possible valid mode counts. This is not
159 /* We're limiting the mode count to 63 so that we know that the previous
162 av_log(s, AV_LOG_ERROR, "Unsupported mode count: %d\n",
168 /* Determine the number of bits required to code the mode and turn that
169 * into a bitmask to directly access the mode from the first frame byte. */
171 /* The previous window flag is the next bit after the mode */
221 int mode, current_blocksize;
247 mode = 0;
249 mode = (buf[0] & s->mode_mask) >> 1;
250 if (mode >= s->mode_count) {
251 av_log(s, AV_LOG_ERROR, "Invalid mode in packet\n");
254 if(s->mode_blocksize[mode]){
258 current_blocksize = s->blocksize[s->mode_blocksize[mode]];