|
@@ -29,11 +29,29 @@
|
|
|
#define STREAM_ENCODER_H_
|
|
|
|
|
|
#include "audio_types.h"
|
|
|
+#include "hw_shared.h"
|
|
|
|
|
|
struct dc_bios;
|
|
|
struct dc_context;
|
|
|
struct dc_crtc_timing;
|
|
|
|
|
|
+enum dp_pixel_encoding_type {
|
|
|
+ DP_PIXEL_ENCODING_TYPE_RGB444 = 0x00000000,
|
|
|
+ DP_PIXEL_ENCODING_TYPE_YCBCR422 = 0x00000001,
|
|
|
+ DP_PIXEL_ENCODING_TYPE_YCBCR444 = 0x00000002,
|
|
|
+ DP_PIXEL_ENCODING_TYPE_RGB_WIDE_GAMUT = 0x00000003,
|
|
|
+ DP_PIXEL_ENCODING_TYPE_Y_ONLY = 0x00000004,
|
|
|
+ DP_PIXEL_ENCODING_TYPE_YCBCR420 = 0x00000005
|
|
|
+};
|
|
|
+
|
|
|
+enum dp_component_depth {
|
|
|
+ DP_COMPONENT_PIXEL_DEPTH_6BPC = 0x00000000,
|
|
|
+ DP_COMPONENT_PIXEL_DEPTH_8BPC = 0x00000001,
|
|
|
+ DP_COMPONENT_PIXEL_DEPTH_10BPC = 0x00000002,
|
|
|
+ DP_COMPONENT_PIXEL_DEPTH_12BPC = 0x00000003,
|
|
|
+ DP_COMPONENT_PIXEL_DEPTH_16BPC = 0x00000004
|
|
|
+};
|
|
|
+
|
|
|
struct encoder_info_frame {
|
|
|
/* auxiliary video information */
|
|
|
struct dc_info_packet avi;
|
|
@@ -138,6 +156,7 @@ struct stream_encoder_funcs {
|
|
|
|
|
|
void (*set_avmute)(
|
|
|
struct stream_encoder *enc, bool enable);
|
|
|
+
|
|
|
};
|
|
|
|
|
|
#endif /* STREAM_ENCODER_H_ */
|