Home
last modified time | relevance | path

Searched defs:vpx_image (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/libvpx/vpx/
Dvpx_image.h99 typedef struct vpx_image { struct
100 vpx_img_fmt_t fmt; /**< Image Format */
103 unsigned int w; /**< Stored image width */
104 unsigned int h; /**< Stored image height */
107 unsigned int d_w; /**< Displayed image width */
108 unsigned int d_h; /**< Displayed image height */
111 unsigned int x_chroma_shift; /**< subsampling order, X */
112 unsigned int y_chroma_shift; /**< subsampling order, Y */
144 } vpx_image_t; /**< alias for struct vpx_image */ argument
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/
Dvpx_image.h102 typedef struct vpx_image { struct
103 vpx_img_fmt_t fmt; /**< Image Format */
106 unsigned int w; /**< Stored image width */
107 unsigned int h; /**< Stored image height */
108 unsigned int bit_depth; /**< Stored image bit-depth */
111 unsigned int d_w; /**< Displayed image width */
112 unsigned int d_h; /**< Displayed image height */
115 unsigned int x_chroma_shift; /**< subsampling order, X */
116 unsigned int y_chroma_shift; /**< subsampling order, Y */
148 } vpx_image_t; /**< alias for struct vpx_image */ argument
/external/chromium_org/media/filters/
Dvpx_video_decoder.cc382 const vpx_image_t* vpx_image = vpx_codec_get_frame(vpx_codec_, &iter); in VpxDecode() local
435 void VpxVideoDecoder::CopyVpxImageTo(const vpx_image* vpx_image, in CopyVpxImageTo()