aboutsummaryrefslogtreecommitdiff
path: root/src/encoder
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoder')
-rw-r--r--src/encoder/null_encoder.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/encoder/null_encoder.c b/src/encoder/null_encoder.c
index 218a0cb5..6e0e5b80 100644
--- a/src/encoder/null_encoder.c
+++ b/src/encoder/null_encoder.c
@@ -19,7 +19,6 @@
#include "encoder_api.h"
#include "encoder_plugin.h"
-#include "audio_format.h"
#include <assert.h>
#include <string.h>
@@ -29,8 +28,6 @@
struct null_encoder {
struct encoder encoder;
- struct audio_format audio_format;
-
unsigned char buffer[MAX_BUFFER];
size_t buffer_length;
};
@@ -64,12 +61,12 @@ null_encoder_finish(struct encoder *_encoder)
}
static bool
-null_encoder_open(struct encoder *_encoder, struct audio_format *audio_format,
+null_encoder_open(struct encoder *_encoder,
+ G_GNUC_UNUSED struct audio_format *audio_format,
G_GNUC_UNUSED GError **error)
{
struct null_encoder *encoder = (struct null_encoder *)_encoder;
- encoder->audio_format = *audio_format;
encoder->buffer_length = 0;
return true;