| 131 | } |
| 132 | |
| 133 | type callbackTranscoder struct { |
| 134 | transcoder transcode.Transcoder |
| 135 | callback func() |
| 136 | } |
| 137 | |
| 138 | func (ct callbackTranscoder) Transcode(ctx context.Context, profile transcode.Profile, in string, out io.Writer) error { |
| 139 | ct.callback() |
nothing calls this directly
no outgoing calls
no test coverage detected