Searched refs:avf2 (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | fifo.c | 118 AVFormatContext *avf2 = fifo->avf; in fifo_thread_write_header() local 126 ret = ff_format_output_open(avf2, avf->url, &format_options); in fifo_thread_write_header() 133 for (i = 0;i < avf2->nb_streams; i++) in fifo_thread_write_header() 134 avf2->streams[i]->cur_dts = 0; in fifo_thread_write_header() 136 ret = avformat_write_header(avf2, &format_options); in fifo_thread_write_header() 144 av_log(avf2, AV_LOG_ERROR, "Unknown option '%s'\n", entry->key); in fifo_thread_write_header() 157 AVFormatContext *avf2 = fifo->avf; in fifo_thread_flush_output() local 159 return av_write_frame(avf2, NULL); in fifo_thread_flush_output() 166 AVFormatContext *avf2 = fifo->avf; in fifo_thread_write_packet() local 183 dst_tb = avf2->streams[s_idx]->time_base; in fifo_thread_write_packet() [all …]
|
D | tee.c | 166 AVFormatContext *avf2 = NULL; in open_slave() local 233 ret = avformat_alloc_output_context2(&avf2, NULL, in open_slave() 237 tee_slave->avf = avf2; in open_slave() 238 av_dict_copy(&avf2->metadata, avf->metadata, 0); in open_slave() 239 avf2->opaque = avf->opaque; in open_slave() 240 avf2->io_open = avf->io_open; in open_slave() 241 avf2->io_close = avf->io_close; in open_slave() 242 avf2->interrupt_callback = avf->interrupt_callback; in open_slave() 243 avf2->flags = avf->flags; in open_slave() 244 avf2->strict_std_compliance = avf->strict_std_compliance; in open_slave() [all …]
|