comparison src/filewriter/convert.h @ 2874:11ef2164d90b

re-written format conversion using libSAD; please test this on Big Endian system
author Andrew O. Shadoura <bugzilla@tut.by>
date Thu, 07 Aug 2008 04:16:17 +0300
parents
children
comparison
equal deleted inserted replaced
2873:31d6c44ffef2 2874:11ef2164d90b
1 #ifndef CONVERT_H
2 #define CONVERT_H
3
4 #include "filewriter.h"
5
6 gpointer convert_output;
7
8 gboolean convert_init(AFormat input_fmt, AFormat output_fmt, gint channels);
9
10 gint convert_process(gpointer ptr, gint length);
11
12 void convert_free(void);
13
14 #endif