Lines Matching refs:bfi
24 * @brief Brute Force & Ignorance (.bfi) file demuxer
54 BFIContext *bfi = s->priv_data;
76 bfi->nframes = avio_rl32(pb);
77 if (bfi->nframes < 0)
105 vstream->duration = bfi->nframes;
122 BFIContext *bfi = s->priv_data;
125 if (bfi->nframes == 0 || avio_feof(pb)) {
130 if (!bfi->avflag) {
148 bfi->video_size = chunk_size - video_offset;
155 pkt->pts = bfi->audio_frame;
156 bfi->audio_frame += ret;
157 } else if (bfi->video_size > 0) {
160 ret = av_get_packet(pb, pkt, bfi->video_size);
164 pkt->pts = bfi->video_frame;
165 bfi->video_frame += ret / bfi->video_size;
168 bfi->nframes--;
174 bfi->avflag = !bfi->avflag;
175 pkt->stream_index = bfi->avflag;
180 .name = "bfi",