OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vpx_codec_error
(Results
1 - 12
of
12
) sorted by null
/external/libvpx/libvpx/
example_xma.c
145
printf("Failed to initialize decoder in XMA mode: %s\n",
vpx_codec_error
(&decoder));
177
printf("Failed to set mmap: %s\n",
vpx_codec_error
(&decoder));
181
printf("Failed to get mmap: %s\n",
vpx_codec_error
(&decoder));
vpxdec.c
925
fprintf(stderr, "Failed to initialize decoder: %s\n",
vpx_codec_error
(&decoder));
936
fprintf(stderr, "Failed to configure postproc: %s\n",
vpx_codec_error
(&decoder));
942
fprintf(stderr, "Failed to configure reference block visualizer: %s\n",
vpx_codec_error
(&decoder));
948
fprintf(stderr, "Failed to configure macro block visualizer: %s\n",
vpx_codec_error
(&decoder));
954
fprintf(stderr, "Failed to configure block visualizer: %s\n",
vpx_codec_error
(&decoder));
960
fprintf(stderr, "Failed to configure motion vector visualizer: %s\n",
vpx_codec_error
(&decoder));
995
vpx_codec_error
(&decoder));
1020
vpx_codec_error
(&decoder));
[
all
...]
vp8_multi_resolution_encoder.c
75
printf("%s: %s\n", s,
vpx_codec_error
(ctx));
vp9_spatial_scalable_encoder.c
118
printf("%s: %s\n", s,
vpx_codec_error
(ctx));
vp8_scalable_patterns.c
55
printf("%s: %s\n", s,
vpx_codec_error
(ctx));
vpxenc.c
94
fprintf(stderr, ": %s\n",
vpx_codec_error
(ctx));
[
all
...]
/external/libvpx/libvpx/test/
decode_test_driver.h
76
return detail ? detail :
vpx_codec_error
(&decoder_);
encode_test_driver.h
135
return detail ? detail :
vpx_codec_error
(&encoder_);
/external/libvpx/libvpx/vpx/src/
vpx_codec.c
47
case
VPX_CODEC_ERROR
:
70
const char *
vpx_codec_error
(vpx_codec_ctx_t *ctx) {
function
89
res =
VPX_CODEC_ERROR
;
117
res =
VPX_CODEC_ERROR
;
121
res =
VPX_CODEC_ERROR
;
/external/libvpx/libvpx/vpx/
vpx_codec.h
94
VPX_CODEC_ERROR
,
309
const char *
vpx_codec_error
(vpx_codec_ctx_t *ctx);
363
* transparently, but will return #
VPX_CODEC_ERROR
if the request could not
374
* \retval #
VPX_CODEC_ERROR
517
* \retval #
VPX_CODEC_ERROR
/external/chromium_org/remoting/codec/
video_decoder_vpx.cc
103
<< "Details: " <<
vpx_codec_error
(codec_.get()) << "\n"
video_encoder_vpx.cc
126
<< "Details: " <<
vpx_codec_error
(codec_.get()) << "\n"
Completed in 245 milliseconds