Lines Matching defs:vss_state
47 AVBufferRef *vss_state;
87 av_buffer_unref(&vs->vss_state);
179 struct VSState *vss_state;
182 vss_state = av_mallocz(sizeof(*vss_state));
183 if (!vss_state) {
188 vs->vss_state = av_buffer_create(NULL, 0, free_vss_state, vss_state, 0);
189 if (!vs->vss_state) {
191 av_free(vss_state);
201 if (vsscript_createScript(&vss_state->vss)) {
237 if (vsscript_evaluateScript(&vss_state->vss, buf, s->url, 0)) {
238 const char *msg = vsscript_getError(vss_state->vss);
245 vs->vscore = vsscript_getCore(vss_state->vss);
247 vs->outnode = vsscript_getOutput(vss_state->vss, 0);
320 AVBufferRef *vss_state;
330 av_buffer_unref(&d->vss_state);
377 ref_data->vss_state = av_buffer_ref(vs->vss_state);
378 if (!ref_data->vss_state) {