Lines Matching defs:vst
74 AVStream *vst, *ast;
80 vst = avformat_new_stream(ctx, 0);
81 if (!vst)
84 vst->start_time = 0;
85 vst->duration =
86 vst->nb_frames = avio_rl16(pb);
120 vst->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
121 vst->codecpar->codec_id = AV_CODEC_ID_GDV;
122 vst->codecpar->codec_tag = 0;
123 vst->codecpar->width = avio_rl16(pb);
124 vst->codecpar->height = avio_rl16(pb);
126 if (vst->codecpar->width == 0 || vst->codecpar->height == 0) {
134 vst->codecpar->width = FixedSize[i].width;
135 vst->codecpar->height = FixedSize[i].height;
138 avpriv_set_pts_info(vst, 64, 1, fps);