/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/ |
D | vpx_image.h | 146 } vpx_image_t; /**< alias for struct vpx_image */ typedef 174 vpx_image_t *vpx_img_alloc(vpx_image_t *img, 199 vpx_image_t *vpx_img_wrap(vpx_image_t *img, 220 int vpx_img_set_rect(vpx_image_t *img, 234 void vpx_img_flip(vpx_image_t *img); 242 void vpx_img_free(vpx_image_t *img);
|
D | vpx_decoder.h | 246 vpx_image_t *vpx_codec_get_frame(vpx_codec_ctx_t *ctx, 265 const vpx_image_t *img); 305 const vpx_image_t *img,
|
D | vp8.h | 107 vpx_image_t img; /**< reference frame data in image format */ 116 vpx_image_t img; /**< img structure to populate (output) */
|
D | vpx_encoder.h | 842 const vpx_image_t *img, 936 const vpx_image_t *vpx_codec_get_preview_frame(vpx_codec_ctx_t *ctx);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/ |
D | vpx_image.c | 43 static vpx_image_t *img_alloc_helper(vpx_image_t *img, in img_alloc_helper() 137 img = (vpx_image_t *)calloc(1, sizeof(vpx_image_t)); in img_alloc_helper() 144 memset(img, 0, sizeof(vpx_image_t)); in img_alloc_helper() 178 vpx_image_t *vpx_img_alloc(vpx_image_t *img, in vpx_img_alloc() 186 vpx_image_t *vpx_img_wrap(vpx_image_t *img, in vpx_img_wrap() 197 int vpx_img_set_rect(vpx_image_t *img, in vpx_img_set_rect() 249 void vpx_img_flip(vpx_image_t *img) { in vpx_img_flip() 271 void vpx_img_free(vpx_image_t *img) { in vpx_img_free()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
D | tools_common.h | 123 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame); 142 int vpx_img_plane_width(const vpx_image_t *img, int plane); 143 int vpx_img_plane_height(const vpx_image_t *img, int plane); 144 void vpx_img_write(const vpx_image_t *img, FILE *file); 145 int vpx_img_read(vpx_image_t *img, FILE *file);
|
D | tools_common.c | 81 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame) { in read_yuv_frame() 206 int vpx_img_plane_width(const vpx_image_t *img, int plane) { in vpx_img_plane_width() 213 int vpx_img_plane_height(const vpx_image_t *img, int plane) { in vpx_img_plane_height() 220 void vpx_img_write(const vpx_image_t *img, FILE *file) { in vpx_img_write() 237 int vpx_img_read(vpx_image_t *img, FILE *file) { in vpx_img_read()
|
D | y4minput.h | 67 int y4m_input_fetch_frame(y4m_input *_y4m, FILE *_fin, vpx_image_t *img);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
D | encode_test_driver.cc | 40 const vpx_image_t *img = video.img(); in EncodeFrameInternal() 107 static bool compare_img(const vpx_image_t *img1, in compare_img() 108 const vpx_image_t *img2) { in compare_img() 133 void EncoderTest::MismatchHook(const vpx_image_t *img1, in MismatchHook() 134 const vpx_image_t *img2) { in MismatchHook() 198 const vpx_image_t *img_enc = encoder->GetPreviewFrame(); in RunLoop() 200 const vpx_image_t *img_dec = dec_iter.Next(); in RunLoop()
|
D | y4m_video_source.h | 27 img_(new vpx_image_t()), in Y4mVideoSource() 64 virtual vpx_image_t *img() const { in img() 100 testing::internal::scoped_ptr<vpx_image_t> img_;
|
D | encode_test_driver.h | 107 const vpx_image_t *GetPreviewFrame() { in GetPreviewFrame() 217 virtual void MismatchHook(const vpx_image_t *img1, 218 const vpx_image_t *img2); 221 virtual void DecompressedFrameHook(const vpx_image_t& img, in DecompressedFrameHook()
|
D | util.h | 22 static double compute_psnr(const vpx_image_t *img1, in compute_psnr() 23 const vpx_image_t *img2) { in compute_psnr()
|
D | video_source.h | 66 virtual vpx_image_t *img() const = 0; 103 virtual vpx_image_t *img() const { in img() 134 vpx_image_t *img_;
|
D | decode_test_driver.h | 29 const vpx_image_t *Next() { in Next() 118 virtual void DecompressedFrameHook(const vpx_image_t& img, in DecompressedFrameHook()
|
D | i420_video_source.h | 67 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img() 105 vpx_image_t *img_;
|
D | error_resilience_test.cc | 104 virtual void MismatchHook(const vpx_image_t *img1, in MismatchHook() 105 const vpx_image_t *img2) { in MismatchHook()
|
D | decode_test_driver.cc | 41 const vpx_image_t *img = NULL; in RunLoop()
|
D | md5_helper.h | 24 void Add(const vpx_image_t *img) { in Add()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
D | decode_to_md5.c | 46 static void get_image_md5(const vpx_image_t *img, unsigned char digest[16]) { in get_image_md5() 114 vpx_image_t *img = NULL; in main()
|
D | twopass_encoder.c | 70 const vpx_image_t *img, in get_frame_stats() 95 const vpx_image_t *img, in encode_frame() 127 vpx_image_t raw; in main()
|
D | vp8cx_set_ref.c | 69 vpx_image_t *img, in encode_frame() 100 vpx_image_t raw; in main()
|
D | simple_encoder.c | 122 vpx_image_t *img, in encode_frame() 154 vpx_image_t raw; in main()
|
D | vp8_multi_resolution_encoder.c | 67 int (*read_frame_p)(FILE *f, vpx_image_t *img); 69 static int read_frame(FILE *f, vpx_image_t *img) { in read_frame() 83 static int read_frame_by_row(FILE *f, vpx_image_t *img) { in read_frame_by_row() 179 vpx_image_t raw[NUM_ENCODERS]; in main()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/internal/ |
D | vpx_codec_internal.h | 218 typedef vpx_image_t *(*vpx_codec_get_frame_fn_t)(vpx_codec_alg_priv_t *ctx, 285 const vpx_image_t *img, 299 typedef vpx_image_t *
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/ |
D | vp9_iface_common.h | 13 static void yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12, in yuvconfig2image() 53 static vpx_codec_err_t image2yuvconfig(const vpx_image_t *img, in image2yuvconfig()
|