| 81 | bool NeedsResample = false; |
| 82 | |
| 83 | struct SwrFreeWrapper { |
| 84 | void operator()(SwrContext *c) const { |
| 85 | swr_free(&c); |
| 86 | } |
| 87 | }; |
| 88 | |
| 89 | typedef std::unique_ptr<SwrContext, SwrFreeWrapper> FFResampleContext; |
| 90 | FFResampleContext ResampleContext; |
nothing calls this directly
no outgoing calls
no test coverage detected