Lines Matching refs:vst
285 AVStream *vst = avformat_new_stream(s, NULL);
286 if (!vst)
289 avpriv_set_pts_info(vst, 32, 1, 1000);
291 vst->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
292 vst->codecpar->codec_id = AV_CODEC_ID_WMV2;
293 vst->codecpar->codec_tag = MKBETAG('W', 'M', 'V', '2');
294 vst->codecpar->width = xmv->video_width;
295 vst->codecpar->height = xmv->video_height;
297 vst->duration = xmv->video_duration;
299 xmv->video.stream_index = vst->index;
389 AVStream *vst = s->streams[xmv->video.stream_index];
393 if (vst->codecpar->extradata_size < 4) {
394 if ((ret = ff_alloc_extradata(vst->codecpar, 4)) < 0)
398 memcpy(vst->codecpar->extradata, xmv->video.extradata, 4);