mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
fftools/ffmpeg: add support for multiview video
This extends the syntax for specifying input streams in -map and complex filtergraph labels, to allow selecting a view by view ID, index, or position. The corresponding decoder is then set up to decode the appropriate view and send frames for that view to the correct filtergraph input(s).
This commit is contained in:
parent
68c198fae2
commit
da420ac6e1
9 changed files with 610 additions and 55 deletions
|
|
@ -988,7 +988,7 @@ FILE *get_preset_file(char *filename, size_t filename_size,
|
|||
return f;
|
||||
}
|
||||
|
||||
static int cmdutils_isalnum(char c)
|
||||
int cmdutils_isalnum(char c)
|
||||
{
|
||||
return (c >= '0' && c <= '9') ||
|
||||
(c >= 'A' && c <= 'Z') ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue