/external/libvpx/libvpx/vpx/ |
D | vpx_image.h | 142 } vpx_image_t; /**< alias for struct vpx_image */ typedef 170 vpx_image_t *vpx_img_alloc(vpx_image_t *img, 195 vpx_image_t *vpx_img_wrap(vpx_image_t *img, 216 int vpx_img_set_rect(vpx_image_t *img, 230 void vpx_img_flip(vpx_image_t *img); 238 void vpx_img_free(vpx_image_t *img);
|
D | vpx_decoder.h | 243 vpx_image_t *vpx_codec_get_frame(vpx_codec_ctx_t *ctx, 262 const vpx_image_t *img); 302 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 | 834 const vpx_image_t *img, 928 const vpx_image_t *vpx_codec_get_preview_frame(vpx_codec_ctx_t *ctx);
|
/external/libvpx/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()
|
D | vpx_decoder.c | 134 vpx_image_t *vpx_codec_get_frame(vpx_codec_ctx_t *ctx, in vpx_codec_get_frame() 136 vpx_image_t *img; in vpx_codec_get_frame()
|
/external/libvpx/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 | encode_test_driver.h | 104 const vpx_image_t *GetPreviewFrame() { in GetPreviewFrame() 202 virtual void MismatchHook(const vpx_image_t *img1, 203 const vpx_image_t *img2); 206 virtual void DecompressedFrameHook(const vpx_image_t& img, in DecompressedFrameHook()
|
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 | util.h | 23 static double compute_psnr(const vpx_image_t *img1, in compute_psnr() 24 const vpx_image_t *img2) { in compute_psnr()
|
D | decode_test_driver.h | 29 const vpx_image_t *Next() { in Next() 105 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 | 103 virtual void MismatchHook(const vpx_image_t *img1, in MismatchHook() 104 const vpx_image_t *img2) { in MismatchHook()
|
D | decode_test_driver.cc | 38 const vpx_image_t *img = NULL; in RunLoop()
|
D | md5_helper.h | 26 void Add(const vpx_image_t *img) { in Add()
|
/external/chromium_org/remoting/codec/ |
D | video_encoder_vpx.h | 12 typedef struct vpx_image vpx_image_t; typedef 53 scoped_ptr<vpx_image_t> image_;
|
D | video_decoder_vpx.h | 15 typedef struct vpx_image vpx_image_t; typedef 50 vpx_image_t* last_image_;
|
/external/libvpx/libvpx/vpx/internal/ |
D | vpx_codec_internal.h | 215 typedef vpx_image_t *(*vpx_codec_get_frame_fn_t)(vpx_codec_alg_priv_t *ctx, 252 const vpx_image_t *img, 266 typedef vpx_image_t *
|
/external/libvpx/libvpx/vp9/ |
D | vp9_iface_common.h | 13 static void yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12, in yuvconfig2image() 52 static vpx_codec_err_t image2yuvconfig(const vpx_image_t *img, in image2yuvconfig()
|
/external/libvpx/libvpx/ |
D | vp8_multi_resolution_encoder.c | 81 int (*read_frame_p)(FILE *f, vpx_image_t *img); 83 static int read_frame(FILE *f, vpx_image_t *img) { in read_frame() 97 static int read_frame_by_row(FILE *f, vpx_image_t *img) { in read_frame_by_row() 193 vpx_image_t raw[NUM_ENCODERS]; in main()
|
D | y4minput.h | 61 int y4m_input_fetch_frame(y4m_input *_y4m, FILE *_fin, vpx_image_t *img);
|
D | vp9_spatial_scalable_encoder.c | 123 static int read_frame(FILE *f, vpx_image_t *img) { in read_frame() 161 static int create_dummy_frame(vpx_image_t *img) { in create_dummy_frame() 307 vpx_image_t raw; in main()
|
/external/libvpx/libvpx/examples/ |
D | encoder_tmpl.c | 53 static int read_frame(FILE *f, vpx_image_t *img) { in read_frame() 114 vpx_image_t raw; in main()
|
/external/chromium_org/media/webm/chromeos/ |
D | webm_encoder.cc | 47 void operator()(vpx_image_t* image) { in operator ()() 87 vpx_image_t image; in EncodeFromSprite() 90 scoped_ptr<vpx_image_t, VpxImgDeleter> image_ptr(&image); in EncodeFromSprite()
|
/external/chromium_org/media/cast/video_sender/codecs/vp8/ |
D | vp8_encoder.h | 77 vpx_image_t* raw_image_;
|