]> git.sesse.net Git - ffmpeg/blob - libavdevice/xv.c
Merge commit '1afa8a7568ba57ad0cd2923f6e641e10d32cded4'
[ffmpeg] / libavdevice / xv.c
1 /*
2  * Copyright (c) 2013 Jeff Moguillansky
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * XVideo output device
24  *
25  * TODO:
26  * - add support to more formats
27  * - add support to window id specification
28  */
29
30 #include <X11/Xlib.h>
31 #include <X11/extensions/Xv.h>
32 #include <X11/extensions/XShm.h>
33 #include <X11/extensions/Xvlib.h>
34 #include <sys/shm.h>
35
36 #include "libavutil/opt.h"
37 #include "libavutil/pixdesc.h"
38 #include "avdevice.h"
39
40 typedef struct {
41     AVClass *class;
42     GC gc;
43
44     Window window;
45     char *window_title;
46     int window_width, window_height;
47     int window_x, window_y;
48
49     Display* display;
50     char *display_name;
51
52     XvImage* yuv_image;
53     int image_width, image_height;
54     XShmSegmentInfo yuv_shminfo;
55     int xv_port;
56 } XVContext;
57
58 static int xv_write_header(AVFormatContext *s)
59 {
60     XVContext *xv = s->priv_data;
61     unsigned int num_adaptors;
62     XvAdaptorInfo *ai;
63     XvImageFormatValues *fv;
64     int num_formats = 0, j;
65     AVCodecContext *encctx = s->streams[0]->codec;
66
67     if (   s->nb_streams > 1
68         || encctx->codec_type != AVMEDIA_TYPE_VIDEO
69         || encctx->codec_id   != AV_CODEC_ID_RAWVIDEO) {
70         av_log(s, AV_LOG_ERROR, "Only supports one rawvideo stream\n");
71         return AVERROR(EINVAL);
72     }
73
74     xv->display = XOpenDisplay(xv->display_name);
75     if (!xv->display) {
76         av_log(s, AV_LOG_ERROR, "Could not open the X11 display '%s'\n", xv->display_name);
77         return AVERROR(EINVAL);
78     }
79
80     xv->image_width  = encctx->width;
81     xv->image_height = encctx->height;
82     if (!xv->window_width && !xv->window_height) {
83         xv->window_width  = encctx->width;
84         xv->window_height = encctx->height;
85     }
86     xv->window = XCreateSimpleWindow(xv->display, DefaultRootWindow(xv->display),
87                                      xv->window_x, xv->window_y,
88                                      xv->window_width, xv->window_height,
89                                      0, 0, 0);
90     if (!xv->window_title) {
91         if (!(xv->window_title = av_strdup(s->filename)))
92             return AVERROR(ENOMEM);
93     }
94     XStoreName(xv->display, xv->window, xv->window_title);
95     XMapWindow(xv->display, xv->window);
96
97     if (XvQueryAdaptors(xv->display, DefaultRootWindow(xv->display), &num_adaptors, &ai) != Success)
98         return AVERROR_EXTERNAL;
99     xv->xv_port = ai[0].base_id;
100     XvFreeAdaptorInfo(ai);
101
102     if (encctx->pix_fmt != AV_PIX_FMT_YUV420P) {
103         av_log(s, AV_LOG_ERROR,
104                "Unsupported pixel format '%s', only yuv420p is currently supported\n",
105                av_get_pix_fmt_name(encctx->pix_fmt));
106         return AVERROR_PATCHWELCOME;
107     }
108
109     fv = XvListImageFormats(xv->display, xv->xv_port, &num_formats);
110     if (!fv)
111         return AVERROR_EXTERNAL;
112     for (j = 0; j < num_formats; j++) {
113         if (fv[j].id == MKTAG('I','4','2','0')) {
114             break;
115         }
116     }
117     XFree(fv);
118
119     if (j >= num_formats) {
120         av_log(s, AV_LOG_ERROR,
121                "Device does not support pixel format yuv420p, aborting\n");
122         return AVERROR(EINVAL);
123     }
124
125     xv->gc = XCreateGC(xv->display, xv->window, 0, 0);
126     xv->image_width  = encctx->width;
127     xv->image_height = encctx->height;
128     xv->yuv_image = XvShmCreateImage(xv->display, xv->xv_port,
129                                      MKTAG('I','4','2','0'), 0,
130                                      xv->image_width, xv->image_height, &xv->yuv_shminfo);
131     xv->yuv_shminfo.shmid = shmget(IPC_PRIVATE, xv->yuv_image->data_size,
132                                    IPC_CREAT | 0777);
133     xv->yuv_shminfo.shmaddr = (char *)shmat(xv->yuv_shminfo.shmid, 0, 0);
134     xv->yuv_image->data = xv->yuv_shminfo.shmaddr;
135     xv->yuv_shminfo.readOnly = False;
136
137     XShmAttach(xv->display, &xv->yuv_shminfo);
138     XSync(xv->display, False);
139     shmctl(xv->yuv_shminfo.shmid, IPC_RMID, 0);
140
141     return 0;
142 }
143
144 static int xv_write_packet(AVFormatContext *s, AVPacket *pkt)
145 {
146     XVContext *xv = s->priv_data;
147     XvImage *img = xv->yuv_image;
148     XWindowAttributes window_attrs;
149     AVPicture pict;
150     AVCodecContext *ctx = s->streams[0]->codec;
151     int y, h;
152
153     h = img->height / 2;
154
155     avpicture_fill(&pict, pkt->data, ctx->pix_fmt, ctx->width, ctx->height);
156     for (y = 0; y < img->height; y++) {
157         memcpy(&img->data[img->offsets[0] + (y * img->pitches[0])],
158                &pict.data[0][y * pict.linesize[0]], img->pitches[0]);
159     }
160
161     for (y = 0; y < h; ++y) {
162         memcpy(&img->data[img->offsets[1] + (y * img->pitches[1])],
163                &pict.data[1][y * pict.linesize[1]], img->pitches[1]);
164         memcpy(&img->data[img->offsets[2] + (y * img->pitches[2])],
165                &pict.data[2][y * pict.linesize[2]], img->pitches[2]);
166     }
167
168     XGetWindowAttributes(xv->display, xv->window, &window_attrs);
169     if (XvShmPutImage(xv->display, xv->xv_port, xv->window, xv->gc,
170                       xv->yuv_image, 0, 0, xv->image_width, xv->image_height, 0, 0,
171                       window_attrs.width, window_attrs.height, True) != Success) {
172         av_log(s, AV_LOG_ERROR, "Could not copy image to XV shared memory buffer\n");
173         return AVERROR_EXTERNAL;
174     }
175     return 0;
176 }
177
178 static int xv_write_trailer(AVFormatContext *s)
179 {
180     XVContext *xv = s->priv_data;
181
182     XShmDetach(xv->display, &xv->yuv_shminfo);
183     shmdt(xv->yuv_image->data);
184     XFree(xv->yuv_image);
185     XFreeGC(xv->display, xv->gc);
186     XCloseDisplay(xv->display);
187     return 0;
188 }
189
190 #define OFFSET(x) offsetof(XVContext, x)
191 static const AVOption options[] = {
192     { "display_name", "set display name",       OFFSET(display_name), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
193     { "window_size",  "set window forced size", OFFSET(window_width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
194     { "window_title", "set window title",       OFFSET(window_title), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
195     { "window_x",     "set window x offset",    OFFSET(window_x),     AV_OPT_TYPE_INT,    {.i64 = 0 }, -INT_MAX, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
196     { "window_y",     "set window y offset",    OFFSET(window_y),     AV_OPT_TYPE_INT,    {.i64 = 0 }, -INT_MAX, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
197     { NULL }
198
199 };
200
201 static const AVClass xv_class = {
202     .class_name = "xvideo outdev",
203     .item_name  = av_default_item_name,
204     .option     = options,
205     .version    = LIBAVUTIL_VERSION_INT,
206 };
207
208 AVOutputFormat ff_xv_muxer = {
209     .name           = "xv",
210     .long_name      = NULL_IF_CONFIG_SMALL("XV (XVideo) output device"),
211     .priv_data_size = sizeof(XVContext),
212     .audio_codec    = AV_CODEC_ID_NONE,
213     .video_codec    = AV_CODEC_ID_RAWVIDEO,
214     .write_header   = xv_write_header,
215     .write_packet   = xv_write_packet,
216     .write_trailer  = xv_write_trailer,
217     .flags          = AVFMT_NOFILE | AVFMT_VARIABLE_FPS | AVFMT_NOTIMESTAMPS,
218     .priv_class     = &xv_class,
219 };