| 35 | } |
| 36 | |
| 37 | std::shared_ptr<ft0cc::doc::dpcm_sample> CDSampleManager::ReleaseDSample(unsigned Index) { |
| 38 | return Index < m_pDSample.size() ? std::move(m_pDSample[Index]) : nullptr; |
| 39 | } |
| 40 | |
| 41 | void CDSampleManager::RemoveDSample(unsigned Index) { |
| 42 | (void)ReleaseDSample(Index); |