]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/filter/audio_filter.h
[ffmpeg] Reimplemented support for playing all audio streams in a clip and treating...
[casparcg] / modules / ffmpeg / producer / filter / audio_filter.h
1 /*
2 * Copyright 2013 Sveriges Television AB http://casparcg.com/
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Robert Nagy, ronag89@gmail.com
20 */
21
22 #pragma once
23
24 #include <common/memory.h>
25
26 #include <boost/rational.hpp>
27 #include <boost/noncopyable.hpp>
28 #include <boost/range/iterator_range.hpp>
29
30 #include <string>
31 #include <vector>
32
33 #if defined(_MSC_VER)
34 #pragma warning (push)
35 #pragma warning (disable : 4244)
36 #endif
37 extern "C"
38 {
39 #include <libavutil/samplefmt.h>
40 }
41 #if defined(_MSC_VER)
42 #pragma warning (pop)
43 #endif
44
45 struct AVFrame;
46
47 namespace caspar { namespace ffmpeg {
48
49 struct audio_input_pad
50 {
51         boost::rational<int>    time_base;
52         int                                             sample_rate;
53         AVSampleFormat                  sample_fmt;
54         std::uint64_t                   audio_channel_layout;
55
56         audio_input_pad(
57                         boost::rational<int> time_base,
58                         int sample_rate,
59                         AVSampleFormat sample_fmt,
60                         std::uint64_t audio_channel_layout)
61                 : time_base(std::move(time_base))
62                 , sample_rate(sample_rate)
63                 , sample_fmt(sample_fmt)
64                 , audio_channel_layout(audio_channel_layout)
65         {
66         }
67 };
68
69 struct audio_output_pad
70 {
71         std::vector<int>                        sample_rates;
72         std::vector<AVSampleFormat>     sample_fmts;
73         std::vector<std::uint64_t>      audio_channel_layouts;
74
75         audio_output_pad(
76                         std::vector<int> sample_rates,
77                         std::vector<AVSampleFormat> sample_fmts,
78                         std::vector<std::uint64_t> audio_channel_layouts)
79                 : sample_rates(std::move(sample_rates))
80                 , sample_fmts(std::move(sample_fmts))
81                 , audio_channel_layouts(std::move(audio_channel_layouts))
82         {
83         }
84 };
85
86 class audio_filter : boost::noncopyable
87 {
88 public:
89         audio_filter(
90                         std::vector<audio_input_pad> input_pads,
91                         std::vector<audio_output_pad> output_pads,
92                         const std::string& filtergraph);
93         audio_filter(audio_filter&& other);
94         audio_filter& operator=(audio_filter&& other);
95
96         void push(int input_pad_id, const std::shared_ptr<AVFrame>& frame);
97         void push(int input_pad_id, const boost::iterator_range<const int32_t*>& frame_samples);
98         std::shared_ptr<AVFrame> poll(int output_pad_id);
99         std::vector<spl::shared_ptr<AVFrame>> poll_all(int output_pad_id);
100
101         std::wstring filter_str() const;
102 private:
103         struct implementation;
104         spl::shared_ptr<implementation> impl_;
105 };
106
107 }}