Home
last modified time | relevance | path

Searched refs:EncoderError (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/libvpx/test/
Dencode_test_driver.h113 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in Control()
118 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in Control()
123 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in Control()
128 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in Control()
133 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in Control()
138 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in Control()
143 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in Control()
148 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in Control()
154 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in Control()
159 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in Control()
[all …]
Dencode_test_driver.cc35 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in InitEncoder()
43 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in InitEncoder()
82 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in EncodeFrameInternal()
89 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in EncodeFrameInternal()
96 ASSERT_EQ(VPX_CODEC_ERROR, res) << EncoderError(); in Flush()
98 ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError(); in Flush()
/external/crosvm/devices/src/virtio/video/encoder/
Dlibvda_encoder.rs24 .map_err(|e| EncoderError::Implementation(Box::new(e)))?; in new()
33 return Err(EncoderError::PlatformFailure); in new()
79 return Err(EncoderError::PlatformFailure); in new()
181 return Err(EncoderError::InvalidArgument); in start_session()
187 .ok_or(EncoderError::InvalidArgument)? in start_session()
193 return Err(EncoderError::InvalidArgument); in start_session()
201 return Err(EncoderError::InvalidArgument); in start_session()
241 .map_err(|e| EncoderError::Implementation(Box::new(e)))?; in start_session()
288 .map_err(|e| EncoderError::Implementation(Box::new(e)))?; in encode()
306 .map_err(|e| EncoderError::Implementation(Box::new(e)))?; in use_output_buffer()
[all …]
Dencoder.rs15 pub type Result<T> = std::result::Result<T, EncoderError>;
18 pub enum EncoderError { enum
27 impl std::fmt::Display for EncoderError { implementation
29 use self::EncoderError::*; in fmt()
38 impl std::error::Error for EncoderError {} implementation
64 error: EncoderError,
146 .ok_or(EncoderError::PlatformFailure)?, in populate_src_params()
169 return Err(EncoderError::PlatformFailure); in populate_src_params()
194 .ok_or(EncoderError::PlatformFailure)?, in populate_dst_params()
Dmod.rs11 pub use encoder::EncoderError;
483 fn notify_error(&self, error: EncoderError) -> Option<Vec<VideoEvtResponseType>> { in notify_error()
/external/libaom/libaom/test/
Dencode_test_driver.h109 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in Control()
114 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in Control()
119 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in Control()
124 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in Control()
129 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in Control()
134 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in Control()
140 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in Control()
146 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in Config()
153 const char *EncoderError() { in EncoderError() function
Dencode_test_driver.cc38 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in InitEncoder()
68 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in EncodeFrameInternal()
75 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in EncodeFrameInternal()
81 ASSERT_EQ(AOM_CODEC_ERROR, res) << EncoderError(); in Flush()
83 ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); in Flush()
/external/crosvm/devices/src/virtio/video/
Derror.rs11 use crate::virtio::video::encoder::EncoderError;
18 EncoderImpl(EncoderError),