Home
last modified time | relevance | path

Searched refs:aom_codec_err_to_string (Results 1 – 7 of 7) sorted by relevance

/external/libaom/aom/src/
Daom_codec.c35 const char *aom_codec_err_to_string(aom_codec_err_t err) { in aom_codec_err_to_string() function
56 return (ctx) ? aom_codec_err_to_string(ctx->err) in aom_codec_error()
57 : aom_codec_err_to_string(AOM_CODEC_INVALID_PARAM); in aom_codec_error()
/external/libaom/aom/
Dexports_com4 text aom_codec_err_to_string
Daom_codec.h408 const char *aom_codec_err_to_string(aom_codec_err_t err);
/external/libaom/test/
Ddecode_test_driver.cc53 << "Peek return failed: " << aom_codec_err_to_string(res_peek); in HandlePeekResult()
/external/libaom/
Dusage.dox94 aom_codec_err_to_string() methods. The difference between these two methods is
96 whereas aom_codec_err_to_string() can be used in cases where an error occurs
/external/libaom/examples/
Dsvc_encoder_rtc.c1229 die("Failed to get config: %s\n", aom_codec_err_to_string(res)); in main()
/external/libaom/apps/
Daomenc.c807 if (res) fatal("Failed to get config: %s\n", aom_codec_err_to_string(res)); in new_stream()