| 923 | } |
| 924 | |
| 925 | static void reallocAlign(void **p, int alignment, int size){ |
| 926 | av_free(*p); |
| 927 | *p= av_mallocz(size); |
| 928 | } |
| 929 | |
| 930 | static void reallocBuffers(PPContext *c, int width, int height, int stride, int qpStride){ |
| 931 | int mbWidth = (width+15)>>4; |
no test coverage detected