| 29 | } |
| 30 | |
| 31 | int VideoFilterChain::push(std::unique_ptr<IAFFrame> &frame) |
| 32 | { |
| 33 | if (frame == nullptr) { |
| 34 | AF_LOGD("filter push eof frame"); |
| 35 | } |
| 36 | |
| 37 | mInPutFrames.push(frame.release()); |
| 38 | |
| 39 | filterLoop(); |
| 40 | |
| 41 | return 0; |
| 42 | } |
| 43 | |
| 44 | void VideoFilterChain::filterLoop() |
| 45 | { |
no test coverage detected