Lines Matching refs:obuffer
34 short obuffer[width*height];
58 obuffer[i] = buffer[0][i];
59 ff_spatial_idwt(obuffer, s.temp_idwt_buffer, width, height, width, s.spatial_decomposition_type, s.spatial_decomposition_count);
62 if(buffer[1][i]!= obuffer[i]) {
63 printf("fsck: %4dx%4dx %12d %7d\n",i%width, i/width, buffer[1][i], obuffer[i]);
74 obuffer[i] = buffer[0][i];
75 ff_spatial_idwt(obuffer, s.temp_idwt_buffer, width, height, width, s.spatial_decomposition_type, s.spatial_decomposition_count);
78 if(FFABS(buffer[1][i] - obuffer[i])>20) {
79 printf("fsck: %4dx%4d %12d %7d\n",i%width, i/width, buffer[1][i], obuffer[i]);
96 IDWTELEM *buf= obuffer;
102 memset(obuffer, 0, sizeof(short)*width*height);
104 ff_spatial_idwt(obuffer, s.temp_idwt_buffer, width, height, width, s.spatial_decomposition_type, s.spatial_decomposition_count);
107 int64_t d= obuffer[x + y*width];