Lines Matching defs:vst
54 AVStream *vst = avformat_new_stream(s, NULL);
55 if (!vst)
57 vst->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
61 vst->codecpar->codec_id = AV_CODEC_ID_MPEG4;
64 vst->codecpar->codec_id = AV_CODEC_ID_H264;
71 vst->codecpar->width = avio_rl32(pb);
72 vst->codecpar->height = avio_rl32(pb);
76 avpriv_set_pts_info(vst, 32, tb_num, tb_den);
77 vst->nb_frames = index_cnt;
78 vst->duration = index_cnt;
109 av_add_index_entry(vst, pos, i, size, 0, flags);