video-io.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /******************************************************************************
  2. Copyright (C) 2013 by Hugh 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 "media-io-defs.h"
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. struct video_frame;
  20. /* Base video output component. Use this to create a video output track. */
  21. struct video_output;
  22. typedef struct video_output video_t;
  23. enum video_format {
  24. VIDEO_FORMAT_NONE,
  25. /* planar 420 format */
  26. VIDEO_FORMAT_I420, /* three-plane */
  27. VIDEO_FORMAT_NV12, /* two-plane, luma and packed chroma */
  28. /* packed 422 formats */
  29. VIDEO_FORMAT_YVYU,
  30. VIDEO_FORMAT_YUY2, /* YUYV */
  31. VIDEO_FORMAT_UYVY,
  32. /* packed uncompressed formats */
  33. VIDEO_FORMAT_RGBA,
  34. VIDEO_FORMAT_BGRA,
  35. VIDEO_FORMAT_BGRX,
  36. };
  37. enum video_colorspace {
  38. VIDEO_CS_DEFAULT,
  39. VIDEO_CS_601,
  40. VIDEO_CS_709,
  41. };
  42. enum video_range_type {
  43. VIDEO_RANGE_DEFAULT,
  44. VIDEO_RANGE_PARTIAL,
  45. VIDEO_RANGE_FULL
  46. };
  47. struct video_data {
  48. uint8_t *data[MAX_AV_PLANES];
  49. uint32_t linesize[MAX_AV_PLANES];
  50. uint64_t timestamp;
  51. };
  52. struct video_output_info {
  53. const char *name;
  54. enum video_format format;
  55. uint32_t fps_num;
  56. uint32_t fps_den;
  57. uint32_t width;
  58. uint32_t height;
  59. size_t cache_size;
  60. enum video_colorspace colorspace;
  61. enum video_range_type range;
  62. };
  63. static inline bool format_is_yuv(enum video_format format)
  64. {
  65. switch (format) {
  66. case VIDEO_FORMAT_I420:
  67. case VIDEO_FORMAT_NV12:
  68. case VIDEO_FORMAT_YVYU:
  69. case VIDEO_FORMAT_YUY2:
  70. case VIDEO_FORMAT_UYVY:
  71. return true;
  72. case VIDEO_FORMAT_NONE:
  73. case VIDEO_FORMAT_RGBA:
  74. case VIDEO_FORMAT_BGRA:
  75. case VIDEO_FORMAT_BGRX:
  76. return false;
  77. }
  78. return false;
  79. }
  80. enum video_scale_type {
  81. VIDEO_SCALE_DEFAULT,
  82. VIDEO_SCALE_POINT,
  83. VIDEO_SCALE_FAST_BILINEAR,
  84. VIDEO_SCALE_BILINEAR,
  85. VIDEO_SCALE_BICUBIC,
  86. };
  87. struct video_scale_info {
  88. enum video_format format;
  89. uint32_t width;
  90. uint32_t height;
  91. enum video_range_type range;
  92. enum video_colorspace colorspace;
  93. };
  94. EXPORT enum video_format video_format_from_fourcc(uint32_t fourcc);
  95. EXPORT bool video_format_get_parameters(enum video_colorspace color_space,
  96. enum video_range_type range, float matrix[16],
  97. float min_range[3], float max_range[3]);
  98. #define VIDEO_OUTPUT_SUCCESS 0
  99. #define VIDEO_OUTPUT_INVALIDPARAM -1
  100. #define VIDEO_OUTPUT_FAIL -2
  101. EXPORT int video_output_open(video_t **video, struct video_output_info *info);
  102. EXPORT void video_output_close(video_t *video);
  103. EXPORT bool video_output_connect(video_t *video,
  104. const struct video_scale_info *conversion,
  105. void (*callback)(void *param, struct video_data *frame),
  106. void *param);
  107. EXPORT void video_output_disconnect(video_t *video,
  108. void (*callback)(void *param, struct video_data *frame),
  109. void *param);
  110. EXPORT bool video_output_active(const video_t *video);
  111. EXPORT const struct video_output_info *video_output_get_info(
  112. const video_t *video);
  113. EXPORT bool video_output_lock_frame(video_t *video, struct video_frame *frame,
  114. int count, uint64_t timestamp);
  115. EXPORT void video_output_unlock_frame(video_t *video);
  116. EXPORT uint64_t video_output_get_frame_time(const video_t *video);
  117. EXPORT void video_output_stop(video_t *video);
  118. EXPORT bool video_output_stopped(video_t *video);
  119. EXPORT enum video_format video_output_get_format(const video_t *video);
  120. EXPORT uint32_t video_output_get_width(const video_t *video);
  121. EXPORT uint32_t video_output_get_height(const video_t *video);
  122. EXPORT double video_output_get_frame_rate(const video_t *video);
  123. EXPORT uint32_t video_output_get_skipped_frames(const video_t *video);
  124. EXPORT uint32_t video_output_get_total_frames(const video_t *video);
  125. #ifdef __cplusplus
  126. }
  127. #endif