xref: /haiku/src/add-ons/media/plugins/ffmpeg/CodecTable.h (revision 1828f3d72cde2d24454a699d48533f06b013dd2c)
1 /*
2  * Copyright 2010 Stephan Aßmus <superstippi@gmx.de>. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef CODEC_TABLE_H
6 #define CODEC_TABLE_H
7 
8 
9 #include <MediaFormats.h>
10 
11 struct AVInputFamily {
12 	media_format_family family;
13 	const char *avname;
14 };
15 extern struct AVInputFamily gAVInputFamilies[];
16 
17 status_t build_decoder_formats(media_format** _formats, size_t* _count);
18 
19 
20 #endif // CODEC_TABLE_H
21