summaryrefslogtreecommitdiff
path: root/transcode.h
blob: 69f19f30ce6517469649ffae40423c8cbed849c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _TRANSCODE_H_
#define _TRANSCODE_H_

#include "decoder.h"
#include "encoder.h"

#include <gio/gio.h>

void transcode(GInputStream *input, const struct decoder_plugin *decoder,
		GOutputStream *output, const struct encoder_plugin *encoder);

#endif