Searched refs:EncoderError (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/libvpx/test/ |
D | encode_test_driver.h | 113 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 …]
|
D | encode_test_driver.cc | 35 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/ |
D | libvda_encoder.rs | 24 .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 …]
|
D | encoder.rs | 15 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()
|
D | mod.rs | 11 pub use encoder::EncoderError; 483 fn notify_error(&self, error: EncoderError) -> Option<Vec<VideoEvtResponseType>> { in notify_error()
|
/external/libaom/libaom/test/ |
D | encode_test_driver.h | 109 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
|
D | encode_test_driver.cc | 38 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/ |
D | error.rs | 11 use crate::virtio::video::encoder::EncoderError; 18 EncoderImpl(EncoderError),
|