mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
avformat/tee: Copy interrupt callback and flags to slave
Copy interrupt callback to slave format context to allow user to interrupt IO. Copy format flags as well. Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com>
This commit is contained in:
parent
856e1eacf7
commit
81bab1074f
@ -161,6 +161,8 @@ static int open_slave(AVFormatContext *avf, char *slave, TeeSlave *tee_slave)
|
||||
avf2->opaque = avf->opaque;
|
||||
avf2->io_open = avf->io_open;
|
||||
avf2->io_close = avf->io_close;
|
||||
avf2->interrupt_callback = avf->interrupt_callback;
|
||||
avf2->flags = avf->flags;
|
||||
|
||||
tee_slave->stream_map = av_calloc(avf->nb_streams, sizeof(*tee_slave->stream_map));
|
||||
if (!tee_slave->stream_map) {
|
||||
|
Loading…
Reference in New Issue
Block a user