| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | #define _POSIX_C_SOURCE 199309L
 | 
					
						
							| 
									
										
										
										
											2022-02-17 16:46:17 -05:00
										 |  |  | #include <libavcodec/avcodec.h>
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | #include <libavformat/avformat.h>
 | 
					
						
							|  |  |  | #include <libavutil/display.h>
 | 
					
						
							|  |  |  | #include <libavutil/hwcontext_drm.h>
 | 
					
						
							|  |  |  | #include <libavutil/pixdesc.h>
 | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | #include <poll.h>
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | #include <signal.h>
 | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | #include <pthread.h>
 | 
					
						
							|  |  |  | #include <stdbool.h>
 | 
					
						
							| 
									
										
										
										
											2018-10-15 11:39:35 +13:00
										 |  |  | #include <drm_fourcc.h>
 | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | #include "wlr-export-dmabuf-unstable-v1-client-protocol.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct wayland_output { | 
					
						
							|  |  |  | 	struct wl_list link; | 
					
						
							|  |  |  | 	uint32_t id; | 
					
						
							|  |  |  | 	struct wl_output *output; | 
					
						
							|  |  |  | 	char *make; | 
					
						
							|  |  |  | 	char *model; | 
					
						
							|  |  |  | 	int width; | 
					
						
							|  |  |  | 	int height; | 
					
						
							|  |  |  | 	AVRational framerate; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | struct fifo_buffer { | 
					
						
							|  |  |  | 	AVFrame **queued_frames; | 
					
						
							|  |  |  | 	int num_queued_frames; | 
					
						
							|  |  |  | 	int max_queued_frames; | 
					
						
							|  |  |  | 	pthread_mutex_t lock; | 
					
						
							|  |  |  | 	pthread_cond_t cond; | 
					
						
							|  |  |  | 	pthread_mutex_t cond_lock; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | struct capture_context { | 
					
						
							|  |  |  | 	AVClass *class; /* For pretty logging */ | 
					
						
							|  |  |  | 	struct wl_display *display; | 
					
						
							|  |  |  | 	struct wl_registry *registry; | 
					
						
							|  |  |  | 	struct zwlr_export_dmabuf_manager_v1 *export_manager; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct wl_list output_list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Target */ | 
					
						
							|  |  |  | 	struct wl_output *target_output; | 
					
						
							| 
									
										
										
										
											2018-09-18 11:48:04 +02:00
										 |  |  | 	bool with_cursor; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Main frame callback */ | 
					
						
							|  |  |  | 	struct zwlr_export_dmabuf_frame_v1 *frame_callback; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If something happens during capture */ | 
					
						
							|  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	bool quit; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* FFmpeg specific parts */ | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	pthread_t vid_thread; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	AVFrame *current_frame; | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	AVFormatContext *avf; | 
					
						
							|  |  |  | 	AVCodecContext *avctx; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	AVBufferRef *drm_device_ref; | 
					
						
							|  |  |  | 	AVBufferRef *drm_frames_ref; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	AVBufferRef *mapped_device_ref; | 
					
						
							|  |  |  | 	AVBufferRef *mapped_frames_ref; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	/* Sync stuff */ | 
					
						
							|  |  |  | 	struct fifo_buffer vid_frames; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	int64_t start_pts; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Config */ | 
					
						
							|  |  |  | 	enum AVPixelFormat software_format; | 
					
						
							|  |  |  | 	enum AVHWDeviceType hw_device_type; | 
					
						
							|  |  |  | 	AVDictionary *encoder_opts; | 
					
						
							|  |  |  | 	int is_software_encoder; | 
					
						
							|  |  |  | 	char *hardware_device; | 
					
						
							|  |  |  | 	char *out_filename; | 
					
						
							|  |  |  | 	char *encoder_name; | 
					
						
							|  |  |  | 	float out_bitrate; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | static int init_fifo(struct fifo_buffer *buf, int max_queued_frames) { | 
					
						
							|  |  |  | 	pthread_mutex_init(&buf->lock, NULL); | 
					
						
							|  |  |  | 	pthread_cond_init(&buf->cond, NULL); | 
					
						
							|  |  |  | 	pthread_mutex_init(&buf->cond_lock, NULL); | 
					
						
							|  |  |  | 	buf->num_queued_frames = 0; | 
					
						
							|  |  |  | 	buf->max_queued_frames = max_queued_frames; | 
					
						
							|  |  |  | 	buf->queued_frames = av_mallocz(buf->max_queued_frames * sizeof(AVFrame)); | 
					
						
							|  |  |  | 	return !buf->queued_frames ? AVERROR(ENOMEM) : 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int get_fifo_size(struct fifo_buffer *buf) { | 
					
						
							|  |  |  | 	pthread_mutex_lock(&buf->lock); | 
					
						
							|  |  |  | 	int ret = buf->num_queued_frames; | 
					
						
							|  |  |  | 	pthread_mutex_unlock(&buf->lock); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int push_to_fifo(struct fifo_buffer *buf, AVFrame *f) { | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 	pthread_mutex_lock(&buf->lock); | 
					
						
							|  |  |  | 	if ((buf->num_queued_frames + 1) > buf->max_queued_frames) { | 
					
						
							|  |  |  | 		av_frame_free(&f); | 
					
						
							|  |  |  | 		ret = 1; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		buf->queued_frames[buf->num_queued_frames++] = f; | 
					
						
							|  |  |  | 		ret = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pthread_mutex_unlock(&buf->lock); | 
					
						
							|  |  |  | 	pthread_cond_signal(&buf->cond); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static AVFrame *pop_from_fifo(struct fifo_buffer *buf) { | 
					
						
							|  |  |  | 	pthread_mutex_lock(&buf->lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!buf->num_queued_frames) { | 
					
						
							|  |  |  | 		pthread_mutex_unlock(&buf->lock); | 
					
						
							|  |  |  | 		pthread_cond_wait(&buf->cond, &buf->cond_lock); | 
					
						
							|  |  |  | 		pthread_mutex_lock(&buf->lock); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AVFrame *rf = buf->queued_frames[0]; | 
					
						
							|  |  |  | 	for (int i = 1; i < buf->num_queued_frames; i++) { | 
					
						
							|  |  |  | 		buf->queued_frames[i - 1] = buf->queued_frames[i]; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	buf->num_queued_frames--; | 
					
						
							|  |  |  | 	buf->queued_frames[buf->num_queued_frames] = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pthread_mutex_unlock(&buf->lock); | 
					
						
							|  |  |  | 	return rf; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void free_fifo(struct fifo_buffer *buf) { | 
					
						
							|  |  |  | 	pthread_mutex_lock(&buf->lock); | 
					
						
							|  |  |  | 	if (buf->num_queued_frames) { | 
					
						
							|  |  |  | 		for (int i = 0; i < buf->num_queued_frames; i++) { | 
					
						
							|  |  |  | 			av_frame_free(&buf->queued_frames[i]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	av_freep(&buf->queued_frames); | 
					
						
							|  |  |  | 	pthread_mutex_unlock(&buf->lock); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | static void output_handle_geometry(void *data, struct wl_output *wl_output, | 
					
						
							|  |  |  | 		int32_t x, int32_t y, int32_t phys_width, int32_t phys_height, | 
					
						
							|  |  |  | 		int32_t subpixel, const char *make, const char *model, | 
					
						
							|  |  |  | 		int32_t transform) { | 
					
						
							|  |  |  | 	struct wayland_output *output = data; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	output->make = av_strdup(make); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	output->model = av_strdup(model); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void output_handle_mode(void *data, struct wl_output *wl_output, | 
					
						
							|  |  |  | 		uint32_t flags, int32_t width, int32_t height, int32_t refresh) { | 
					
						
							|  |  |  | 	if (flags & WL_OUTPUT_MODE_CURRENT) { | 
					
						
							| 
									
										
										
										
											2018-05-28 00:55:13 +01:00
										 |  |  | 		struct wayland_output *output = data; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 		output->width = width; | 
					
						
							|  |  |  | 		output->height = height; | 
					
						
							| 
									
										
										
										
											2018-05-28 00:55:13 +01:00
										 |  |  | 		output->framerate = (AVRational){ refresh, 1000 }; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void output_handle_done(void* data, struct wl_output *wl_output) { | 
					
						
							|  |  |  | 	/* Nothing to do */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void output_handle_scale(void* data, struct wl_output *wl_output, | 
					
						
							|  |  |  | 		int32_t factor) { | 
					
						
							|  |  |  | 	/* Nothing to do */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct wl_output_listener output_listener = { | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	.geometry = output_handle_geometry, | 
					
						
							|  |  |  | 	.mode = output_handle_mode, | 
					
						
							|  |  |  | 	.done = output_handle_done, | 
					
						
							|  |  |  | 	.scale = output_handle_scale, | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void registry_handle_add(void *data, struct wl_registry *reg, | 
					
						
							|  |  |  | 		uint32_t id, const char *interface, uint32_t ver) { | 
					
						
							|  |  |  | 	struct capture_context *ctx = data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!strcmp(interface, wl_output_interface.name)) { | 
					
						
							|  |  |  | 		struct wayland_output *output = av_mallocz(sizeof(*output)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 		output->id = id; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 		output->output = wl_registry_bind(reg, id, &wl_output_interface, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		wl_output_add_listener(output->output, &output_listener, output); | 
					
						
							|  |  |  | 		wl_list_insert(&ctx->output_list, &output->link); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!strcmp(interface, zwlr_export_dmabuf_manager_v1_interface.name)) { | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 		ctx->export_manager = wl_registry_bind(reg, id, | 
					
						
							|  |  |  | 				&zwlr_export_dmabuf_manager_v1_interface, 1); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void remove_output(struct wayland_output *out) { | 
					
						
							|  |  |  | 	wl_list_remove(&out->link); | 
					
						
							|  |  |  | 	av_free(out->make); | 
					
						
							|  |  |  | 	av_free(out->model); | 
					
						
							|  |  |  | 	av_free(out); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct wayland_output *find_output(struct capture_context *ctx, | 
					
						
							| 
									
										
										
										
											2020-04-30 17:04:10 +02:00
										 |  |  | 		struct wl_output *out, int id) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	struct wayland_output *output, *tmp; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	wl_list_for_each_safe(output, tmp, &ctx->output_list, link) { | 
					
						
							| 
									
										
										
										
											2020-04-30 17:04:10 +02:00
										 |  |  | 		if (output->output == out || (id >= 0 && output->id == (uint32_t)id) | 
					
						
							|  |  |  | 				|| id == -1) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 			return output; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void registry_handle_remove(void *data, struct wl_registry *reg, | 
					
						
							|  |  |  | 		uint32_t id) { | 
					
						
							|  |  |  | 	remove_output(find_output((struct capture_context *)data, NULL, id)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct wl_registry_listener registry_listener = { | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	.global = registry_handle_add, | 
					
						
							|  |  |  | 	.global_remove = registry_handle_remove, | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void frame_free(void *opaque, uint8_t *data) { | 
					
						
							|  |  |  | 	AVDRMFrameDescriptor *desc = (AVDRMFrameDescriptor *)data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-29 19:56:43 +01:00
										 |  |  | 	if (desc) { | 
					
						
							|  |  |  | 		for (int i = 0; i < desc->nb_objects; ++i) { | 
					
						
							|  |  |  | 			close(desc->objects[i].fd); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		av_free(data); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	zwlr_export_dmabuf_frame_v1_destroy(opaque); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void frame_start(void *data, struct zwlr_export_dmabuf_frame_v1 *frame, | 
					
						
							|  |  |  | 		uint32_t width, uint32_t height, uint32_t offset_x, uint32_t offset_y, | 
					
						
							|  |  |  | 		uint32_t buffer_flags, uint32_t flags, uint32_t format, | 
					
						
							| 
									
										
										
										
											2018-06-17 14:06:52 +01:00
										 |  |  | 		uint32_t mod_high, uint32_t mod_low, uint32_t num_objects) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	struct capture_context *ctx = data; | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Allocate DRM specific struct */ | 
					
						
							|  |  |  | 	AVDRMFrameDescriptor *desc = av_mallocz(sizeof(*desc)); | 
					
						
							|  |  |  | 	if (!desc) { | 
					
						
							|  |  |  | 		err = AVERROR(ENOMEM); | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	desc->nb_objects = num_objects; | 
					
						
							|  |  |  | 	desc->objects[0].format_modifier = ((uint64_t)mod_high << 32) | mod_low; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	desc->nb_layers = 1; | 
					
						
							|  |  |  | 	desc->layers[0].format = format; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Allocate a frame */ | 
					
						
							|  |  |  | 	AVFrame *f = av_frame_alloc(); | 
					
						
							|  |  |  | 	if (!f) { | 
					
						
							|  |  |  | 		err = AVERROR(ENOMEM); | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Set base frame properties */ | 
					
						
							|  |  |  | 	ctx->current_frame = f; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	f->width = width; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	f->height = height; | 
					
						
							|  |  |  | 	f->format = AV_PIX_FMT_DRM_PRIME; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Set the frame data to the DRM specific struct */ | 
					
						
							|  |  |  | 	f->buf[0] = av_buffer_create((uint8_t*)desc, sizeof(*desc), | 
					
						
							|  |  |  | 			&frame_free, frame, 0); | 
					
						
							|  |  |  | 	if (!f->buf[0]) { | 
					
						
							|  |  |  | 		err = AVERROR(ENOMEM); | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	f->data[0] = (uint8_t*)desc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | fail: | 
					
						
							|  |  |  | 	ctx->err = err; | 
					
						
							|  |  |  | 	frame_free(frame, (uint8_t *)desc); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void frame_object(void *data, struct zwlr_export_dmabuf_frame_v1 *frame, | 
					
						
							| 
									
										
										
										
											2018-06-17 14:06:52 +01:00
										 |  |  | 		uint32_t index, int32_t fd, uint32_t size, uint32_t offset, | 
					
						
							|  |  |  | 		uint32_t stride, uint32_t plane_index) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	struct capture_context *ctx = data; | 
					
						
							|  |  |  | 	AVFrame *f = ctx->current_frame; | 
					
						
							|  |  |  | 	AVDRMFrameDescriptor *desc = (AVDRMFrameDescriptor *)f->data[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	desc->objects[index].fd = fd; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	desc->objects[index].size = size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-17 14:06:52 +01:00
										 |  |  | 	desc->layers[0].planes[plane_index].object_index = index; | 
					
						
							|  |  |  | 	desc->layers[0].planes[plane_index].offset = offset; | 
					
						
							|  |  |  | 	desc->layers[0].planes[plane_index].pitch = stride; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static enum AVPixelFormat drm_fmt_to_pixfmt(uint32_t fmt) { | 
					
						
							| 
									
										
										
										
											2018-06-17 15:19:17 +01:00
										 |  |  | 	switch (fmt) { | 
					
						
							|  |  |  | 	case DRM_FORMAT_NV12: return AV_PIX_FMT_NV12; | 
					
						
							|  |  |  | 	case DRM_FORMAT_ARGB8888: return AV_PIX_FMT_BGRA; | 
					
						
							|  |  |  | 	case DRM_FORMAT_XRGB8888: return AV_PIX_FMT_BGR0; | 
					
						
							|  |  |  | 	case DRM_FORMAT_ABGR8888: return AV_PIX_FMT_RGBA; | 
					
						
							|  |  |  | 	case DRM_FORMAT_XBGR8888: return AV_PIX_FMT_RGB0; | 
					
						
							|  |  |  | 	case DRM_FORMAT_RGBA8888: return AV_PIX_FMT_ABGR; | 
					
						
							|  |  |  | 	case DRM_FORMAT_RGBX8888: return AV_PIX_FMT_0BGR; | 
					
						
							|  |  |  | 	case DRM_FORMAT_BGRA8888: return AV_PIX_FMT_ARGB; | 
					
						
							|  |  |  | 	case DRM_FORMAT_BGRX8888: return AV_PIX_FMT_0RGB; | 
					
						
							|  |  |  | 	default: return AV_PIX_FMT_NONE; | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int attach_drm_frames_ref(struct capture_context *ctx, AVFrame *f, | 
					
						
							|  |  |  | 		enum AVPixelFormat sw_format) { | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 	AVHWFramesContext *hwfc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ctx->drm_frames_ref) { | 
					
						
							|  |  |  | 		hwfc = (AVHWFramesContext*)ctx->drm_frames_ref->data; | 
					
						
							|  |  |  | 		if (hwfc->width == f->width && hwfc->height == f->height && | 
					
						
							|  |  |  | 				hwfc->sw_format == sw_format) { | 
					
						
							|  |  |  | 			goto attach; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		av_buffer_unref(&ctx->drm_frames_ref); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx->drm_frames_ref = av_hwframe_ctx_alloc(ctx->drm_device_ref); | 
					
						
							|  |  |  | 	if (!ctx->drm_frames_ref) { | 
					
						
							|  |  |  | 		err = AVERROR(ENOMEM); | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hwfc = (AVHWFramesContext*)ctx->drm_frames_ref->data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	hwfc->format = f->format; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	hwfc->sw_format = sw_format; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	hwfc->width = f->width; | 
					
						
							|  |  |  | 	hwfc->height = f->height; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = av_hwframe_ctx_init(ctx->drm_frames_ref); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "AVHWFramesContext init failed: %s!\n", | 
					
						
							|  |  |  | 				av_err2str(err)); | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | attach: | 
					
						
							|  |  |  | 	/* Set frame hardware context referencce */ | 
					
						
							|  |  |  | 	f->hw_frames_ctx = av_buffer_ref(ctx->drm_frames_ref); | 
					
						
							|  |  |  | 	if (!f->hw_frames_ctx) { | 
					
						
							|  |  |  | 		err = AVERROR(ENOMEM); | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | fail: | 
					
						
							|  |  |  | 	av_buffer_unref(&ctx->drm_frames_ref); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void register_cb(struct capture_context *ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void frame_ready(void *data, struct zwlr_export_dmabuf_frame_v1 *frame, | 
					
						
							|  |  |  | 		uint32_t tv_sec_hi, uint32_t tv_sec_lo, uint32_t tv_nsec) { | 
					
						
							|  |  |  | 	struct capture_context *ctx = data; | 
					
						
							|  |  |  | 	AVFrame *f = ctx->current_frame; | 
					
						
							|  |  |  | 	AVDRMFrameDescriptor *desc = (AVDRMFrameDescriptor *)f->data[0]; | 
					
						
							| 
									
										
										
										
											2018-06-17 14:06:52 +01:00
										 |  |  | 	enum AVPixelFormat pix_fmt = drm_fmt_to_pixfmt(desc->layers[0].format); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	int err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	/* Timestamp, nanoseconds timebase */ | 
					
						
							|  |  |  | 	f->pts = ((((uint64_t)tv_sec_hi) << 32) | tv_sec_lo) * 1000000000 + tv_nsec; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!ctx->start_pts) { | 
					
						
							|  |  |  | 		ctx->start_pts = f->pts; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	f->pts = av_rescale_q(f->pts - ctx->start_pts, (AVRational){ 1, 1000000000 }, | 
					
						
							|  |  |  | 			ctx->avctx->time_base); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	/* Attach the hardware frame context to the frame */ | 
					
						
							| 
									
										
										
										
											2018-06-17 14:06:52 +01:00
										 |  |  | 	err = attach_drm_frames_ref(ctx, f, pix_fmt); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	if (err) { | 
					
						
							|  |  |  | 		goto end; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-17 14:06:52 +01:00
										 |  |  | 	/* TODO: support multiplane stuff */ | 
					
						
							|  |  |  | 	desc->layers[0].nb_planes = av_pix_fmt_count_planes(pix_fmt); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	AVFrame *mapped_frame = av_frame_alloc(); | 
					
						
							|  |  |  | 	if (!mapped_frame) { | 
					
						
							|  |  |  | 		err = AVERROR(ENOMEM); | 
					
						
							|  |  |  | 		goto end; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AVHWFramesContext *mapped_hwfc; | 
					
						
							|  |  |  | 	mapped_hwfc = (AVHWFramesContext *)ctx->mapped_frames_ref->data; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	mapped_frame->format = mapped_hwfc->format; | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	mapped_frame->pts = f->pts; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Set frame hardware context referencce */ | 
					
						
							|  |  |  | 	mapped_frame->hw_frames_ctx = av_buffer_ref(ctx->mapped_frames_ref); | 
					
						
							|  |  |  | 	if (!mapped_frame->hw_frames_ctx) { | 
					
						
							|  |  |  | 		err = AVERROR(ENOMEM); | 
					
						
							|  |  |  | 		goto end; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = av_hwframe_map(mapped_frame, f, 0); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 		av_log(ctx, AV_LOG_ERROR, "Error mapping: %s!\n", av_err2str(err)); | 
					
						
							|  |  |  | 		goto end; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	if (push_to_fifo(&ctx->vid_frames, mapped_frame)) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_WARNING, "Dropped frame!\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	if (!ctx->quit && !ctx->err) { | 
					
						
							|  |  |  | 		register_cb(ctx); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | end: | 
					
						
							|  |  |  | 	ctx->err = err; | 
					
						
							|  |  |  | 	av_frame_free(&ctx->current_frame); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | static void frame_cancel(void *data, struct zwlr_export_dmabuf_frame_v1 *frame, | 
					
						
							|  |  |  | 		uint32_t reason) { | 
					
						
							|  |  |  | 	struct capture_context *ctx = data; | 
					
						
							|  |  |  | 	av_log(ctx, AV_LOG_WARNING, "Frame cancelled!\n"); | 
					
						
							|  |  |  | 	av_frame_free(&ctx->current_frame); | 
					
						
							|  |  |  | 	if (reason == ZWLR_EXPORT_DMABUF_FRAME_V1_CANCEL_REASON_PERMANENT) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "Permanent failure, exiting\n"); | 
					
						
							|  |  |  | 		ctx->err = true; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		register_cb(ctx); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct zwlr_export_dmabuf_frame_v1_listener frame_listener = { | 
					
						
							|  |  |  | 	.frame = frame_start, | 
					
						
							|  |  |  | 	.object = frame_object, | 
					
						
							|  |  |  | 	.ready = frame_ready, | 
					
						
							|  |  |  | 	.cancel = frame_cancel, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | static void register_cb(struct capture_context *ctx) { | 
					
						
							|  |  |  | 	ctx->frame_callback = zwlr_export_dmabuf_manager_v1_capture_output( | 
					
						
							| 
									
										
										
										
											2018-09-18 11:48:04 +02:00
										 |  |  | 			ctx->export_manager, ctx->with_cursor, ctx->target_output); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	zwlr_export_dmabuf_frame_v1_add_listener(ctx->frame_callback, | 
					
						
							|  |  |  | 			&frame_listener, ctx); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-20 00:45:19 +01:00
										 |  |  | static void *vid_encode_thread(void *arg) { | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	int err = 0; | 
					
						
							|  |  |  | 	struct capture_context *ctx = arg; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	do { | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 		AVFrame *f = NULL; | 
					
						
							|  |  |  | 		if (get_fifo_size(&ctx->vid_frames) || !ctx->quit) { | 
					
						
							|  |  |  | 			f = pop_from_fifo(&ctx->vid_frames); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 		if (ctx->is_software_encoder && f) { | 
					
						
							|  |  |  | 			AVFrame *soft_frame = av_frame_alloc(); | 
					
						
							|  |  |  | 			av_hwframe_transfer_data(soft_frame, f, 0); | 
					
						
							|  |  |  | 			soft_frame->pts = f->pts; | 
					
						
							|  |  |  | 			av_frame_free(&f); | 
					
						
							|  |  |  | 			f = soft_frame; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = avcodec_send_frame(ctx->avctx, f); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		av_frame_free(&f); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (err) { | 
					
						
							|  |  |  | 			av_log(ctx, AV_LOG_ERROR, "Error encoding: %s!\n", av_err2str(err)); | 
					
						
							|  |  |  | 			goto end; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		while (1) { | 
					
						
							| 
									
										
										
										
											2021-03-22 11:42:57 +01:00
										 |  |  | 			AVPacket *pkt = av_packet_alloc(); | 
					
						
							|  |  |  | 			int ret = avcodec_receive_packet(ctx->avctx, pkt); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 			if (ret == AVERROR(EAGAIN)) { | 
					
						
							| 
									
										
										
										
											2021-03-22 11:42:57 +01:00
										 |  |  | 				av_packet_free(&pkt); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			} else if (ret == AVERROR_EOF) { | 
					
						
							|  |  |  | 				av_log(ctx, AV_LOG_INFO, "Encoder flushed!\n"); | 
					
						
							| 
									
										
										
										
											2021-03-22 11:42:57 +01:00
										 |  |  | 				av_packet_free(&pkt); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 				goto end; | 
					
						
							|  |  |  | 			} else if (ret) { | 
					
						
							|  |  |  | 				av_log(ctx, AV_LOG_ERROR, "Error encoding: %s!\n", | 
					
						
							|  |  |  | 						av_err2str(ret)); | 
					
						
							| 
									
										
										
										
											2021-03-22 11:42:57 +01:00
										 |  |  | 				av_packet_free(&pkt); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 				err = ret; | 
					
						
							|  |  |  | 				goto end; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-22 11:42:57 +01:00
										 |  |  | 			pkt->stream_index = 0; | 
					
						
							|  |  |  | 			err = av_interleaved_write_frame(ctx->avf, pkt); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-22 11:42:57 +01:00
										 |  |  | 			av_packet_free(&pkt); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (err) { | 
					
						
							|  |  |  | 				av_log(ctx, AV_LOG_ERROR, "Writing packet fail: %s!\n", | 
					
						
							|  |  |  | 						av_err2str(err)); | 
					
						
							|  |  |  | 				goto end; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 		av_log(ctx, AV_LOG_INFO, "Encoded frame %i (%i in queue)\n", | 
					
						
							|  |  |  | 				ctx->avctx->frame_number, get_fifo_size(&ctx->vid_frames)); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	} while (!ctx->err); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | end: | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	if (!ctx->err) { | 
					
						
							|  |  |  | 		ctx->err = err; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int init_lavu_hwcontext(struct capture_context *ctx) { | 
					
						
							|  |  |  | 	/* DRM hwcontext */ | 
					
						
							|  |  |  | 	ctx->drm_device_ref = av_hwdevice_ctx_alloc(AV_HWDEVICE_TYPE_DRM); | 
					
						
							|  |  |  | 	if (!ctx->drm_device_ref) | 
					
						
							|  |  |  | 		return AVERROR(ENOMEM); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AVHWDeviceContext *ref_data = (AVHWDeviceContext*)ctx->drm_device_ref->data; | 
					
						
							|  |  |  | 	AVDRMDeviceContext *hwctx = ref_data->hwctx; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* We don't need a device (we don't even know it and can't open it) */ | 
					
						
							|  |  |  | 	hwctx->fd = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	av_hwdevice_ctx_init(ctx->drm_device_ref); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Mapped hwcontext */ | 
					
						
							|  |  |  | 	int err = av_hwdevice_ctx_create(&ctx->mapped_device_ref, | 
					
						
							|  |  |  | 			ctx->hw_device_type, ctx->hardware_device, NULL, 0); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "Failed to create a hardware device: %s\n", | 
					
						
							|  |  |  | 				av_err2str(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int set_hwframe_ctx(struct capture_context *ctx, | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 		AVBufferRef *hw_device_ctx) { | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	AVHWFramesContext *frames_ctx = NULL; | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	if (!(ctx->mapped_frames_ref = av_hwframe_ctx_alloc(hw_device_ctx))) { | 
					
						
							|  |  |  | 		return AVERROR(ENOMEM); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	AVHWFramesConstraints *cst = | 
					
						
							|  |  |  | 			av_hwdevice_get_hwframe_constraints(ctx->mapped_device_ref, NULL); | 
					
						
							|  |  |  | 	if (!cst) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "Failed to get hw device constraints!\n"); | 
					
						
							|  |  |  | 		av_buffer_unref(&ctx->mapped_frames_ref); | 
					
						
							|  |  |  | 		return AVERROR(ENOMEM); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	frames_ctx = (AVHWFramesContext *)(ctx->mapped_frames_ref->data); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	frames_ctx->format = cst->valid_hw_formats[0]; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	frames_ctx->sw_format = ctx->avctx->pix_fmt; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	frames_ctx->width = ctx->avctx->width; | 
					
						
							|  |  |  | 	frames_ctx->height = ctx->avctx->height; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	av_hwframe_constraints_free(&cst); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 00:55:13 +01:00
										 |  |  | 	if ((err = av_hwframe_ctx_init(ctx->mapped_frames_ref))) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 		av_log(ctx, AV_LOG_ERROR, "Failed to initialize hw frame context: %s!\n", | 
					
						
							|  |  |  | 				av_err2str(err)); | 
					
						
							|  |  |  | 		av_buffer_unref(&ctx->mapped_frames_ref); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!ctx->is_software_encoder) { | 
					
						
							|  |  |  | 		ctx->avctx->pix_fmt = frames_ctx->format; | 
					
						
							|  |  |  | 		ctx->avctx->hw_frames_ctx = av_buffer_ref(ctx->mapped_frames_ref); | 
					
						
							|  |  |  | 		if (!ctx->avctx->hw_frames_ctx) { | 
					
						
							|  |  |  | 			av_buffer_unref(&ctx->mapped_frames_ref); | 
					
						
							|  |  |  | 			err = AVERROR(ENOMEM); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int init_encoding(struct capture_context *ctx) { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* lavf init */ | 
					
						
							|  |  |  | 	err = avformat_alloc_output_context2(&ctx->avf, NULL, | 
					
						
							|  |  |  | 			NULL, ctx->out_filename); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	if (err) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "Unable to init lavf context!\n"); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	AVStream *st = avformat_new_stream(ctx->avf, NULL); | 
					
						
							|  |  |  | 	if (!st) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "Unable to alloc stream!\n"); | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Find encoder */ | 
					
						
							| 
									
										
										
										
											2022-02-17 16:46:17 -05:00
										 |  |  | 	const AVCodec *out_codec = avcodec_find_encoder_by_name(ctx->encoder_name); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	if (!out_codec) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "Codec not found (not compiled in lavc?)!\n"); | 
					
						
							|  |  |  | 		return AVERROR(EINVAL); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-02-17 16:46:17 -05:00
										 |  |  | 	ctx->avf->oformat = av_guess_format(ctx->encoder_name, NULL, NULL); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	ctx->is_software_encoder = !(out_codec->capabilities & AV_CODEC_CAP_HARDWARE); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ctx->avctx = avcodec_alloc_context3(out_codec); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	if (!ctx->avctx) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	ctx->avctx->opaque = ctx; | 
					
						
							|  |  |  | 	ctx->avctx->bit_rate = (int)ctx->out_bitrate*1000000.0f; | 
					
						
							|  |  |  | 	ctx->avctx->pix_fmt = ctx->software_format; | 
					
						
							|  |  |  | 	ctx->avctx->time_base = (AVRational){ 1, 1000 }; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	ctx->avctx->compression_level = 7; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	ctx->avctx->width = find_output(ctx, ctx->target_output, 0)->width; | 
					
						
							|  |  |  | 	ctx->avctx->height = find_output(ctx, ctx->target_output, 0)->height; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	if (ctx->avf->oformat->flags & AVFMT_GLOBALHEADER) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 		ctx->avctx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	st->id = 0; | 
					
						
							|  |  |  | 	st->time_base = ctx->avctx->time_base; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	st->avg_frame_rate = find_output(ctx, ctx->target_output, 0)->framerate; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	/* Init hw frames context */ | 
					
						
							|  |  |  | 	err = set_hwframe_ctx(ctx, ctx->mapped_device_ref); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = avcodec_open2(ctx->avctx, out_codec, &ctx->encoder_opts); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 		av_log(ctx, AV_LOG_ERROR, "Cannot open encoder: %s!\n", | 
					
						
							|  |  |  | 				av_err2str(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (avcodec_parameters_from_context(st->codecpar, ctx->avctx) < 0) { | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 		av_log(ctx, AV_LOG_ERROR, "Couldn't copy codec params: %s!\n", | 
					
						
							|  |  |  | 				av_err2str(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Debug print */ | 
					
						
							|  |  |  | 	av_dump_format(ctx->avf, 0, ctx->out_filename, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Open for writing */ | 
					
						
							|  |  |  | 	err = avio_open(&ctx->avf->pb, ctx->out_filename, AVIO_FLAG_WRITE); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "Couldn't open %s: %s!\n", ctx->out_filename, | 
					
						
							|  |  |  | 				av_err2str(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = avformat_write_header(ctx->avf, NULL); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	if (err) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "Couldn't write header: %s!\n", av_err2str(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct capture_context *q_ctx = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-20 00:45:19 +01:00
										 |  |  | static void on_quit_signal(int signo) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	printf("\r"); | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	av_log(q_ctx, AV_LOG_WARNING, "Quitting!\n"); | 
					
						
							|  |  |  | 	q_ctx->quit = true; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int main_loop(struct capture_context *ctx) { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	q_ctx = ctx; | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	if (signal(SIGINT, on_quit_signal) == SIG_ERR) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 		av_log(ctx, AV_LOG_ERROR, "Unable to install signal handler!\n"); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 		return AVERROR(EINVAL); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = init_lavu_hwcontext(ctx); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = init_encoding(ctx); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	/* Start video encoding thread */ | 
					
						
							|  |  |  | 	err = init_fifo(&ctx->vid_frames, 16); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pthread_create(&ctx->vid_thread, NULL, vid_encode_thread, ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	/* Start the frame callback */ | 
					
						
							|  |  |  | 	register_cb(ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	/* Run capture */ | 
					
						
							|  |  |  | 	while (wl_display_dispatch(ctx->display) != -1 && !ctx->err && !ctx->quit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Join with encoder thread */ | 
					
						
							|  |  |  | 	pthread_join(ctx->vid_thread, NULL); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = av_write_trailer(ctx->avf); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	if (err) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "Error writing trailer: %s!\n", | 
					
						
							|  |  |  | 				av_err2str(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	av_log(ctx, AV_LOG_INFO, "Wrote trailer!\n"); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return ctx->err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int init(struct capture_context *ctx) { | 
					
						
							|  |  |  | 	ctx->display = wl_display_connect(NULL); | 
					
						
							|  |  |  | 	if (!ctx->display) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "Failed to connect to display!\n"); | 
					
						
							|  |  |  | 		return AVERROR(EINVAL); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wl_list_init(&ctx->output_list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx->registry = wl_display_get_registry(ctx->display); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	wl_registry_add_listener(ctx->registry, ®istry_listener, ctx); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-31 16:38:39 +02:00
										 |  |  | 	// First roundtrip to fetch globals
 | 
					
						
							|  |  |  | 	wl_display_roundtrip(ctx->display); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Second roundtrip to fetch wl_output information
 | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	wl_display_roundtrip(ctx->display); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!ctx->export_manager) { | 
					
						
							|  |  |  | 		av_log(ctx, AV_LOG_ERROR, "Compositor doesn't support %s!\n", | 
					
						
							|  |  |  | 				zwlr_export_dmabuf_manager_v1_interface.name); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void uninit(struct capture_context *ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-30 17:04:10 +02:00
										 |  |  | static const char usage[] = "usage: dmabuf-capture [options...] <destination file path>\n" | 
					
						
							|  |  |  | 	"  -o <output ID>\n" | 
					
						
							|  |  |  | 	"  -t <hardware device type>\n" | 
					
						
							|  |  |  | 	"  -d <device path>\n" | 
					
						
							|  |  |  | 	"  -e <encoder>\n" | 
					
						
							|  |  |  | 	"  -f <pixel format>\n" | 
					
						
							|  |  |  | 	"  -r <bitrate in Mbps>\n" | 
					
						
							|  |  |  | 	"\n" | 
					
						
							|  |  |  | 	"Example:\n" | 
					
						
							|  |  |  | 	"  dmabuf-capture -o 32 -t vaapi -d /dev/dri/renderD129 \\\n" | 
					
						
							|  |  |  | 	"    -e libx264 -f nv12 -r 12 recording.mkv\n"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | int main(int argc, char *argv[]) { | 
					
						
							| 
									
										
										
										
											2020-04-30 17:04:10 +02:00
										 |  |  | 	struct capture_context ctx = { | 
					
						
							|  |  |  | 		.hardware_device = "/dev/dri/renderD128", | 
					
						
							|  |  |  | 		.encoder_name = "libx264", | 
					
						
							|  |  |  | 		.out_bitrate = 12, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	int output_id = -1; | 
					
						
							|  |  |  | 	const char *hw_device_type = "vaapi"; | 
					
						
							|  |  |  | 	const char *software_format = "nv12"; | 
					
						
							|  |  |  | 	int opt; | 
					
						
							|  |  |  | 	while ((opt = getopt(argc, argv, "ho:t:d:e:f:r:")) != -1) { | 
					
						
							|  |  |  | 		char *end; | 
					
						
							|  |  |  | 		switch (opt) { | 
					
						
							|  |  |  | 		case 'o': | 
					
						
							|  |  |  | 			output_id = strtol(optarg, &end, 10); | 
					
						
							|  |  |  | 			if (optarg[0] == '\0' || end[0] != '\0') { | 
					
						
							|  |  |  | 				fprintf(stderr, "Output ID is not an integer\n"); | 
					
						
							|  |  |  | 				return 1; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 't': | 
					
						
							|  |  |  | 			hw_device_type = optarg; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'd': | 
					
						
							|  |  |  | 			ctx.hardware_device = optarg; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'e': | 
					
						
							|  |  |  | 			ctx.encoder_name = optarg; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'f': | 
					
						
							|  |  |  | 			software_format = optarg; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'r': | 
					
						
							|  |  |  | 			ctx.out_bitrate = strtof(optarg, &end); | 
					
						
							|  |  |  | 			if (optarg[0] == '\0' || end[0] != '\0') { | 
					
						
							|  |  |  | 				fprintf(stderr, "Bitrate is not a floating-pointer number\n"); | 
					
						
							|  |  |  | 				return 1; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			fprintf(stderr, "%s", usage); | 
					
						
							|  |  |  | 			return 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (optind >= argc) { | 
					
						
							|  |  |  | 		fprintf(stderr, "Missing destination file argument\n"); | 
					
						
							|  |  |  | 		fprintf(stderr, "%s", usage); | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ctx.out_filename = argv[optind]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx.class = &((AVClass){ | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 		.class_name = "dmabuf-capture", | 
					
						
							|  |  |  | 		.item_name  = av_default_item_name, | 
					
						
							|  |  |  | 		.version    = LIBAVUTIL_VERSION_INT, | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-30 17:04:10 +02:00
										 |  |  | 	int err = init(&ctx); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 		goto end; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 00:55:13 +01:00
										 |  |  | 	struct wayland_output *o, *tmp_o; | 
					
						
							|  |  |  | 	wl_list_for_each_reverse_safe(o, tmp_o, &ctx.output_list, link) { | 
					
						
							|  |  |  | 		printf("Capturable output: %s Model: %s: ID: %i\n", | 
					
						
							|  |  |  | 				o->make, o->model, o->id); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-30 17:04:10 +02:00
										 |  |  | 	o = find_output(&ctx, NULL, output_id); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:55:13 +01:00
										 |  |  | 	if (!o) { | 
					
						
							| 
									
										
										
										
											2020-04-30 17:04:10 +02:00
										 |  |  | 		printf("Unable to find output with ID %d\n", output_id); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:55:13 +01:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 00:55:13 +01:00
										 |  |  | 	ctx.target_output = o->output; | 
					
						
							| 
									
										
										
										
											2018-09-18 11:48:04 +02:00
										 |  |  | 	ctx.with_cursor = true; | 
					
						
							| 
									
										
										
										
											2020-04-30 17:04:10 +02:00
										 |  |  | 	ctx.hw_device_type = av_hwdevice_find_type_by_name(hw_device_type); | 
					
						
							|  |  |  | 	ctx.software_format = av_get_pix_fmt(software_format); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 00:55:13 +01:00
										 |  |  | 	av_dict_set(&ctx.encoder_opts, "preset", "veryfast", 0); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = main_loop(&ctx); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 		goto end; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  | 	uninit(&ctx); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void uninit(struct capture_context *ctx) { | 
					
						
							|  |  |  | 	struct wayland_output *output, *tmp_o; | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	wl_list_for_each_safe(output, tmp_o, &ctx->output_list, link) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 		remove_output(output); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	if (ctx->export_manager) { | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 		zwlr_export_dmabuf_manager_v1_destroy(ctx->export_manager); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:37:18 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 02:43:52 +01:00
										 |  |  | 	free_fifo(&ctx->vid_frames); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 	av_buffer_unref(&ctx->drm_frames_ref); | 
					
						
							| 
									
										
										
										
											2018-05-28 08:20:22 +01:00
										 |  |  | 	av_buffer_unref(&ctx->drm_device_ref); | 
					
						
							|  |  |  | 	av_buffer_unref(&ctx->mapped_frames_ref); | 
					
						
							|  |  |  | 	av_buffer_unref(&ctx->mapped_device_ref); | 
					
						
							| 
									
										
										
										
											2018-05-27 04:03:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	av_dict_free(&ctx->encoder_opts); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	avcodec_close(ctx->avctx); | 
					
						
							|  |  |  | 	if (ctx->avf) { | 
					
						
							|  |  |  | 		avio_closep(&ctx->avf->pb); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	avformat_free_context(ctx->avf); | 
					
						
							|  |  |  | } |