diff options
author | James Almer <jamrial@gmail.com> | 2022-03-18 16:55:58 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-03-22 08:45:38 -0300 |
commit | bc99e3a9d693d46b1aa3a6149255ad4885eeb9ce (patch) | |
tree | 538a5012a70e172cd3293cd5f94baeaafb29fa8a /fftools/ffmpeg.h | |
parent | e6e86a3907379a08d0015d76da7ea6b682def815 (diff) | |
download | ffmpeg-bc99e3a9d693d46b1aa3a6149255ad4885eeb9ce.tar.gz |
ffmpeg: replace custom channel_layout code with an SpecifierOpt based one
This is cleaner and allows fine tuning which stream the option is applied to.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 6a19dc9c7c..1e14bf9fa9 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -96,6 +96,8 @@ typedef struct OptionsContext { SpecifierOpt *codec_names; int nb_codec_names; + SpecifierOpt *audio_ch_layouts; + int nb_audio_ch_layouts; SpecifierOpt *audio_channels; int nb_audio_channels; SpecifierOpt *audio_sample_rate; |