csi_camera_frame.c 785 B

123456789101112131415161718192021222324252627282930313233
  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 <stdlib.h>
  10. #define LOG_LEVEL 2
  11. #define LOG_PREFIX "camera_meta"
  12. #include <syslog.h>
  13. #include <csi_camera_frame.h>
  14. int csi_camera_frame_alloc_meta(csi_camera_meta_s **meta, int meta_count, size_t *meta_data_size)
  15. {
  16. return 0;
  17. }
  18. int csi_camera_frame_free_meta(csi_camera_meta_s *meta)
  19. {
  20. return 0;
  21. }
  22. int csi_camera_frame_get_meta_unit(csi_camera_meta_unit_s *meta_unit,
  23. csi_camera_meta_s *meta_data,
  24. csi_camera_meta_id_e meta_field)
  25. {
  26. return 0;
  27. }