Searched refs:put_dct (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | mpegvideo.c | 1875 static inline void put_dct(MpegEncContext *s, in put_dct() function 2190 put_dct(s, block[0], 0, dest_y , dct_linesize, s->qscale); in mpv_reconstruct_mb_internal() 2191 put_dct(s, block[1], 1, dest_y + block_size, dct_linesize, s->qscale); in mpv_reconstruct_mb_internal() 2192 put_dct(s, block[2], 2, dest_y + dct_offset , dct_linesize, s->qscale); in mpv_reconstruct_mb_internal() 2193 put_dct(s, block[3], 3, dest_y + dct_offset + block_size, dct_linesize, s->qscale); in mpv_reconstruct_mb_internal() 2197 put_dct(s, block[4], 4, dest_cb, uvlinesize, s->chroma_qscale); in mpv_reconstruct_mb_internal() 2198 put_dct(s, block[5], 5, dest_cr, uvlinesize, s->chroma_qscale); in mpv_reconstruct_mb_internal() 2202 … put_dct(s, block[4], 4, dest_cb, dct_linesize, s->chroma_qscale); in mpv_reconstruct_mb_internal() 2203 … put_dct(s, block[5], 5, dest_cr, dct_linesize, s->chroma_qscale); in mpv_reconstruct_mb_internal() 2204 … put_dct(s, block[6], 6, dest_cb + dct_offset, dct_linesize, s->chroma_qscale); in mpv_reconstruct_mb_internal() [all …]
|