Lines Matching refs:ic
60 AVFormatContext *ic = avformat_alloc_context(); in main() local
82 ic->flags |= AVFMT_FLAG_FAST_SEEK; in main()
102 ret = avformat_open_input(&ic, filename, NULL, &format_opts); in main()
109 ret = avformat_find_stream_info(ic, NULL); in main()
116 if(firstback) avformat_seek_file(ic, -1, INT64_MIN, seekfirst, seekfirst, 0); in main()
117 else avformat_seek_file(ic, -1, seekfirst, seekfirst, INT64_MAX, 0); in main()
126 ret= av_read_frame(ic, &pkt); in main()
129 st= ic->streams[pkt.stream_index]; in main()
142 stream_id= (i>>1)%(ic->nb_streams+1) - 1; in main()
145 st= ic->streams[stream_id]; in main()
149 if(i&1) ret = avformat_seek_file(ic, stream_id, INT64_MIN, timestamp, timestamp, 0); in main()
150 else ret = avformat_seek_file(ic, stream_id, timestamp, timestamp, INT64_MAX, 0); in main()
155 avformat_close_input(&ic); in main()