csi_camera_platform_spec.c 737 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (C) 2021 Alibaba Group Holding Limited
  3. * Author: LuChongzhi <chongzhi.lcz@alibaba-inc.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #include <stdio.h>
  10. #include <csi_camera_platform_spec.h>
  11. #include <syslog.h>
  12. /******************************************************************************/
  13. /*********** Platform Spec in Enum ********************************************/
  14. const camera_spec_enums_s *camera_spec_get_enum_array(int property_id)
  15. {
  16. return NULL;
  17. }
  18. const camera_spec_bitmasks_t *camera_spec_get_bitmask_array(int property_id)
  19. {
  20. return NULL;
  21. }