Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
Dmpegvideo.c1875 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()
2202put_dct(s, block[4], 4, dest_cb, dct_linesize, s->chroma_qscale); in mpv_reconstruct_mb_internal()
2203put_dct(s, block[5], 5, dest_cr, dct_linesize, s->chroma_qscale); in mpv_reconstruct_mb_internal()
2204put_dct(s, block[6], 6, dest_cb + dct_offset, dct_linesize, s->chroma_qscale); in mpv_reconstruct_mb_internal()
[all …]