Lines Matching defs:pctx
96 int avpriv_slicethread_create(AVSliceThread **pctx, void *priv,
117 *pctx = ctx = av_mallocz(sizeof(*ctx));
122 av_freep(pctx);
154 avpriv_slicethread_free(pctx);
201 void avpriv_slicethread_free(AVSliceThread **pctx)
206 if (!pctx || !*pctx)
209 ctx = *pctx;
233 av_freep(pctx);
238 int avpriv_slicethread_create(AVSliceThread **pctx, void *priv,
243 *pctx = NULL;
252 void avpriv_slicethread_free(AVSliceThread **pctx)
254 av_assert0(!pctx || !*pctx);