HomeSort by relevance Sort by last modified time
    Searched refs:vpx_image_t (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/libvpx/libvpx/
tools_common.h 130 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame);
148 // of vpx_image_t support
149 int vpx_img_plane_width(const vpx_image_t *img, int plane);
150 int vpx_img_plane_height(const vpx_image_t *img, int plane);
151 void vpx_img_write(const vpx_image_t *img, FILE *file);
152 int vpx_img_read(vpx_image_t *img, FILE *file);
157 void vpx_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift);
158 void vpx_img_downshift(vpx_image_t *dst, vpx_image_t *src, int down_shift)
    [all...]
tools_common.c 77 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame) {
204 // of vpx_image_t support
205 int vpx_img_plane_width(const vpx_image_t *img, int plane) {
212 int vpx_img_plane_height(const vpx_image_t *img, int plane) {
219 void vpx_img_write(const vpx_image_t *img, FILE *file) {
237 int vpx_img_read(vpx_image_t *img, FILE *file) {
271 static void highbd_img_upshift(vpx_image_t *dst, vpx_image_t *src,
307 static void lowbd_img_upshift(vpx_image_t *dst, vpx_image_t *src
    [all...]
y4minput.h 62 int y4m_input_fetch_frame(y4m_input *_y4m, FILE *_fin, vpx_image_t *img);
  /external/libvpx/libvpx/vpx/
vpx_image.h 132 } vpx_image_t; /**< alias for struct vpx_image */ typedef in typeref:struct:vpx_image
160 vpx_image_t *vpx_img_alloc(vpx_image_t *img, vpx_img_fmt_t fmt,
183 vpx_image_t *vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w,
200 int vpx_img_set_rect(vpx_image_t *img, unsigned int x, unsigned int y,
210 void vpx_img_flip(vpx_image_t *img);
218 void vpx_img_free(vpx_image_t *img);
vp8.h 112 vpx_image_t img; /**< reference frame data in image format */
121 vpx_image_t img; /**< img structure to populate (output) */
vpx_decoder.h 235 vpx_image_t *vpx_codec_get_frame(vpx_codec_ctx_t *ctx, vpx_codec_iter_t *iter);
253 const vpx_image_t *img);
292 const vpx_image_t *img,
  /external/libvpx/libvpx/test/
util.h 22 inline double compute_psnr(const vpx_image_t *img1, const vpx_image_t *img2) {
y4m_video_source.h 25 : file_name_(file_name), input_file_(NULL), img_(new vpx_image_t()),
63 virtual vpx_image_t *img() const {
89 // not just a vpx_image_t because of how the y4m reader manipulates
90 // vpx_image_t internals,
93 vpx_image_t *tmp;
111 testing::internal::scoped_ptr<vpx_image_t> img_;
active_map_refresh_test.cc 20 int CheckMb(const vpx_image_t &current, const vpx_image_t &previous, int mb_r,
49 void GenerateMap(int mb_rows, int mb_cols, const vpx_image_t &current,
50 const vpx_image_t &previous, uint8_t *map) {
81 vpx_image_t *current = video->img();
82 vpx_image_t *previous = y4m_holder_->img();
encode_test_driver.cc 25 const vpx_image_t *img = video->img();
74 const vpx_image_t *img = video.img();
127 static bool compare_img(const vpx_image_t *img1, const vpx_image_t *img2) {
157 void EncoderTest::MismatchHook(const vpx_image_t * /*img1*/,
158 const vpx_image_t * /*img2*/) {
244 const vpx_image_t *img_enc = encoder->GetPreviewFrame();
246 const vpx_image_t *img_dec = dec_iter.Next();
video_source.h 103 // vpx_image_t images with associated timestamps and duration.
115 virtual vpx_image_t *img() const = 0;
153 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; }
197 vpx_image_t *img_;
decode_test_driver.h 29 const vpx_image_t *Next() { return vpx_codec_get_frame(decoder_, &iter_); }
141 virtual void DecompressedFrameHook(const vpx_image_t & /*img*/,
yuv_video_source.h 61 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; }
111 vpx_image_t *img_;
encode_test_driver.h 101 const vpx_image_t *GetPreviewFrame() {
243 virtual void MismatchHook(const vpx_image_t *img1, const vpx_image_t *img2);
246 virtual void DecompressedFrameHook(const vpx_image_t & /*img*/,
md5_helper.h 22 void Add(const vpx_image_t *img) {
user_priv_test.cc 66 const vpx_image_t *img = NULL;
  /external/libvpx/libvpx/vp9/
vp9_dx_iface.h 28 vpx_image_t img;
  /external/libvpx/libvpx/vpx/src/
vpx_image.c 18 static vpx_image_t *img_alloc_helper(vpx_image_t *img, vpx_img_fmt_t fmt,
101 img = (vpx_image_t *)calloc(1, sizeof(vpx_image_t));
107 memset(img, 0, sizeof(vpx_image_t));
154 vpx_image_t *vpx_img_alloc(vpx_image_t *img, vpx_img_fmt_t fmt,
160 vpx_image_t *vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w,
168 int vpx_img_set_rect(vpx_image_t *img, unsigned int x, unsigned int y
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/dec/
SoftVPX.h 65 vpx_image_t *mImg;
  /external/libvpx/libvpx/examples/
twopass_encoder.c 69 static int get_frame_stats(vpx_codec_ctx_t *ctx, const vpx_image_t *img,
95 static int encode_frame(vpx_codec_ctx_t *ctx, const vpx_image_t *img,
123 static vpx_fixed_buf_t pass0(vpx_image_t *raw, FILE *infile,
152 static void pass1(vpx_image_t *raw, FILE *infile, const char *outfile_name,
195 vpx_image_t raw;
decode_to_md5.c 44 static void get_image_md5(const vpx_image_t *img, unsigned char digest[16]) {
108 vpx_image_t *img = NULL;
simple_decoder.c 125 vpx_image_t *img = NULL;
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 217 typedef vpx_image_t *(*vpx_codec_get_frame_fn_t)(vpx_codec_alg_priv_t *ctx,
251 const vpx_image_t *img,
264 typedef vpx_image_t *(*vpx_codec_get_preview_frame_fn_t)(
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.h 114 std::vector<vpx_image_t> raw_images_;
152 int ReturnFrame(const vpx_image_t* img,
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
vp9_impl.h 115 vpx_image_t* raw_;
157 int ReturnFrame(const vpx_image_t* img, uint32_t timeStamp);

Completed in 260 milliseconds

1 2 3