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

Function ff_slice_buffer_destroy

libavcodec/dwt.c:81–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81void ff_slice_buffer_destroy(slice_buffer * buf)
82{
83 int i;
84 ff_slice_buffer_flush(buf);
85
86 for(i = buf->data_count - 1; i >= 0; i--){
87 av_freep(&buf->data_stack[i]);
88 }
89 av_freep(&buf->data_stack);
90 av_freep(&buf->line);
91}
92
93static inline int mirror(int v, int m){
94 while((unsigned)v > (unsigned)m){

Callers 2

decode_frameFunction · 0.85
decode_endFunction · 0.85

Calls 2

ff_slice_buffer_flushFunction · 0.85
av_freepFunction · 0.85

Tested by

no test coverage detected