blob: 8c6b0a62734b8d6f43b96ac431357e52a53a795d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* avfilter_priv.h
Copyright (c) 2003-2019 HandBrake Team
This file is part of the HandBrake source code
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License v2.
For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
*/
#ifndef HB_AVFILTER_PRIV_H
#define HB_AVFILTER_PRIV_H
#include "libavfilter/avfilter.h"
#include "hbavfilter.h"
struct hb_filter_private_s
{
int initialized;
hb_avfilter_graph_t * graph;
// Buffer list to delay output by one frame. Required to set stop time.
hb_buffer_list_t list;
// Placeholder settings for AVFilter aliases
hb_value_t * avfilters;
hb_filter_init_t input;
hb_filter_init_t output;
};
int hb_avfilter_null_work( hb_filter_object_t * filter,
hb_buffer_t ** buf_in, hb_buffer_t ** buf_out );
void hb_avfilter_alias_close( hb_filter_object_t * filter );
#endif // HB_AVFILTER_PRIV_H
|