| 2225 | } |
| 2226 | |
| 2227 | static av_cold int decode_end(AVCodecContext *avctx) |
| 2228 | { |
| 2229 | SnowContext *s = avctx->priv_data; |
| 2230 | |
| 2231 | ff_slice_buffer_destroy(&s->sb); |
| 2232 | |
| 2233 | common_end(s); |
| 2234 | |
| 2235 | return 0; |
| 2236 | } |
| 2237 | |
| 2238 | AVCodec snow_decoder = { |
| 2239 | "snow", |
nothing calls this directly
no test coverage detected