std::shared_ptr
[dcpomatic.git] / src / lib / filter_graph.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic 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 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic 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 DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file src/lib/filter_graph.cc
22  *  @brief A graph of FFmpeg filters.
23  */
24
25 #include "filter_graph.h"
26 #include "filter.h"
27 #include "exceptions.h"
28 #include "image.h"
29 #include "compose.hpp"
30 extern "C" {
31 #include <libavfilter/buffersrc.h>
32 #include <libavfilter/buffersink.h>
33 #include <libavformat/avio.h>
34 }
35 #include <iostream>
36
37 #include "i18n.h"
38
39 using std::string;
40 using std::list;
41 using std::pair;
42 using std::make_pair;
43 using std::cout;
44 using std::vector;
45 using std::shared_ptr;
46 using std::weak_ptr;
47 using dcp::Size;
48
49 /** Construct a FilterGraph for the settings in a piece of content */
50 FilterGraph::FilterGraph ()
51         : _graph (0)
52         , _copy (false)
53         , _buffer_src_context (0)
54         , _buffer_sink_context (0)
55         , _frame (0)
56 {
57
58 }
59
60 void
61 FilterGraph::setup (vector<Filter const *> filters)
62 {
63         string const filters_string = Filter::ffmpeg_string (filters);
64         if (filters.empty ()) {
65                 _copy = true;
66                 return;
67         }
68
69         _frame = av_frame_alloc ();
70
71         _graph = avfilter_graph_alloc();
72         if (!_graph) {
73                 throw DecodeError (N_("could not create filter graph."));
74         }
75
76         AVFilter const * buffer_src = avfilter_get_by_name (src_name().c_str());
77         if (!buffer_src) {
78                 throw DecodeError (N_("could not find buffer src filter"));
79         }
80
81         AVFilter const * buffer_sink = avfilter_get_by_name (sink_name().c_str());
82         if (!buffer_sink) {
83                 throw DecodeError (N_("Could not create buffer sink filter"));
84         }
85
86         if (avfilter_graph_create_filter (&_buffer_src_context, buffer_src, N_("in"), src_parameters().c_str(), 0, _graph) < 0) {
87                 throw DecodeError (N_("could not create buffer source"));
88         }
89
90         void* sink_params = sink_parameters ();
91
92         if (avfilter_graph_create_filter (&_buffer_sink_context, buffer_sink, N_("out"), 0, sink_params, _graph) < 0) {
93                 throw DecodeError (N_("could not create buffer sink."));
94         }
95
96         av_free (sink_params);
97
98         AVFilterInOut* outputs = avfilter_inout_alloc ();
99         outputs->name = av_strdup(N_("in"));
100         outputs->filter_ctx = _buffer_src_context;
101         outputs->pad_idx = 0;
102         outputs->next = 0;
103
104         AVFilterInOut* inputs = avfilter_inout_alloc ();
105         inputs->name = av_strdup(N_("out"));
106         inputs->filter_ctx = _buffer_sink_context;
107         inputs->pad_idx = 0;
108         inputs->next = 0;
109
110         if (avfilter_graph_parse (_graph, filters_string.c_str(), inputs, outputs, 0) < 0) {
111                 throw DecodeError (N_("could not set up filter graph."));
112         }
113
114         int e = avfilter_graph_config (_graph, 0);
115         if (e < 0) {
116                 throw DecodeError (String::compose (N_("could not configure filter graph (%1)"), e));
117         }
118 }
119
120 FilterGraph::~FilterGraph ()
121 {
122         if (_frame) {
123                 av_frame_free (&_frame);
124         }
125
126         if (_graph) {
127                 avfilter_graph_free (&_graph);
128         }
129 }
130
131 AVFilterContext *
132 FilterGraph::get (string name)
133 {
134         return avfilter_graph_get_filter (_graph, name.c_str ());
135 }