Searched refs:put_symbol (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | ffv1enc.c | 232 static av_noinline void put_symbol(RangeCoder *c, uint8_t *state, in put_symbol() function 320 put_symbol(c, state, i - last - 1, 0); in write_quant_table() 323 put_symbol(c, state, i - last - 1, 0); in write_quant_table() 355 put_symbol(c, state, f->version, 0); in write_header() 356 put_symbol(c, state, f->ac, 0); in write_header() 359 put_symbol(c, state, in write_header() 362 put_symbol(c, state, f->colorspace, 0); //YUV cs type in write_header() 364 put_symbol(c, state, f->bits_per_raw_sample, 0); in write_header() 366 put_symbol(c, state, f->chroma_h_shift, 0); in write_header() 367 put_symbol(c, state, f->chroma_v_shift, 0); in write_header() [all …]
|
D | snowenc.c | 364 put_symbol(&pc, &p_state[128 + 1024 + 32*ref_context], best_ref, 0); in encode_q_branch() 366 put_symbol(&pc, &p_state[128 + 32*(mx_context + 16*!!best_ref)], mx - pmx, 1); in encode_q_branch() 367 put_symbol(&pc, &p_state[128 + 32*(my_context + 16*!!best_ref)], my - pmy, 1); in encode_q_branch() 394 put_symbol(&ic, &i_state[32], l-pl , 1); in encode_q_branch() 396 put_symbol(&ic, &i_state[64], cb-pcb, 1); in encode_q_branch() 397 put_symbol(&ic, &i_state[96], cr-pcr, 1); in encode_q_branch() 487 put_symbol(&s->c, &s->block_state[32], b->color[0]-pl , 1); in encode_q_branch2() 489 put_symbol(&s->c, &s->block_state[64], b->color[1]-pcb, 1); in encode_q_branch2() 490 put_symbol(&s->c, &s->block_state[96], b->color[2]-pcr, 1); in encode_q_branch2() 497 put_symbol(&s->c, &s->block_state[128 + 1024 + 32*ref_context], b->ref, 0); in encode_q_branch2() [all …]
|
D | sonic.c | 98 static av_always_inline av_flatten void put_symbol(RangeCoder *c, uint8_t *state, int v, int is_sig… in put_symbol() function 174 put_symbol(c, state, buf[i], 1, NULL, NULL); in intlist_write() 825 put_symbol(&c, state, quant, 0, NULL, NULL); in sonic_encode_frame()
|
D | snow.h | 512 static inline void put_symbol(RangeCoder *c, uint8_t *state, int v, int is_signed){ in put_symbol() function
|