Lines Matching defs:vst
76 AVStream *vst, *ast;
84 vst = avformat_new_stream(s, NULL);
85 if (!ast || !vst)
89 vst->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
90 vst->codecpar->codec_id = AV_CODEC_ID_JV;
91 vst->codecpar->codec_tag = 0; /* no fourcc */
92 vst->codecpar->width = avio_rl16(pb);
93 vst->codecpar->height = avio_rl16(pb);
94 vst->duration =
95 vst->nb_frames =
97 avpriv_set_pts_info(vst, 64, avio_rl16(pb), 1000);