Lines Matching refs:flic
28 * http://www.compuphase.com/flic.htm
88 FlicDemuxContext *flic = s->priv_data;
96 flic->frame_number = 0;
111 flic->video_stream_index = st->index;
152 flic->audio_stream_index = ast->index;
197 FlicDemuxContext *flic = s->priv_data;
221 pkt->stream_index = flic->video_stream_index;
229 pkt->flags = flic->frame_number == 0 ? AV_PKT_FLAG_KEY : 0;
230 pkt->pts = flic->frame_number;
231 if (flic->frame_number == 0)
232 av_add_index_entry(s->streams[flic->video_stream_index], pkt->pos, pkt->pts, pkt->size, 0, AVINDEX_KEYFRAME);
234 flic->frame_number++;
242 pkt->stream_index = flic->audio_stream_index;
265 FlicDemuxContext *flic = s->priv_data;
271 if (!sti->index_entries || stream_index != flic->video_stream_index)
283 flic->frame_number = ts;
289 .name = "flic",