Home
last modified time | relevance | path

Searched refs:VideoDecoderBackendEvent (Results 1 – 4 of 4) sorted by relevance

/external/virtio-media/extras/ffmpeg-decoder/src/
Devent_queue.rs86 use virtio_media::devices::video_decoder::VideoDecoderBackendEvent;
97 .queue_event(VideoDecoderBackendEvent::InputBufferDone(1)) in event_queue()
101 .queue_event(VideoDecoderBackendEvent::FrameCompleted { in event_queue()
115 Some(VideoDecoderBackendEvent::InputBufferDone(1)) in event_queue()
120 Some(VideoDecoderBackendEvent::FrameCompleted { in event_queue()
150 .queue_event(VideoDecoderBackendEvent::InputBufferDone(1)) in decoder_event_queue_polling()
154 .queue_event(VideoDecoderBackendEvent::InputBufferDone(2)) in decoder_event_queue_polling()
158 .queue_event(VideoDecoderBackendEvent::InputBufferDone(3)) in decoder_event_queue_polling()
164 Some(VideoDecoderBackendEvent::InputBufferDone(1)) in decoder_event_queue_polling()
169 Some(VideoDecoderBackendEvent::InputBufferDone(2)) in decoder_event_queue_polling()
[all …]
Dlib.rs43 use virtio_media::devices::video_decoder::VideoDecoderBackendEvent;
313 events: EventQueue<VideoDecoderBackendEvent>,
407 .queue_event(VideoDecoderBackendEvent::InputBufferDone(*input_index)) in try_send_input_job()
481 .queue_event(VideoDecoderBackendEvent::StreamFormatChanged) in try_receive_frame()
551 .queue_event(VideoDecoderBackendEvent::FrameCompleted { in try_output_frame()
620 .queue_event(VideoDecoderBackendEvent::FrameCompleted { in try_output_frame()
745 .retain(|event| !matches!(event, VideoDecoderBackendEvent::FrameCompleted { .. })); in clear_output_buffers()
751 fn next_event(&mut self) -> Option<VideoDecoderBackendEvent> { in next_event() argument
/external/crosvm/devices/src/virtio/media/
Ddecoder_adapter.rs20 use virtio_media::devices::video_decoder::VideoDecoderBackendEvent;
301 fn next_event(&mut self) -> Option<VideoDecoderBackendEvent> { in next_event() argument
307 Some(VideoDecoderBackendEvent::InputBufferDone { in next_event()
340 Some(VideoDecoderBackendEvent::StreamFormatChanged) in next_event()
353 Some(VideoDecoderBackendEvent::FrameCompleted { in next_event()
370 Some(VideoDecoderBackendEvent::FrameCompleted { in next_event()
/external/virtio-media/device/src/devices/
Dvideo_decoder.rs107 pub enum VideoDecoderBackendEvent { enum
163 fn next_event(&mut self) -> Option<VideoDecoderBackendEvent>; in next_event() argument
681 VideoDecoderBackendEvent::InputBufferDone(id) => { in process_events()
695 VideoDecoderBackendEvent::StreamFormatChanged => { in process_events()
718 VideoDecoderBackendEvent::FrameCompleted { in process_events()