summaryrefslogtreecommitdiff
path: root/transcode.h
blob: 7fb5cd964b0bb11a8cd4234a28fb48013cd57a73 (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