video-scaler.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /******************************************************************************
  2. Copyright (C) 2023 by Lain Bailey <[email protected]>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ******************************************************************************/
  14. #pragma once
  15. #include "../util/c99defs.h"
  16. #include "video-io.h"
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. struct video_scaler;
  21. typedef struct video_scaler video_scaler_t;
  22. #define VIDEO_SCALER_SUCCESS 0
  23. #define VIDEO_SCALER_BAD_CONVERSION -1
  24. #define VIDEO_SCALER_FAILED -2
  25. EXPORT int video_scaler_create(video_scaler_t **scaler,
  26. const struct video_scale_info *dst,
  27. const struct video_scale_info *src,
  28. enum video_scale_type type);
  29. EXPORT void video_scaler_destroy(video_scaler_t *scaler);
  30. EXPORT bool video_scaler_scale(video_scaler_t *scaler, uint8_t *output[],
  31. const uint32_t out_linesize[],
  32. const uint8_t *const input[],
  33. const uint32_t in_linesize[]);
  34. #ifdef __cplusplus
  35. }
  36. #endif