Home
last modified time | relevance | path

Searched refs:avf (Results 1 – 25 of 435) sorted by relevance

12345678910>>...18

/dports/emulators/vice/vice-3.5/src/lib/libffmpeg/libavformat/
H A Dconcatdec.c61 AVFormatContext *avf; member
214 st = avf->streams[i]; in match_streams_one_to_one()
291 if (cat->avf) in open_file()
295 if (!cat->avf) in open_file()
298 cat->avf->interrupt_callback = avf->interrupt_callback; in open_file()
320 if (cat->avf) in concat_read_close()
387 avf->streams[avf->nb_streams - 1]->id = in concat_read_header()
419 avf->duration = time; in concat_read_header()
430 concat_read_close(avf); in concat_read_header()
605 cat->avf = NULL; in concat_seek()
[all …]
H A Dsrtenc.c37 static int srt_write_header(AVFormatContext *avf) in srt_write_header() argument
39 SRTContext *srt = avf->priv_data; in srt_write_header()
41 if (avf->nb_streams != 1 || in srt_write_header()
43 av_log(avf, AV_LOG_ERROR, in srt_write_header()
50 av_log(avf, AV_LOG_ERROR, in srt_write_header()
55 avpriv_set_pts_info(avf->streams[0], 64, 1, 1000); in srt_write_header()
62 SRTContext *srt = avf->priv_data; in srt_write_packet()
82 av_log(avf, AV_LOG_WARNING, in srt_write_packet()
96 avio_printf(avf->pb, "\n"); in srt_write_packet()
98 avio_write(avf->pb, pkt->data, pkt->size); in srt_write_packet()
[all …]
H A Dtee.c31 AVFormatContext *avf; member
173 st = avf->streams[i]; in open_slave()
175 ret = avformat_match_stream_specifier(avf, avf->streams[i], select); in open_slave()
222 tee_slave->avf = avf2; in open_slave()
295 avf2 = tee->slaves[i].avf; in close_slaves()
311 tee->slaves[i].avf = NULL; in close_slaves()
319 slave->avf->filename, slave->avf->oformat->name); in log_slave()
384 close_slaves(avf); in tee_write_header()
435 avf2 = tee->slaves[i].avf; in tee_write_trailer()
446 close_slaves(avf); in tee_write_trailer()
[all …]
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/lib/libffmpeg/libavformat/
H A Dconcatdec.c61 AVFormatContext *avf; member
214 st = avf->streams[i]; in match_streams_one_to_one()
291 if (cat->avf) in open_file()
295 if (!cat->avf) in open_file()
298 cat->avf->interrupt_callback = avf->interrupt_callback; in open_file()
320 if (cat->avf) in concat_read_close()
387 avf->streams[avf->nb_streams - 1]->id = in concat_read_header()
419 avf->duration = time; in concat_read_header()
430 concat_read_close(avf); in concat_read_header()
605 cat->avf = NULL; in concat_seek()
[all …]
H A Dsrtenc.c37 static int srt_write_header(AVFormatContext *avf) in srt_write_header() argument
39 SRTContext *srt = avf->priv_data; in srt_write_header()
41 if (avf->nb_streams != 1 || in srt_write_header()
43 av_log(avf, AV_LOG_ERROR, in srt_write_header()
50 av_log(avf, AV_LOG_ERROR, in srt_write_header()
55 avpriv_set_pts_info(avf->streams[0], 64, 1, 1000); in srt_write_header()
62 SRTContext *srt = avf->priv_data; in srt_write_packet()
82 av_log(avf, AV_LOG_WARNING, in srt_write_packet()
96 avio_printf(avf->pb, "\n"); in srt_write_packet()
98 avio_write(avf->pb, pkt->data, pkt->size); in srt_write_packet()
[all …]
/dports/multimedia/handbrake/ffmpeg-4.4/libavformat/
H A Dconcatdec.c62 AVFormatContext *avf; member
321 if (avf->duration > 0) in get_best_effort_duration()
334 if (cat->avf) in open_file()
338 if (!cat->avf) in open_file()
341 cat->avf->flags |= avf->flags & ~AVFMT_FLAG_CUSTOM_IO; in open_file()
342 cat->avf->interrupt_callback = avf->interrupt_callback; in open_file()
344 if ((ret = ff_copy_whiteblacklists(cat->avf, avf)) < 0) in open_file()
390 if (cat->avf) in concat_read_close()
469 avf->streams[avf->nb_streams - 1]->id = in concat_read_header()
581 if (!cat->avf) in concat_read_packet()
[all …]
H A Dfifo.c38 AVFormatContext *avf; member
124 AVFormatContext *avf = ctx->avf; in fifo_thread_write_header() local
136 av_log(avf, AV_LOG_ERROR, "Error opening %s: %s\n", avf->url, in fifo_thread_write_header()
163 AVFormatContext *avf = ctx->avf; in fifo_thread_flush_output() local
181 AVFormatContext *avf = ctx->avf; in fifo_thread_write_packet() local
214 AVFormatContext *avf = ctx->avf; in fifo_thread_write_trailer() local
285 AVFormatContext *avf = ctx->avf; in fifo_thread_process_recovery_failure() local
316 AVFormatContext *avf = ctx->avf; in fifo_thread_attempt_recovery() local
387 AVFormatContext *avf = ctx->avf; in fifo_thread_recover() local
421 fifo_thread_ctx.avf = avf; in fifo_consumer_thread()
[all …]
H A Dtee.c39 AVFormatContext *avf; member
123 AVFormatContext *avf; in close_slave() local
127 avf = tee_slave->avf; in close_slave()
128 if (!avf) in close_slave()
141 ff_format_io_close(avf, &avf->pb); in close_slave()
143 tee_slave->avf = NULL; in close_slave()
237 tee_slave->avf = avf2; in open_slave()
243 avf2->flags = avf->flags; in open_slave()
267 ret = avformat_match_stream_specifier(avf, avf->streams[i], subselect); in open_slave()
416 slave->avf->url, slave->avf->oformat->name); in log_slave()
[all …]
H A Dsrtenc.c37 static int srt_write_header(AVFormatContext *avf) in srt_write_header() argument
39 SRTContext *srt = avf->priv_data; in srt_write_header()
41 if (avf->nb_streams != 1 || in srt_write_header()
43 av_log(avf, AV_LOG_ERROR, in srt_write_header()
49 av_log(avf, AV_LOG_ERROR, in srt_write_header()
54 avpriv_set_pts_info(avf->streams[0], 64, 1, 1000); in srt_write_header()
61 SRTContext *srt = avf->priv_data; in srt_write_packet()
84 av_log(avf, AV_LOG_WARNING, in srt_write_packet()
98 avio_printf(avf->pb, "\n"); in srt_write_packet()
100 avio_write(avf->pb, pkt->data, pkt->size); in srt_write_packet()
[all …]
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavformat/
H A Dconcatdec.c62 AVFormatContext *avf; member
321 if (avf->duration > 0) in get_best_effort_duration()
334 if (cat->avf) in open_file()
338 if (!cat->avf) in open_file()
341 cat->avf->flags |= avf->flags & ~AVFMT_FLAG_CUSTOM_IO; in open_file()
342 cat->avf->interrupt_callback = avf->interrupt_callback; in open_file()
344 if ((ret = ff_copy_whiteblacklists(cat->avf, avf)) < 0) in open_file()
390 if (cat->avf) in concat_read_close()
469 avf->streams[avf->nb_streams - 1]->id = in concat_read_header()
581 if (!cat->avf) in concat_read_packet()
[all …]
H A Dfifo.c38 AVFormatContext *avf; member
124 AVFormatContext *avf = ctx->avf; in fifo_thread_write_header() local
136 av_log(avf, AV_LOG_ERROR, "Error opening %s: %s\n", avf->url, in fifo_thread_write_header()
163 AVFormatContext *avf = ctx->avf; in fifo_thread_flush_output() local
181 AVFormatContext *avf = ctx->avf; in fifo_thread_write_packet() local
214 AVFormatContext *avf = ctx->avf; in fifo_thread_write_trailer() local
285 AVFormatContext *avf = ctx->avf; in fifo_thread_process_recovery_failure() local
316 AVFormatContext *avf = ctx->avf; in fifo_thread_attempt_recovery() local
387 AVFormatContext *avf = ctx->avf; in fifo_thread_recover() local
421 fifo_thread_ctx.avf = avf; in fifo_consumer_thread()
[all …]
H A Dtee.c39 AVFormatContext *avf; member
123 AVFormatContext *avf; in close_slave() local
127 avf = tee_slave->avf; in close_slave()
128 if (!avf) in close_slave()
141 ff_format_io_close(avf, &avf->pb); in close_slave()
143 tee_slave->avf = NULL; in close_slave()
237 tee_slave->avf = avf2; in open_slave()
243 avf2->flags = avf->flags; in open_slave()
267 ret = avformat_match_stream_specifier(avf, avf->streams[i], subselect); in open_slave()
416 slave->avf->url, slave->avf->oformat->name); in log_slave()
[all …]
H A Dsrtenc.c37 static int srt_write_header(AVFormatContext *avf) in srt_write_header() argument
39 SRTContext *srt = avf->priv_data; in srt_write_header()
41 if (avf->nb_streams != 1 || in srt_write_header()
43 av_log(avf, AV_LOG_ERROR, in srt_write_header()
49 av_log(avf, AV_LOG_ERROR, in srt_write_header()
54 avpriv_set_pts_info(avf->streams[0], 64, 1, 1000); in srt_write_header()
61 SRTContext *srt = avf->priv_data; in srt_write_packet()
84 av_log(avf, AV_LOG_WARNING, in srt_write_packet()
98 avio_printf(avf->pb, "\n"); in srt_write_packet()
100 avio_write(avf->pb, pkt->data, pkt->size); in srt_write_packet()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavformat/
H A Dconcatdec.c62 AVFormatContext *avf; member
321 if (avf->duration > 0) in get_best_effort_duration()
334 if (cat->avf) in open_file()
338 if (!cat->avf) in open_file()
341 cat->avf->flags |= avf->flags & ~AVFMT_FLAG_CUSTOM_IO; in open_file()
342 cat->avf->interrupt_callback = avf->interrupt_callback; in open_file()
344 if ((ret = ff_copy_whiteblacklists(cat->avf, avf)) < 0) in open_file()
390 if (cat->avf) in concat_read_close()
469 avf->streams[avf->nb_streams - 1]->id = in concat_read_header()
581 if (!cat->avf) in concat_read_packet()
[all …]
H A Dfifo.c36 AVFormatContext *avf; member
116 AVFormatContext *avf = ctx->avf; in fifo_thread_write_header() local
128 av_log(avf, AV_LOG_ERROR, "Error opening %s: %s\n", avf->url, in fifo_thread_write_header()
155 AVFormatContext *avf = ctx->avf; in fifo_thread_flush_output() local
164 AVFormatContext *avf = ctx->avf; in fifo_thread_write_packet() local
194 AVFormatContext *avf = ctx->avf; in fifo_thread_write_trailer() local
262 AVFormatContext *avf = ctx->avf; in fifo_thread_process_recovery_failure() local
293 AVFormatContext *avf = ctx->avf; in fifo_thread_attempt_recovery() local
364 AVFormatContext *avf = ctx->avf; in fifo_thread_recover() local
398 fifo_thread_ctx.avf = avf; in fifo_consumer_thread()
[all …]
H A Dtee.c39 AVFormatContext *avf; member
123 AVFormatContext *avf; in close_slave() local
127 avf = tee_slave->avf; in close_slave()
128 if (!avf) in close_slave()
141 ff_format_io_close(avf, &avf->pb); in close_slave()
143 tee_slave->avf = NULL; in close_slave()
237 tee_slave->avf = avf2; in open_slave()
243 avf2->flags = avf->flags; in open_slave()
267 ret = avformat_match_stream_specifier(avf, avf->streams[i], subselect); in open_slave()
416 slave->avf->url, slave->avf->oformat->name); in log_slave()
[all …]
H A Dsrtenc.c37 static int srt_write_header(AVFormatContext *avf) in srt_write_header() argument
39 SRTContext *srt = avf->priv_data; in srt_write_header()
41 if (avf->nb_streams != 1 || in srt_write_header()
43 av_log(avf, AV_LOG_ERROR, in srt_write_header()
49 av_log(avf, AV_LOG_ERROR, in srt_write_header()
54 avpriv_set_pts_info(avf->streams[0], 64, 1, 1000); in srt_write_header()
61 SRTContext *srt = avf->priv_data; in srt_write_packet()
83 av_log(avf, AV_LOG_WARNING, in srt_write_packet()
97 avio_printf(avf->pb, "\n"); in srt_write_packet()
99 avio_write(avf->pb, pkt->data, pkt->size); in srt_write_packet()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavformat/
H A Dconcatdec.c62 AVFormatContext *avf; member
321 if (avf->duration > 0) in get_best_effort_duration()
334 if (cat->avf) in open_file()
338 if (!cat->avf) in open_file()
341 cat->avf->flags |= avf->flags & ~AVFMT_FLAG_CUSTOM_IO; in open_file()
342 cat->avf->interrupt_callback = avf->interrupt_callback; in open_file()
344 if ((ret = ff_copy_whiteblacklists(cat->avf, avf)) < 0) in open_file()
390 if (cat->avf) in concat_read_close()
469 avf->streams[avf->nb_streams - 1]->id = in concat_read_header()
581 if (!cat->avf) in concat_read_packet()
[all …]
H A Dfifo.c38 AVFormatContext *avf; member
124 AVFormatContext *avf = ctx->avf; in fifo_thread_write_header() local
136 av_log(avf, AV_LOG_ERROR, "Error opening %s: %s\n", avf->url, in fifo_thread_write_header()
163 AVFormatContext *avf = ctx->avf; in fifo_thread_flush_output() local
181 AVFormatContext *avf = ctx->avf; in fifo_thread_write_packet() local
214 AVFormatContext *avf = ctx->avf; in fifo_thread_write_trailer() local
285 AVFormatContext *avf = ctx->avf; in fifo_thread_process_recovery_failure() local
316 AVFormatContext *avf = ctx->avf; in fifo_thread_attempt_recovery() local
387 AVFormatContext *avf = ctx->avf; in fifo_thread_recover() local
421 fifo_thread_ctx.avf = avf; in fifo_consumer_thread()
[all …]
H A Dtee.c39 AVFormatContext *avf; member
123 AVFormatContext *avf; in close_slave() local
127 avf = tee_slave->avf; in close_slave()
128 if (!avf) in close_slave()
141 ff_format_io_close(avf, &avf->pb); in close_slave()
143 tee_slave->avf = NULL; in close_slave()
237 tee_slave->avf = avf2; in open_slave()
243 avf2->flags = avf->flags; in open_slave()
267 ret = avformat_match_stream_specifier(avf, avf->streams[i], subselect); in open_slave()
416 slave->avf->url, slave->avf->oformat->name); in log_slave()
[all …]
H A Dsrtenc.c37 static int srt_write_header(AVFormatContext *avf) in srt_write_header() argument
39 SRTContext *srt = avf->priv_data; in srt_write_header()
41 if (avf->nb_streams != 1 || in srt_write_header()
43 av_log(avf, AV_LOG_ERROR, in srt_write_header()
49 av_log(avf, AV_LOG_ERROR, in srt_write_header()
54 avpriv_set_pts_info(avf->streams[0], 64, 1, 1000); in srt_write_header()
61 SRTContext *srt = avf->priv_data; in srt_write_packet()
83 av_log(avf, AV_LOG_WARNING, in srt_write_packet()
97 avio_printf(avf->pb, "\n"); in srt_write_packet()
99 avio_write(avf->pb, pkt->data, pkt->size); in srt_write_packet()
[all …]
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavformat/
H A Dconcatdec.c61 AVFormatContext *avf; member
323 if (cat->avf) in open_file()
327 if (!cat->avf) in open_file()
330 cat->avf->flags |= avf->flags & ~AVFMT_FLAG_CUSTOM_IO; in open_file()
331 cat->avf->interrupt_callback = avf->interrupt_callback; in open_file()
333 if ((ret = ff_copy_whiteblacklists(cat->avf, avf)) < 0) in open_file()
381 if (cat->avf) in concat_read_close()
460 avf->streams[avf->nb_streams - 1]->id = in concat_read_header()
579 if (!cat->avf) in concat_read_packet()
735 cat->avf = NULL; in concat_seek()
[all …]
H A Dfifo.c36 AVFormatContext *avf; member
117 AVFormatContext *avf = ctx->avf; in fifo_thread_write_header() local
129 av_log(avf, AV_LOG_ERROR, "Error opening %s: %s\n", avf->url, in fifo_thread_write_header()
156 AVFormatContext *avf = ctx->avf; in fifo_thread_flush_output() local
165 AVFormatContext *avf = ctx->avf; in fifo_thread_write_packet() local
195 AVFormatContext *avf = ctx->avf; in fifo_thread_write_trailer() local
263 AVFormatContext *avf = ctx->avf; in fifo_thread_process_recovery_failure() local
294 AVFormatContext *avf = ctx->avf; in fifo_thread_attempt_recovery() local
365 AVFormatContext *avf = ctx->avf; in fifo_thread_recover() local
399 fifo_thread_ctx.avf = avf; in fifo_consumer_thread()
[all …]
H A Dtee.c39 AVFormatContext *avf; member
124 AVFormatContext *avf; in close_slave() local
128 avf = tee_slave->avf; in close_slave()
129 if (!avf) in close_slave()
142 ff_format_io_close(avf, &avf->pb); in close_slave()
144 tee_slave->avf = NULL; in close_slave()
232 tee_slave->avf = avf2; in open_slave()
238 avf2->flags = avf->flags; in open_slave()
261 ret = avformat_match_stream_specifier(avf, avf->streams[i], subselect); in open_slave()
409 slave->avf->url, slave->avf->oformat->name); in log_slave()
[all …]
H A Dsrtenc.c37 static int srt_write_header(AVFormatContext *avf) in srt_write_header() argument
39 SRTContext *srt = avf->priv_data; in srt_write_header()
41 if (avf->nb_streams != 1 || in srt_write_header()
43 av_log(avf, AV_LOG_ERROR, in srt_write_header()
49 av_log(avf, AV_LOG_ERROR, in srt_write_header()
54 avpriv_set_pts_info(avf->streams[0], 64, 1, 1000); in srt_write_header()
61 SRTContext *srt = avf->priv_data; in srt_write_packet()
83 av_log(avf, AV_LOG_WARNING, in srt_write_packet()
97 avio_printf(avf->pb, "\n"); in srt_write_packet()
99 avio_write(avf->pb, pkt->data, pkt->size); in srt_write_packet()
[all …]

12345678910>>...18