| 427 | } |
| 428 | |
| 429 | const char *FFMS_Indexer::GetTrackCodec(int Track) { |
| 430 | auto *codec = avcodec_find_decoder(FormatContext->streams[Track]->codecpar->codec_id); |
| 431 | return codec ? codec->name : nullptr; |
| 432 | } |
| 433 | |
| 434 | FFMS_Index *FFMS_Indexer::DoIndexing() { |
| 435 | std::vector<SharedAVContext> AVContexts(FormatContext->nb_streams); |
no outgoing calls
no test coverage detected