mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
fftools/ffmpeg_dec: move sub2video submission to ffmpeg_filter
This code is a sub2video analogue of ifilter_send_frame(), so it properly belongs to the filtering code. Note that using sub2video with more than one target for a given input subtitle stream is currently broken and this commit does not change that. It will be addressed in following commits.
This commit is contained in:
parent
3d35b73b2a
commit
5d530e3a72
4 changed files with 41 additions and 16 deletions
|
|
@ -755,7 +755,7 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
|
|||
first_report = 0;
|
||||
}
|
||||
|
||||
static int copy_av_subtitle(AVSubtitle *dst, const AVSubtitle *src)
|
||||
int copy_av_subtitle(AVSubtitle *dst, const AVSubtitle *src)
|
||||
{
|
||||
int ret = AVERROR_BUG;
|
||||
AVSubtitle tmp = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue