/external/libvpx/libvpx/ |
D | tools_common.h | 128 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame); 147 int vpx_img_plane_width(const vpx_image_t *img, int plane); 148 int vpx_img_plane_height(const vpx_image_t *img, int plane); 149 void vpx_img_write(const vpx_image_t *img, FILE *file); 150 int vpx_img_read(vpx_image_t *img, FILE *file); 155 void vpx_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift); 156 void vpx_img_downshift(vpx_image_t *dst, vpx_image_t *src, int down_shift); 157 void vpx_img_truncate_16_to_8(vpx_image_t *dst, vpx_image_t *src);
|
D | tools_common.c | 81 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame) { in read_yuv_frame() 223 int vpx_img_plane_width(const vpx_image_t *img, int plane) { in vpx_img_plane_width() 230 int vpx_img_plane_height(const vpx_image_t *img, int plane) { in vpx_img_plane_height() 237 void vpx_img_write(const vpx_image_t *img, FILE *file) { in vpx_img_write() 255 int vpx_img_read(vpx_image_t *img, FILE *file) { in vpx_img_read() 290 static void highbd_img_upshift(vpx_image_t *dst, vpx_image_t *src, in highbd_img_upshift() 330 static void lowbd_img_upshift(vpx_image_t *dst, vpx_image_t *src, in lowbd_img_upshift() 371 void vpx_img_upshift(vpx_image_t *dst, vpx_image_t *src, in vpx_img_upshift() 380 void vpx_img_truncate_16_to_8(vpx_image_t *dst, vpx_image_t *src) { in vpx_img_truncate_16_to_8() 417 static void highbd_img_downshift(vpx_image_t *dst, vpx_image_t *src, in highbd_img_downshift() [all …]
|
D | vpxdec.c | 137 static INLINE int libyuv_scale(vpx_image_t *src, vpx_image_t *dst, in libyuv_scale() 274 static void update_image_md5(const vpx_image_t *img, const int planes[3], in update_image_md5() 293 static void write_image_file(const vpx_image_t *img, const int planes[3], in write_image_file() 531 static int img_shifted_realloc_required(const vpx_image_t *img, in img_shifted_realloc_required() 532 const vpx_image_t *shifted, in img_shifted_realloc_required() 577 vpx_image_t *scaled_img = NULL; in main_loop() 579 vpx_image_t *img_shifted = NULL; in main_loop() 882 vpx_image_t *img; in main_loop()
|
/external/libvpx/libvpx/vpx/ |
D | vpx_image.h | 133 } vpx_image_t; /**< alias for struct vpx_image */ typedef 161 vpx_image_t *vpx_img_alloc(vpx_image_t *img, 186 vpx_image_t *vpx_img_wrap(vpx_image_t *img, 207 int vpx_img_set_rect(vpx_image_t *img, 221 void vpx_img_flip(vpx_image_t *img); 229 void vpx_img_free(vpx_image_t *img);
|
D | vpx_decoder.h | 242 vpx_image_t *vpx_codec_get_frame(vpx_codec_ctx_t *ctx, 261 const vpx_image_t *img); 301 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) */
|
/external/libvpx/libvpx/vpx/src/ |
D | vpx_image.c | 18 static vpx_image_t *img_alloc_helper(vpx_image_t *img, in img_alloc_helper() 136 img = (vpx_image_t *)calloc(1, sizeof(vpx_image_t)); in img_alloc_helper() 143 memset(img, 0, sizeof(vpx_image_t)); in img_alloc_helper() 183 vpx_image_t *vpx_img_alloc(vpx_image_t *img, in vpx_img_alloc() 191 vpx_image_t *vpx_img_wrap(vpx_image_t *img, in vpx_img_wrap() 202 int vpx_img_set_rect(vpx_image_t *img, in vpx_img_set_rect() 255 void vpx_img_flip(vpx_image_t *img) { in vpx_img_flip() 277 void vpx_img_free(vpx_image_t *img) { in vpx_img_free()
|
/external/libvpx/libvpx/test/ |
D | active_map_refresh_test.cc | 20 int CheckMb(const vpx_image_t ¤t, const vpx_image_t &previous, in CheckMb() 48 void GenerateMap(int mb_rows, int mb_cols, const vpx_image_t ¤t, in GenerateMap() 49 const vpx_image_t &previous, uint8_t *map) { in GenerateMap() 80 vpx_image_t *current = video->img(); in PreEncodeFrameHook() 81 vpx_image_t *previous = y4m_holder_->img(); in PreEncodeFrameHook()
|
D | encode_test_driver.cc | 25 const vpx_image_t *img = video->img(); in InitEncoder() 84 const vpx_image_t *img = video.img(); in EncodeFrameInternal() 143 static bool compare_img(const vpx_image_t *img1, in compare_img() 144 const vpx_image_t *img2) { in compare_img() 170 void EncoderTest::MismatchHook(const vpx_image_t* /*img1*/, in MismatchHook() argument 171 const vpx_image_t* /*img2*/) { in MismatchHook() 255 const vpx_image_t *img_enc = encoder->GetPreviewFrame(); in RunLoop() 257 const vpx_image_t *img_dec = dec_iter.Next(); in RunLoop()
|
D | y4m_video_source.h | 28 img_(new vpx_image_t()), in Y4mVideoSource() 71 virtual vpx_image_t *img() const { in img() 101 vpx_image_t *tmp; in SwapBuffers() 119 testing::internal::scoped_ptr<vpx_image_t> img_;
|
D | encode_test_driver.h | 110 const vpx_image_t *GetPreviewFrame() { in GetPreviewFrame() 244 virtual void MismatchHook(const vpx_image_t *img1, 245 const vpx_image_t *img2); 248 virtual void DecompressedFrameHook(const vpx_image_t& /*img*/, in DecompressedFrameHook() argument
|
D | util.h | 22 inline double compute_psnr(const vpx_image_t *img1, const vpx_image_t *img2) { in compute_psnr()
|
D | video_source.h | 119 virtual vpx_image_t *img() const = 0; 161 virtual vpx_image_t *img() const { in img() 207 vpx_image_t *img_;
|
D | yuv_video_source.h | 70 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img() 137 vpx_image_t *img_;
|
D | vp9_frame_parallel_test.cc | 81 const vpx_image_t *img; in DecodeFileWithPause() 162 const vpx_image_t *img; in DecodeFile()
|
D | byte_alignment_test.cc | 119 const vpx_image_t *img; in CheckDecodedFrames() 141 void CheckMd5(const vpx_image_t &img) { in CheckMd5()
|
D | decode_test_driver.h | 29 const vpx_image_t *Next() { in Next() 158 virtual void DecompressedFrameHook(const vpx_image_t& /*img*/, in DecompressedFrameHook() argument
|
/external/libvpx/libvpx/examples/ |
D | twopass_encoder.c | 68 const vpx_image_t *img, in get_frame_stats() 98 const vpx_image_t *img, in encode_frame() 129 static vpx_fixed_buf_t pass0(vpx_image_t *raw, in pass0() 158 static void pass1(vpx_image_t *raw, in pass1() 204 vpx_image_t raw; in main()
|
D | decode_to_md5.c | 44 static void get_image_md5(const vpx_image_t *img, unsigned char digest[16]) { in get_image_md5() 112 vpx_image_t *img = NULL; in main()
|
D | vp9_lossless_encoder.c | 31 vpx_image_t *img, in encode_frame() 67 vpx_image_t raw; in main()
|
D | vp8cx_set_ref.c | 68 vpx_image_t *img, in encode_frame() 104 vpx_image_t raw; in main()
|
/external/libvpx/libvpx/vp9/ |
D | vp9_dx_iface.h | 24 vpx_image_t img; 35 vpx_image_t img;
|
/external/libvpx/libvpx/vpx/internal/ |
D | vpx_codec_internal.h | 217 typedef vpx_image_t *(*vpx_codec_get_frame_fn_t)(vpx_codec_alg_priv_t *ctx, 253 const vpx_image_t *img, 267 typedef vpx_image_t *
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/ |
D | vp9_impl.h | 115 vpx_image_t* raw_; 157 int ReturnFrame(const vpx_image_t* img, uint32_t timeStamp);
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
D | vp8_impl.h | 114 std::vector<vpx_image_t> raw_images_; 152 int ReturnFrame(const vpx_image_t* img,
|