Lines Matching refs:jv
65 JVDemuxContext *jv = s->priv_data;
67 av_freep(&jv->frames);
74 JVDemuxContext *jv = s->priv_data;
115 jv->frames = av_malloc(asti->nb_index_entries * sizeof(*jv->frames));
116 if (!jv->frames)
121 JVFrame *jvf = jv->frames + i;
156 jv->state = JV_AUDIO;
162 JVDemuxContext *jv = s->priv_data;
168 while (!avio_feof(s->pb) && jv->pts < asti->nb_index_entries) {
169 const AVIndexEntry *const e = asti->index_entries + jv->pts;
170 const JVFrame *jvf = jv->frames + jv->pts;
172 switch (jv->state) {
174 jv->state++;
184 jv->state++;
202 pkt->pts = jv->pts;
210 jv->state = JV_AUDIO;
211 jv->pts++;
224 JVDemuxContext *jv = s->priv_data;
248 jv->state = JV_AUDIO;
249 jv->pts = i;
254 .name = "jv",