xref: /haiku/src/add-ons/media/plugins/ffmpeg/EncoderTable.h (revision 3be9edf8da228afd9fec0390f408c964766122aa)
1 /*
2  * Copyright 2009 Stephan Aßmus <superstippi@gmx.de>
3  * All rights reserved. Distributed under the terms of the MIT license.
4  */
5 #ifndef ENCODER_TABLE_H
6 #define ENCODER_TABLE_H
7 
8 
9 #include <MediaFormats.h>
10 
11 
12 struct EncoderDescription {
13 	media_codec_info		codec_info;
14 	media_format_family		format_family;
15 	media_type				input_type;
16 	media_type				output_type;
17 	int						bit_rate_scale;
18 };
19 
20 
21 extern const EncoderDescription gEncoderTable[];
22 extern const size_t gEncoderCount;
23 
24 
25 #endif // ENCODER_TABLE_H
26