2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-02-22 17:11:14 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This header is included by encoder plugins.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
#ifndef MPD_ENCODER_API_HXX
|
|
|
|
#define MPD_ENCODER_API_HXX
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-11-28 11:50:54 +01:00
|
|
|
// IWYU pragma: begin_exports
|
|
|
|
|
2015-01-08 19:31:57 +01:00
|
|
|
#include "EncoderInterface.hxx"
|
2013-07-30 09:04:05 +02:00
|
|
|
#include "EncoderPlugin.hxx"
|
2020-01-18 20:07:09 +01:00
|
|
|
#include "pcm/AudioFormat.hxx"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/Tag.hxx"
|
2015-01-21 22:13:44 +01:00
|
|
|
#include "config/Block.hxx"
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-11-28 11:50:54 +01:00
|
|
|
// IWYU pragma: end_exports
|
|
|
|
|
2009-02-22 17:11:14 +01:00
|
|
|
#endif
|