Searched refs:user_priv (Results 1 - 25 of 33) sorted by relevance

12

/external/libvpx/libvpx/test/
H A Duser_priv_test.cc35 void CheckUserPrivateData(void *user_priv, int *target) { argument
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,
[all...]
H A Dexternal_frame_buffer_test.cc162 int get_vp9_frame_buffer(void *user_priv, size_t min_size, argument
165 reinterpret_cast<ExternalFrameBufferList *>(user_priv);
171 int release_vp9_frame_buffer(void *user_priv, vpx_codec_frame_buffer_t *fb) { argument
173 reinterpret_cast<ExternalFrameBufferList *>(user_priv);
178 int get_vp9_zero_frame_buffer(void *user_priv, size_t min_size, argument
181 reinterpret_cast<ExternalFrameBufferList *>(user_priv);
186 int get_vp9_one_less_byte_frame_buffer(void *user_priv, size_t min_size, argument
189 reinterpret_cast<ExternalFrameBufferList *>(user_priv);
194 int do_not_release_vp9_frame_buffer(void *user_priv, argument
196 (void)user_priv;
256 GetVP9FrameBuffer(void *user_priv, size_t min_size, vpx_codec_frame_buffer_t *fb) argument
265 ReleaseVP9FrameBuffer(void *user_priv, vpx_codec_frame_buffer_t *fb) argument
[all...]
H A Ddecode_test_driver.h59 void *user_priv);
85 vpx_release_frame_buffer_cb_fn_t cb_release, void *user_priv) {
88 user_priv);
83 SetFrameBufferFunctions( vpx_get_frame_buffer_cb_fn_t cb_get, vpx_release_frame_buffer_cb_fn_t cb_release, void *user_priv) argument
H A Ddecode_test_driver.cc33 void *user_priv) {
38 &decoder_, cxdata, static_cast<unsigned int>(size), user_priv, 0));
32 DecodeFrame(const uint8_t *cxdata, size_t size, void *user_priv) argument
/external/libvpx/libvpx/vpx/
H A Dvpx_decoder.h205 * \param[in] user_priv Application specific data to associate with
216 unsigned int data_sz, void *user_priv,
252 typedef void (*vpx_codec_put_frame_cb_fn_t)(void *user_priv,
262 * \param[in] user_priv User's private data
272 void *user_priv);
291 typedef void (*vpx_codec_put_slice_cb_fn_t)(void *user_priv,
303 * \param[in] user_priv User's private data
313 void *user_priv);
H A Dvpx_image.h124 void *user_priv; member in struct:vpx_image
H A Dvpx_encoder.h222 void *user_priv; /**< Pointer to private data */ member in struct:vpx_codec_enc_output_cx_cb_pair
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/
H A Dvp9_frame_buffer_pool.cc46 // |this| will be passed as |user_priv| to VpxGetFrameBuffer.
101 int32_t Vp9FrameBufferPool::VpxGetFrameBuffer(void* user_priv, argument
104 RTC_DCHECK(user_priv);
106 Vp9FrameBufferPool* pool = static_cast<Vp9FrameBufferPool*>(user_priv);
121 int32_t Vp9FrameBufferPool::VpxReleaseFrameBuffer(void* user_priv, argument
123 RTC_DCHECK(user_priv);
H A Dvp9_frame_buffer_pool.h85 // |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/
H A Dvp9_dx_iface.h23 void *user_priv; member in struct:vpx_codec_alg_priv
H A Dvp9_iface_common.h16 void *user_priv) {
75 img->user_priv = user_priv;
15 yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12, void *user_priv) argument
H A Dvp9_dx_iface.c274 void *user_priv, int64_t deadline) {
290 ctx->user_priv = user_priv;
311 void *user_priv, long deadline) {
352 res = decode_one(ctx, &data_start_copy, frame_size, user_priv, deadline);
361 decode_one(ctx, &data_start, frame_size, user_priv, deadline);
394 yuvconfig2image(&ctx->img, &sd, ctx->user_priv);
272 decode_one(vpx_codec_alg_priv_t *ctx, const uint8_t **data, unsigned int data_sz, void *user_priv, int64_t deadline) argument
309 decoder_decode(vpx_codec_alg_priv_t *ctx, const uint8_t *data, unsigned int data_sz, void *user_priv, long deadline) argument
H A Dvp9_cx_iface.c1252 &pkt, ctx->output_cx_pkt_cb.user_priv);
1285 ctx->output_cx_pkt_cb.user_priv);
1568 ctx->output_cx_pkt_cb.user_priv = cbp->user_priv;
/external/libvpx/libvpx/vpx/src/
H A Dvpx_decoder.c105 unsigned int data_sz, void *user_priv,
116 res = ctx->iface->dec.decode(get_alg_priv(ctx), data, data_sz, user_priv,
136 void *user_priv) {
146 ctx->priv->dec.put_frame_cb.user_priv = user_priv;
155 void *user_priv) {
165 ctx->priv->dec.put_slice_cb.user_priv = user_priv;
104 vpx_codec_decode(vpx_codec_ctx_t *ctx, const uint8_t *data, unsigned int data_sz, void *user_priv, long deadline) argument
134 vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx, vpx_codec_put_frame_cb_fn_t cb, void *user_priv) argument
153 vpx_codec_register_put_slice_cb(vpx_codec_ctx_t *ctx, vpx_codec_put_slice_cb_fn_t cb, void *user_priv) argument
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_context.c42 if (!push->user_priv)
44 nv30 = container_of(push->user_priv, nv30, bufctx);
174 if (nv30->screen->base.pushbuf->user_priv == &nv30->bufctx)
175 nv30->screen->base.pushbuf->user_priv = NULL;
220 nv30->base.pushbuf->user_priv = &nv30->bufctx; /* hack at validate time */
H A Dnv30_winsys.h32 struct nouveau_bufctx **pctx = push->user_priv;
/external/libvpx/libvpx/vp8/
H A Dvp8_dx_iface.c55 void *user_priv; member in struct:vpx_codec_alg_priv
201 void *user_priv) {
223 img->user_priv = user_priv;
269 void *user_priv, long deadline) {
434 ctx->user_priv = user_priv;
467 yuvconfig2image(&ctx->img, &sd, ctx->user_priv);
200 yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12, void *user_priv) argument
267 vp8_decode(vpx_codec_alg_priv_t *ctx, const uint8_t *data, unsigned int data_sz, void *user_priv, long deadline) argument
/external/libvpx/libvpx/vpx/internal/
H A Dvpx_codec_internal.h198 void *user_priv,
328 void *user_priv; member in struct:vpx_codec_priv_cb_pair
/external/kernel-headers/original/uapi/drm/
H A Dnouveau_drm.h73 __u64 user_priv; member in struct:drm_nouveau_gem_pushbuf_bo
/external/libdrm/nouveau/
H A Dpushbuf.c132 kbo = (void *)(unsigned long)kref->user_priv;
203 kref->user_priv = (unsigned long)bo;
297 bo = (void *)(unsigned long)kref->user_priv;
370 bo = (void *)(unsigned long)kref->user_priv;
414 bo = (void *)(unsigned long)kref->user_priv;
445 struct nouveau_bo *bo = (void *)(unsigned long)kref->user_priv;
616 unsigned long priv = kref++->user_priv;
H A Dnouveau.h197 void *user_priv; member in struct:nouveau_pushbuf
/external/libdrm/include/drm/
H A Dnouveau_drm.h145 uint64_t user_priv; member in struct:drm_nouveau_gem_pushbuf_bo
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_local.h92 return push->user_priv;
H A Dnv04_render.c173 nouveau_pushbuf_bufctx(push, push->user_priv);
H A Dnouveau_context.c176 nctx->hw.pushbuf->user_priv = nctx->hw.bufctx;

Completed in 1490 milliseconds

12