Home
last modified time | relevance | path

Searched defs:FfmpegDecoderSession (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/crosvm/devices/src/virtio/video/decoder/backend/
H A Dffmpeg.rs116 pub struct FfmpegDecoderSession { struct
118 event_queue: Arc<SyncEventQueue<DecoderEvent>>,
121 codec_jobs: VecDeque<CodecJob>,
123 is_flushing: bool,
126 state: SessionState,
128 current_visible_res: (usize, usize),
131 context: AvCodecContext,
134 avframe: Option<AvFrame>,
181 impl FfmpegDecoderSession { implementation
418 impl DecoderSession for FfmpegDecoderSession { implementation
/aosp_15_r20/external/virtio-media/extras/ffmpeg-decoder/src/
H A Dlib.rs293 pub struct FfmpegDecoderSession { struct
296 input_format: (OutputFormat, AvCodec),
298 output_format: CaptureFormat,
300 coded_size: (u32, u32),
304 stream_params: StreamParams,
307 context: Option<DecodingContext>,
310 available_output_frames: VecDeque<AvailableOutputFrame>,
313 events: EventQueue<VideoDecoderBackendEvent>,
370 impl FfmpegDecoderSession { impl
643 impl VideoDecoderBackendSession for FfmpegDecoderSession { implementation