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

1 2 3

  /external/libaom/libaom/examples/
encoder_util.h 21 void aom_find_mismatch_high(const aom_image_t *const img1,
22 const aom_image_t *const img2, int yloc[4],
25 void aom_find_mismatch(const aom_image_t *const img1,
26 const aom_image_t *const img2, int yloc[4], int uloc[4],
30 int aom_compare_img(const aom_image_t *const img1,
31 const aom_image_t *const img2);
encoder_util.c 23 static void find_mismatch_plane(const aom_image_t *const img1,
24 const aom_image_t *const img2, int plane,
80 static void find_mismatch_helper(const aom_image_t *const img1,
81 const aom_image_t *const img2,
89 void aom_find_mismatch_high(const aom_image_t *const img1,
90 const aom_image_t *const img2, int yloc[4],
95 void aom_find_mismatch(const aom_image_t *const img1,
96 const aom_image_t *const img2, int yloc[4], int uloc[4],
101 int aom_compare_img(const aom_image_t *const img1,
102 const aom_image_t *const img2)
    [all...]
lightfield_decoder.c 63 static void aom_img_copy_tile(const aom_image_t *src, const aom_image_t *dst,
95 aom_image_t *reference_images, aom_image_t *output,
97 aom_image_t **img_ptr, int output_format) {
115 aom_image_t *img = aom_codec_get_frame(codec, &iter);
146 static void img_write_to_file(const aom_image_t *img, FILE *file,
164 aom_image_t reference_images[MAX_EXTERNAL_REFERENCES];
165 aom_image_t output;
166 aom_image_t *output_shifted = NULL
    [all...]
aom_cx_set_ref.c 74 aom_image_t enc_img, dec_img;
87 aom_image_t enc_hbd_img;
94 aom_image_t dec_hbd_img;
124 static int encode_frame(aom_codec_ctx_t *ecodec, aom_image_t *img,
128 aom_image_t *ext_ref) {
183 aom_image_t raw;
184 aom_image_t raw_shift;
185 aom_image_t ext_ref;
312 aom_image_t *frame_to_encode;
lightfield_encoder.c 55 static int aom_img_size_bytes(aom_image_t *img) {
67 static int get_frame_stats(aom_codec_ctx_t *ctx, const aom_image_t *img,
92 static int encode_frame(aom_codec_ctx_t *ctx, const aom_image_t *img,
118 static void get_raw_image(aom_image_t **frame_to_encode, aom_image_t *raw,
119 aom_image_t *raw_shift) {
130 static aom_fixed_buf_t pass0(aom_image_t *raw, FILE *infile,
134 aom_image_t *raw_shift) {
141 aom_image_t *frame_to_encode;
233 static void pass1(aom_image_t *raw, FILE *infile, const char *outfile_name
    [all...]
twopass_encoder.c 68 static int get_frame_stats(aom_codec_ctx_t *ctx, const aom_image_t *img,
93 static int encode_frame(aom_codec_ctx_t *ctx, const aom_image_t *img,
119 static aom_fixed_buf_t pass0(aom_image_t *raw, FILE *infile,
145 static void pass1(aom_image_t *raw, FILE *infile, const char *outfile_name,
187 aom_image_t raw;
decode_to_md5.c 43 static void get_image_md5(const aom_image_t *img, unsigned char digest[16]) {
107 aom_image_t *img = NULL;
  /external/libaom/libaom/common/
rawenc.h 23 void raw_write_image_file(const aom_image_t *img, const int *planes,
25 void raw_update_image_md5(const aom_image_t *img, const int *planes,
tools_common.h 145 int read_yuv_frame(struct AvxInputContext *input_ctx, aom_image_t *yuv_frame);
163 void aom_img_write(const aom_image_t *img, FILE *file);
164 int aom_img_read(aom_image_t *img, FILE *file);
167 void aom_img_upshift(aom_image_t *dst, const aom_image_t *src, int input_shift);
168 void aom_img_downshift(aom_image_t *dst, const aom_image_t *src,
170 void aom_shift_img(unsigned int output_bit_depth, aom_image_t **img_ptr,
171 aom_image_t **img_shifted_ptr);
172 void aom_img_truncate_16_to_8(aom_image_t *dst, const aom_image_t *src)
    [all...]
y4menc.h 30 void y4m_write_image_file(const aom_image_t *img, const int *planes,
32 void y4m_update_image_md5(const aom_image_t *img, const int *planes,
tools_common.c 78 int read_yuv_frame(struct AvxInputContext *input_ctx, aom_image_t *yuv_frame) {
193 void aom_img_write(const aom_image_t *img, FILE *file) {
211 int aom_img_read(aom_image_t *img, FILE *file) {
244 static void highbd_img_upshift(aom_image_t *dst, const aom_image_t *src,
279 static void lowbd_img_upshift(aom_image_t *dst, const aom_image_t *src,
316 void aom_img_upshift(aom_image_t *dst, const aom_image_t *src,
325 void aom_img_truncate_16_to_8(aom_image_t *dst, const aom_image_t *src)
    [all...]
rawenc.c 64 static void raw_write_image_file_or_md5(const aom_image_t *img,
88 void raw_write_image_file(const aom_image_t *img, const int *planes,
93 void raw_update_image_md5(const aom_image_t *img, const int *planes,
y4menc.c 97 void y4m_write_image_file(const aom_image_t *img, const int *planes,
103 void y4m_update_image_md5(const aom_image_t *img, const int *planes,
y4minput.h 69 int y4m_input_fetch_frame(y4m_input *_y4m, FILE *_fin, aom_image_t *img);
  /external/libaom/libaom/aom/
aom_image.h 192 } aom_image_t; /**< alias for struct aom_image */ typedef in typeref:struct:aom_image
220 aom_image_t *aom_img_alloc(aom_image_t *img, aom_img_fmt_t fmt,
243 aom_image_t *aom_img_wrap(aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w,
268 aom_image_t *aom_img_alloc_with_border(aom_image_t *img, aom_img_fmt_t fmt,
288 int aom_img_set_rect(aom_image_t *img, unsigned int x, unsigned int y,
298 void aom_img_flip(aom_image_t *img);
306 void aom_img_free(aom_image_t *img)
    [all...]
aom.h 111 aom_image_t img; /**< img structure to populate (output) */
135 AOM_CTRL_USE_TYPE(AV1_GET_NEW_FRAME_IMAGE, aom_image_t *)
137 AOM_CTRL_USE_TYPE(AV1_COPY_NEW_FRAME_IMAGE, aom_image_t *)
aom_decoder.h 220 aom_image_t *aom_codec_get_frame(aom_codec_ctx_t *ctx, aom_codec_iter_t *iter);
238 const aom_image_t *img);
277 const aom_image_t *img,
  /external/libaom/libaom/aom/src/
aom_image.c 29 static aom_image_t *img_alloc_helper(
30 aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w, unsigned int d_h,
102 img = (aom_image_t *)calloc(1, sizeof(aom_image_t));
108 memset(img, 0, sizeof(aom_image_t));
149 aom_image_t *aom_img_alloc(aom_image_t *img, aom_img_fmt_t fmt,
155 aom_image_t *aom_img_wrap(aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w,
163 aom_image_t *aom_img_alloc_with_border(aom_image_t *img, aom_img_fmt_t fmt
    [all...]
  /external/libaom/libaom/test/
y4m_video_source.h 27 : file_name_(file_name), input_file_(NULL), img_(new aom_image_t()),
66 virtual aom_image_t *img() const {
92 // not just a aom_image_t because of how the y4m reader manipulates
93 // aom_image_t internals,
96 aom_image_t *tmp;
114 std::unique_ptr<aom_image_t> img_;
util.h 25 inline double compute_psnr(const aom_image_t *img1, const aom_image_t *img2) {
encode_test_driver.h 97 const aom_image_t *GetPreviewFrame() {
217 virtual void MismatchHook(const aom_image_t *img1, const aom_image_t *img2);
220 virtual void DecompressedFrameHook(const aom_image_t & /*img*/,
encode_test_driver.cc 29 const aom_image_t *img = video->img();
61 const aom_image_t *img = video.img();
131 static bool compare_img(const aom_image_t *img1, const aom_image_t *img2,
158 void EncoderTest::MismatchHook(const aom_image_t *img_enc,
159 const aom_image_t *img_dec) {
268 const aom_image_t *img_enc = encoder->GetPreviewFrame();
270 const aom_image_t *img_dec = dec_iter.Next();
video_source.h 105 // aom_image_t images with associated timestamps and duration.
117 virtual aom_image_t *img() const = 0;
155 virtual aom_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; }
199 aom_image_t *img_;
  /external/libaom/libaom/aom/internal/
aom_codec_internal.h 213 typedef aom_image_t *(*aom_codec_get_frame_fn_t)(aom_codec_alg_priv_t *ctx,
247 const aom_image_t *img,
259 typedef aom_image_t *(*aom_codec_get_preview_frame_fn_t)(
  /external/libaom/libaom/aom_dsp/
grain_synthesis.h 186 const aom_image_t *src, aom_image_t *dst);

Completed in 1947 milliseconds

1 2 3