ogg/opus: Infrastructure.
[paraslash.git] / opusdec_filter.c
1 /*
2  * Copyright (C) 2012 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file opusdec_filter.c The ogg/opus decoder. */
8
9 #include <regex.h>
10
11 #include "para.h"
12 #include "list.h"
13 #include "sched.h"
14 #include "ggo.h"
15 #include "buffer_tree.h"
16 #include "filter.h"
17 #include "error.h"
18 #include "string.h"
19
20 /**
21  * The init function of the opusdec filter.
22  *
23  * \param f Pointer to the filter struct to initialize.
24  *
25  * \sa filter::init.
26  */
27 void opusdec_filter_init(struct filter *f)
28 {
29 }