video-scaler.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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, const struct video_scale_info *dst,
  26. const struct video_scale_info *src, enum video_scale_type type);
  27. EXPORT void video_scaler_destroy(video_scaler_t *scaler);
  28. EXPORT bool video_scaler_scale(video_scaler_t *scaler, uint8_t *output[], const uint32_t out_linesize[],
  29. const uint8_t *const input[], const uint32_t in_linesize[]);
  30. #ifdef __cplusplus
  31. }
  32. #endif