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

1 2

  /external/libvpx/libvpx/test/
user_priv_test.cc 35 void CheckUserPrivateData(void *user_priv, int *target) {
37 EXPECT_EQ(reinterpret_cast<void *>(target), user_priv) << local
38 "user_priv pointer value does not match.";
41 // Decodes |filename|. Passes in user_priv data when calling DecodeFrame and
42 // compares the user_priv from return img with the original user_priv to see if
57 void *user_priv = reinterpret_cast<void *>(&frame_num); local
60 (frame_num == 0) ? NULL : user_priv);
71 CheckUserPrivateData(img->user_priv, NULL);
73 CheckUserPrivateData(img->user_priv, &frame_num)
    [all...]
external_frame_buffer_test.cc 160 int get_vp9_frame_buffer(void *user_priv, size_t min_size,
163 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
169 int release_vp9_frame_buffer(void *user_priv,
172 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
177 int get_vp9_zero_frame_buffer(void *user_priv, size_t min_size,
180 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
185 int get_vp9_one_less_byte_frame_buffer(void *user_priv, size_t min_size,
188 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
193 int do_not_release_vp9_frame_buffer(void *user_priv,
195 (void)user_priv;
    [all...]
decode_test_driver.h 64 void *user_priv);
98 vpx_release_frame_buffer_cb_fn_t cb_release, void *user_priv) {
101 &decoder_, cb_get, cb_release, user_priv);
decode_test_driver.cc 34 void *user_priv) {
40 user_priv, 0));
  /external/libvpx/libvpx/vpx/
vpx_decoder.h 210 * \param[in] user_priv Application specific data to associate with
223 void *user_priv,
260 typedef void (*vpx_codec_put_frame_cb_fn_t)(void *user_priv,
271 * \param[in] user_priv User's private data
281 void *user_priv);
300 typedef void (*vpx_codec_put_slice_cb_fn_t)(void *user_priv,
313 * \param[in] user_priv User's private data
323 void *user_priv);
vpx_image.h 124 void *user_priv; /**< may be set by the application to associate data member in struct:vpx_image
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vpx_decoder.h 214 * \param[in] user_priv Application specific data to associate with
227 void *user_priv,
264 typedef void (*vpx_codec_put_frame_cb_fn_t)(void *user_priv,
275 * \param[in] user_priv User's private data
285 void *user_priv);
304 typedef void (*vpx_codec_put_slice_cb_fn_t)(void *user_priv,
317 * \param[in] user_priv User's private data
327 void *user_priv);
vpx_image.h 135 void *user_priv; /**< may be set by the application to associate data member in struct:vpx_image
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
vp9_frame_buffer_pool.cc 46 // |this| will be passed as |user_priv| to VpxGetFrameBuffer.
101 int32_t Vp9FrameBufferPool::VpxGetFrameBuffer(void* user_priv,
104 RTC_DCHECK(user_priv);
106 Vp9FrameBufferPool* pool = static_cast<Vp9FrameBufferPool*>(user_priv);
121 int32_t Vp9FrameBufferPool::VpxReleaseFrameBuffer(void* user_priv,
123 RTC_DCHECK(user_priv);
vp9_frame_buffer_pool.h 85 // |user_priv| Private data passed to libvpx, InitializeVpxUsePool sets it up
91 static int32_t VpxGetFrameBuffer(void* user_priv,
97 // |user_priv| Private data passed to libvpx, InitializeVpxUsePool sets it up
101 static int32_t VpxReleaseFrameBuffer(void* user_priv,
  /external/libvpx/libvpx/vp9/decoder/
vp9_dthread.h 32 void *user_priv; member in struct:FrameWorkerData
  /external/libvpx/libvpx/vpx/src/
vpx_decoder.c 111 void *user_priv,
122 res = ctx->iface->dec.decode(get_alg_priv(ctx), data, data_sz, user_priv,
144 void *user_priv) {
154 ctx->priv->dec.put_frame_cb.user_priv = user_priv;
164 void *user_priv) {
174 ctx->priv->dec.put_slice_cb.user_priv = user_priv;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
vpx_decoder.c 120 void *user_priv,
132 user_priv, deadline);
153 void *user_priv) {
163 ctx->priv->dec.put_frame_cb.user_priv = user_priv;
173 void *user_priv) {
183 ctx->priv->dec.put_slice_cb.user_priv = user_priv;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
external_frame_buffer_test.cc 150 int get_vp9_frame_buffer(void *user_priv, size_t min_size,
153 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
159 int release_vp9_frame_buffer(void *user_priv,
162 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
167 int get_vp9_zero_frame_buffer(void *user_priv, size_t min_size,
170 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
175 int get_vp9_one_less_byte_frame_buffer(void *user_priv, size_t min_size,
178 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
183 int do_not_release_vp9_frame_buffer(void *user_priv,
185 (void)user_priv;
    [all...]
decode_test_driver.h 82 vpx_release_frame_buffer_cb_fn_t cb_release, void *user_priv) {
85 &decoder_, cb_get, cb_release, user_priv);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_context.c 42 if (!push->user_priv)
44 nv30 = container_of(push->user_priv, nv30, bufctx);
133 nv30->base.pushbuf->user_priv = push->user_priv; /* hack at validate time */
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 16 void *user_priv) {
75 img->user_priv = user_priv;
vp9_dx_iface.c 428 void *user_priv, int64_t deadline) {
452 frame_worker_data->user_priv = user_priv;
500 frame_worker_data->user_priv = user_priv;
536 frame_worker_data->user_priv);
547 void *user_priv, long deadline) {
603 res = decode_one(ctx, &data_start_copy, frame_size, user_priv,
622 res = decode_one(ctx, &data, data_sz, user_priv, deadline);
641 res = decode_one(ctx, &data_start_copy, frame_size, user_priv,
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
vp9_iface_common.h 14 void *user_priv) {
46 img->user_priv = user_priv;
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 66 void *user_priv; member in struct:vpx_codec_alg_priv
240 void *user_priv)
263 img->user_priv = user_priv;
318 void *user_priv,
494 ctx->user_priv = user_priv;
545 yuvconfig2image(&ctx->img, &sd, ctx->user_priv);
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 199 void *user_priv,
325 void *user_priv; member in struct:vpx_codec_priv_cb_pair
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderVP9HWR.h 92 friend int reallocVP9FrameBuffer(void *user_priv, unsigned int new_size, vpx_codec_frame_buffer_t *fb);
  /bionic/libc/kernel/uapi/drm/
nouveau_drm.h 62 uint64_t user_priv; member in struct:drm_nouveau_gem_pushbuf_bo
  /external/kernel-headers/original/uapi/drm/
nouveau_drm.h 67 uint64_t user_priv; member in struct:drm_nouveau_gem_pushbuf_bo
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8_dx_iface.c 72 void *user_priv; member in struct:vpx_codec_alg_priv
287 void *user_priv)
309 img->user_priv = user_priv;
359 void *user_priv,
562 ctx->user_priv = user_priv;
613 yuvconfig2image(&ctx->img, &sd, ctx->user_priv);

Completed in 1257 milliseconds

1 2