| 710 | } |
| 711 | |
| 712 | const char *GetSourceInfo(int sample) const & override { |
| 713 | ValidateSampleIdx(sample); |
| 714 | const char *info = tl_->GetMeta(sample).GetSourceInfo().c_str(); |
| 715 | if (info && !*info) |
| 716 | return nullptr; // return empty string as NULL |
| 717 | return info; |
| 718 | } |
| 719 | |
| 720 | void SetSourceInfo(int sample, const char *source_info) override { |
| 721 | ValidateSampleIdx(sample); |
nothing calls this directly
no test coverage detected