extd_factory.h 471 B

1234567891011121314151617
  1. #ifndef _EXTERNAL_FACTORY_H_
  2. #define _EXTERNAL_FACTORY_H_
  3. #include "hdmi_drv.h"
  4. #include "extd_info.h"
  5. struct DPI_PARAM_CONTEXT {
  6. int hdmi_width; /* DPI read buffer width */
  7. int hdmi_height; /* DPI read buffer height */
  8. int bg_width; /* DPI read buffer width */
  9. int bg_height; /* DPI read buffer height */
  10. enum HDMI_VIDEO_RESOLUTION output_video_resolution;
  11. int scaling_factor;
  12. };
  13. int hdmi_factory_mode_test(enum HDMI_FACTORY_TEST test_step, void *info);
  14. #endif