| 649 | } |
| 650 | |
| 651 | static bool |
| 652 | ffmpeg_scan_stream(InputStream &is, TagHandler &handler) |
| 653 | { |
| 654 | AvioStream stream(nullptr, is); |
| 655 | if (!stream.Open()) |
| 656 | return false; |
| 657 | |
| 658 | auto f = FfmpegOpenInput(stream.io, is.GetURI(), nullptr); |
| 659 | return FfmpegScanStream(*f, handler); |
| 660 | } |
| 661 | |
| 662 | static void |
| 663 | ffmpeg_uri_decode(DecoderClient &client, const char *uri) |
nothing calls this directly
no test coverage detected