| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 | 
							- /******************************************************************************
 
-     Copyright (C) 2023 by Lain Bailey <[email protected]>
 
-     This program is free software: you can redistribute it and/or modify
 
-     it under the terms of the GNU General Public License as published by
 
-     the Free Software Foundation, either version 2 of the License, or
 
-     (at your option) any later version.
 
-     This program is distributed in the hope that it will be useful,
 
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
 
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
-     GNU General Public License for more details.
 
-     You should have received a copy of the GNU General Public License
 
-     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
- ******************************************************************************/
 
- #pragma once
 
- #include "media-io-defs.h"
 
- #include "../util/c99defs.h"
 
- #ifdef __cplusplus
 
- extern "C" {
 
- #endif
 
- struct video_frame;
 
- /* Base video output component.  Use this to create a video output track. */
 
- struct video_output;
 
- typedef struct video_output video_t;
 
- enum video_format {
 
- 	VIDEO_FORMAT_NONE,
 
- 	/* planar 4:2:0 formats */
 
- 	VIDEO_FORMAT_I420, /* three-plane */
 
- 	VIDEO_FORMAT_NV12, /* two-plane, luma and packed chroma */
 
- 	/* packed 4:2:2 formats */
 
- 	VIDEO_FORMAT_YVYU,
 
- 	VIDEO_FORMAT_YUY2, /* YUYV */
 
- 	VIDEO_FORMAT_UYVY,
 
- 	/* packed uncompressed formats */
 
- 	VIDEO_FORMAT_RGBA,
 
- 	VIDEO_FORMAT_BGRA,
 
- 	VIDEO_FORMAT_BGRX,
 
- 	VIDEO_FORMAT_Y800, /* grayscale */
 
- 	/* planar 4:4:4 */
 
- 	VIDEO_FORMAT_I444,
 
- 	/* more packed uncompressed formats */
 
- 	VIDEO_FORMAT_BGR3,
 
- 	/* planar 4:2:2 */
 
- 	VIDEO_FORMAT_I422,
 
- 	/* planar 4:2:0 with alpha */
 
- 	VIDEO_FORMAT_I40A,
 
- 	/* planar 4:2:2 with alpha */
 
- 	VIDEO_FORMAT_I42A,
 
- 	/* planar 4:4:4 with alpha */
 
- 	VIDEO_FORMAT_YUVA,
 
- 	/* packed 4:4:4 with alpha */
 
- 	VIDEO_FORMAT_AYUV,
 
- 	/* planar 4:2:0 format, 10 bpp */
 
- 	VIDEO_FORMAT_I010, /* three-plane */
 
- 	VIDEO_FORMAT_P010, /* two-plane, luma and packed chroma */
 
- 	/* planar 4:2:2 format, 10 bpp */
 
- 	VIDEO_FORMAT_I210,
 
- 	/* planar 4:4:4 format, 12 bpp */
 
- 	VIDEO_FORMAT_I412,
 
- 	/* planar 4:4:4:4 format, 12 bpp */
 
- 	VIDEO_FORMAT_YA2L,
 
- 	/* planar 4:2:2 format, 16 bpp */
 
- 	VIDEO_FORMAT_P216, /* two-plane, luma and packed chroma */
 
- 	/* planar 4:4:4 format, 16 bpp */
 
- 	VIDEO_FORMAT_P416, /* two-plane, luma and packed chroma */
 
- 	/* packed 4:2:2 format, 10 bpp */
 
- 	VIDEO_FORMAT_V210,
 
- };
 
- enum video_trc {
 
- 	VIDEO_TRC_DEFAULT,
 
- 	VIDEO_TRC_SRGB,
 
- 	VIDEO_TRC_PQ,
 
- 	VIDEO_TRC_HLG,
 
- };
 
- enum video_colorspace {
 
- 	VIDEO_CS_DEFAULT,
 
- 	VIDEO_CS_601,
 
- 	VIDEO_CS_709,
 
- 	VIDEO_CS_SRGB,
 
- 	VIDEO_CS_2100_PQ,
 
- 	VIDEO_CS_2100_HLG,
 
- };
 
- enum video_range_type {
 
- 	VIDEO_RANGE_DEFAULT,
 
- 	VIDEO_RANGE_PARTIAL,
 
- 	VIDEO_RANGE_FULL,
 
- };
 
- struct video_data {
 
- 	uint8_t *data[MAX_AV_PLANES];
 
- 	uint32_t linesize[MAX_AV_PLANES];
 
- 	uint64_t timestamp;
 
- };
 
- struct video_output_info {
 
- 	const char *name;
 
- 	enum video_format format;
 
- 	uint32_t fps_num;
 
- 	uint32_t fps_den;
 
- 	uint32_t width;
 
- 	uint32_t height;
 
- 	size_t cache_size;
 
- 	enum video_colorspace colorspace;
 
- 	enum video_range_type range;
 
- };
 
- static inline bool format_is_yuv(enum video_format format)
 
- {
 
- 	switch (format) {
 
- 	case VIDEO_FORMAT_I420:
 
- 	case VIDEO_FORMAT_NV12:
 
- 	case VIDEO_FORMAT_I422:
 
- 	case VIDEO_FORMAT_I210:
 
- 	case VIDEO_FORMAT_YVYU:
 
- 	case VIDEO_FORMAT_YUY2:
 
- 	case VIDEO_FORMAT_UYVY:
 
- 	case VIDEO_FORMAT_I444:
 
- 	case VIDEO_FORMAT_I412:
 
- 	case VIDEO_FORMAT_I40A:
 
- 	case VIDEO_FORMAT_I42A:
 
- 	case VIDEO_FORMAT_YUVA:
 
- 	case VIDEO_FORMAT_YA2L:
 
- 	case VIDEO_FORMAT_AYUV:
 
- 	case VIDEO_FORMAT_I010:
 
- 	case VIDEO_FORMAT_P010:
 
- 	case VIDEO_FORMAT_P216:
 
- 	case VIDEO_FORMAT_P416:
 
- 	case VIDEO_FORMAT_V210:
 
- 		return true;
 
- 	case VIDEO_FORMAT_NONE:
 
- 	case VIDEO_FORMAT_RGBA:
 
- 	case VIDEO_FORMAT_BGRA:
 
- 	case VIDEO_FORMAT_BGRX:
 
- 	case VIDEO_FORMAT_Y800:
 
- 	case VIDEO_FORMAT_BGR3:
 
- 		return false;
 
- 	}
 
- 	return false;
 
- }
 
- static inline const char *get_video_format_name(enum video_format format)
 
- {
 
- 	switch (format) {
 
- 	case VIDEO_FORMAT_I420:
 
- 		return "I420";
 
- 	case VIDEO_FORMAT_NV12:
 
- 		return "NV12";
 
- 	case VIDEO_FORMAT_I422:
 
- 		return "I422";
 
- 	case VIDEO_FORMAT_I210:
 
- 		return "I210";
 
- 	case VIDEO_FORMAT_YVYU:
 
- 		return "YVYU";
 
- 	case VIDEO_FORMAT_YUY2:
 
- 		return "YUY2";
 
- 	case VIDEO_FORMAT_UYVY:
 
- 		return "UYVY";
 
- 	case VIDEO_FORMAT_RGBA:
 
- 		return "RGBA";
 
- 	case VIDEO_FORMAT_BGRA:
 
- 		return "BGRA";
 
- 	case VIDEO_FORMAT_BGRX:
 
- 		return "BGRX";
 
- 	case VIDEO_FORMAT_I444:
 
- 		return "I444";
 
- 	case VIDEO_FORMAT_I412:
 
- 		return "I412";
 
- 	case VIDEO_FORMAT_Y800:
 
- 		return "Y800";
 
- 	case VIDEO_FORMAT_BGR3:
 
- 		return "BGR3";
 
- 	case VIDEO_FORMAT_I40A:
 
- 		return "I40A";
 
- 	case VIDEO_FORMAT_I42A:
 
- 		return "I42A";
 
- 	case VIDEO_FORMAT_YUVA:
 
- 		return "YUVA";
 
- 	case VIDEO_FORMAT_YA2L:
 
- 		return "YA2L";
 
- 	case VIDEO_FORMAT_AYUV:
 
- 		return "AYUV";
 
- 	case VIDEO_FORMAT_I010:
 
- 		return "I010";
 
- 	case VIDEO_FORMAT_P010:
 
- 		return "P010";
 
- 	case VIDEO_FORMAT_P216:
 
- 		return "P216";
 
- 	case VIDEO_FORMAT_P416:
 
- 		return "P416";
 
- 	case VIDEO_FORMAT_V210:
 
- 		return "v210";
 
- 	case VIDEO_FORMAT_NONE:;
 
- 	}
 
- 	return "None";
 
- }
 
- static inline const char *get_video_colorspace_name(enum video_colorspace cs)
 
- {
 
- 	switch (cs) {
 
- 	case VIDEO_CS_DEFAULT:
 
- 	case VIDEO_CS_709:
 
- 		return "Rec. 709";
 
- 	case VIDEO_CS_SRGB:
 
- 		return "sRGB";
 
- 	case VIDEO_CS_601:
 
- 		return "Rec. 601";
 
- 	case VIDEO_CS_2100_PQ:
 
- 		return "Rec. 2100 (PQ)";
 
- 	case VIDEO_CS_2100_HLG:
 
- 		return "Rec. 2100 (HLG)";
 
- 	}
 
- 	return "Unknown";
 
- }
 
- static inline enum video_range_type
 
- resolve_video_range(enum video_format format, enum video_range_type range)
 
- {
 
- 	if (range == VIDEO_RANGE_DEFAULT) {
 
- 		range = format_is_yuv(format) ? VIDEO_RANGE_PARTIAL
 
- 					      : VIDEO_RANGE_FULL;
 
- 	}
 
- 	return range;
 
- }
 
- static inline const char *get_video_range_name(enum video_format format,
 
- 					       enum video_range_type range)
 
- {
 
- 	range = resolve_video_range(format, range);
 
- 	return range == VIDEO_RANGE_FULL ? "Full" : "Partial";
 
- }
 
- enum video_scale_type {
 
- 	VIDEO_SCALE_DEFAULT,
 
- 	VIDEO_SCALE_POINT,
 
- 	VIDEO_SCALE_FAST_BILINEAR,
 
- 	VIDEO_SCALE_BILINEAR,
 
- 	VIDEO_SCALE_BICUBIC,
 
- };
 
- struct video_scale_info {
 
- 	enum video_format format;
 
- 	uint32_t width;
 
- 	uint32_t height;
 
- 	enum video_range_type range;
 
- 	enum video_colorspace colorspace;
 
- };
 
- EXPORT enum video_format video_format_from_fourcc(uint32_t fourcc);
 
- EXPORT bool video_format_get_parameters(enum video_colorspace color_space,
 
- 					enum video_range_type range,
 
- 					float matrix[16], float min_range[3],
 
- 					float max_range[3]);
 
- EXPORT bool video_format_get_parameters_for_format(
 
- 	enum video_colorspace color_space, enum video_range_type range,
 
- 	enum video_format format, float matrix[16], float min_range[3],
 
- 	float max_range[3]);
 
- #define VIDEO_OUTPUT_SUCCESS 0
 
- #define VIDEO_OUTPUT_INVALIDPARAM -1
 
- #define VIDEO_OUTPUT_FAIL -2
 
- EXPORT int video_output_open(video_t **video, struct video_output_info *info);
 
- EXPORT void video_output_close(video_t *video);
 
- EXPORT bool
 
- video_output_connect(video_t *video, const struct video_scale_info *conversion,
 
- 		     void (*callback)(void *param, struct video_data *frame),
 
- 		     void *param);
 
- EXPORT bool
 
- video_output_connect2(video_t *video, const struct video_scale_info *conversion,
 
- 		      uint32_t frame_rate_divisor,
 
- 		      void (*callback)(void *param, struct video_data *frame),
 
- 		      void *param);
 
- EXPORT void video_output_disconnect(video_t *video,
 
- 				    void (*callback)(void *param,
 
- 						     struct video_data *frame),
 
- 				    void *param);
 
- EXPORT bool video_output_active(const video_t *video);
 
- EXPORT const struct video_output_info *
 
- video_output_get_info(const video_t *video);
 
- EXPORT bool video_output_lock_frame(video_t *video, struct video_frame *frame,
 
- 				    int count, uint64_t timestamp);
 
- EXPORT void video_output_unlock_frame(video_t *video);
 
- EXPORT uint64_t video_output_get_frame_time(const video_t *video);
 
- EXPORT void video_output_stop(video_t *video);
 
- EXPORT bool video_output_stopped(video_t *video);
 
- EXPORT enum video_format video_output_get_format(const video_t *video);
 
- EXPORT uint32_t video_output_get_width(const video_t *video);
 
- EXPORT uint32_t video_output_get_height(const video_t *video);
 
- EXPORT double video_output_get_frame_rate(const video_t *video);
 
- EXPORT uint32_t video_output_get_skipped_frames(const video_t *video);
 
- EXPORT uint32_t video_output_get_total_frames(const video_t *video);
 
- extern void video_output_inc_texture_encoders(video_t *video);
 
- extern void video_output_dec_texture_encoders(video_t *video);
 
- extern void video_output_inc_texture_frames(video_t *video);
 
- extern void video_output_inc_texture_skipped_frames(video_t *video);
 
- extern video_t *video_output_create_with_frame_rate_divisor(video_t *video,
 
- 							    uint32_t divisor);
 
- extern void video_output_free_frame_rate_divisor(video_t *video);
 
- #ifdef __cplusplus
 
- }
 
- #endif
 
 
  |