MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / predict_plane

Function predict_plane

libavcodec/snow.c:1500–1505  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1498}
1499
1500static av_always_inline void predict_plane(SnowContext *s, IDWTELEM *buf, int plane_index, int add){
1501 const int mb_h= s->b_height << s->block_max_depth;
1502 int mb_y;
1503 for(mb_y=0; mb_y<=mb_h; mb_y++)
1504 predict_slice(s, buf, plane_index, add, mb_y);
1505}
1506
1507static void dequantize_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand *b, IDWTELEM *src, int stride, int start_y, int end_y){
1508 const int w= b->width;

Callers 2

decode_frameFunction · 0.85
encode_frameFunction · 0.85

Calls 1

predict_sliceFunction · 0.85

Tested by

no test coverage detected