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