X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=opusdec_filter.c;fp=opusdec_filter.c;h=fdcb486e097930fb771fa00644a03d3a5b0e5847;hp=0000000000000000000000000000000000000000;hb=8bcf75a3921d15e03c4351b3efa609eac67c3817;hpb=53133e1c6dbefade4cee94cf4c4363f9ba38b2d5 diff --git a/opusdec_filter.c b/opusdec_filter.c new file mode 100644 index 00000000..fdcb486e --- /dev/null +++ b/opusdec_filter.c @@ -0,0 +1,29 @@ +/* + * Copyright (C) 2012 Andre Noll + * + * Licensed under the GPL v2. For licencing details see COPYING. + */ + +/** \file opusdec_filter.c The ogg/opus decoder. */ + +#include + +#include "para.h" +#include "list.h" +#include "sched.h" +#include "ggo.h" +#include "buffer_tree.h" +#include "filter.h" +#include "error.h" +#include "string.h" + +/** + * The init function of the opusdec filter. + * + * \param f Pointer to the filter struct to initialize. + * + * \sa filter::init. + */ +void opusdec_filter_init(struct filter *f) +{ +}