2009-02-16 21:58:13 +01:00
|
|
|
/*
|
|
|
|
* VDPAU video output driver
|
|
|
|
*
|
2013-10-23 19:06:14 +02:00
|
|
|
* Copyright (C) 2008 NVIDIA (Rajib Mahapatra <rmahapatra@nvidia.com>)
|
2009-11-15 03:39:22 +01:00
|
|
|
* Copyright (C) 2009 Uoti Urpala
|
2009-02-16 21:58:13 +01:00
|
|
|
*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer 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.
|
|
|
|
*
|
|
|
|
* MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2009-05-09 17:08:30 +02:00
|
|
|
/*
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
* Actual decoding is done in video/decode/vdpau.c
|
2009-02-16 21:58:13 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2009-09-18 15:27:55 +02:00
|
|
|
#include <stdlib.h>
|
2009-05-06 22:49:51 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
2009-11-15 03:39:22 +01:00
|
|
|
#include <limits.h>
|
2012-08-26 18:00:26 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <libavutil/common.h>
|
2009-02-16 21:58:13 +01:00
|
|
|
|
|
|
|
#include "config.h"
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
#include "video/vdpau.h"
|
2013-11-23 21:26:31 +01:00
|
|
|
#include "video/hwdec.h"
|
2013-08-06 22:41:30 +02:00
|
|
|
#include "mpvcore/mp_msg.h"
|
2013-12-17 02:02:25 +01:00
|
|
|
#include "options/options.h"
|
2009-05-06 20:04:37 +02:00
|
|
|
#include "talloc.h"
|
2012-11-09 01:06:43 +01:00
|
|
|
#include "vo.h"
|
2009-02-16 21:58:13 +01:00
|
|
|
#include "x11_common.h"
|
2012-11-09 01:06:43 +01:00
|
|
|
#include "video/csputils.h"
|
2013-11-24 12:58:06 +01:00
|
|
|
#include "sub/osd.h"
|
2013-12-17 02:02:25 +01:00
|
|
|
#include "options/m_option.h"
|
2012-11-09 01:06:43 +01:00
|
|
|
#include "video/vfcap.h"
|
|
|
|
#include "video/mp_image.h"
|
2009-09-07 01:02:24 +02:00
|
|
|
#include "osdep/timer.h"
|
2012-08-26 18:00:26 +02:00
|
|
|
#include "bitmap_packer.h"
|
2009-02-23 10:21:57 +01:00
|
|
|
|
2010-05-06 03:46:10 +02:00
|
|
|
#define WRAP_ADD(x, a, m) ((a) < 0 \
|
|
|
|
? ((x)+(a)+(m) < (m) ? (x)+(a)+(m) : (x)+(a)) \
|
|
|
|
: ((x)+(a) < (m) ? (x)+(a) : (x)+(a)-(m)))
|
|
|
|
|
2009-02-16 21:58:13 +01:00
|
|
|
|
|
|
|
/* number of video and output surfaces */
|
2010-05-14 04:18:38 +02:00
|
|
|
#define MAX_OUTPUT_SURFACES 15
|
2011-12-04 17:10:17 +01:00
|
|
|
#define NUM_BUFFERED_VIDEO 5
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2011-10-06 20:46:01 +02:00
|
|
|
/* Pixelformat used for output surfaces */
|
|
|
|
#define OUTPUT_RGBA_FORMAT VDP_RGBA_FORMAT_B8G8R8A8
|
|
|
|
|
2009-02-16 21:58:13 +01:00
|
|
|
/*
|
|
|
|
* Global variable declaration - VDPAU specific
|
|
|
|
*/
|
|
|
|
|
2009-05-06 20:04:37 +02:00
|
|
|
struct vdpctx {
|
2013-11-05 22:06:32 +01:00
|
|
|
struct mp_vdpau_ctx *mpvdp;
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
struct vdp_functions *vdp;
|
2009-05-06 22:42:24 +02:00
|
|
|
VdpDevice vdp_device;
|
2013-11-05 22:06:32 +01:00
|
|
|
uint64_t preemption_counter;
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
|
2013-08-17 19:57:18 +02:00
|
|
|
struct m_color colorkey;
|
|
|
|
|
2009-05-06 22:42:24 +02:00
|
|
|
VdpPresentationQueueTarget flip_target;
|
|
|
|
VdpPresentationQueue flip_queue;
|
2009-11-15 03:39:22 +01:00
|
|
|
uint64_t last_vdp_time;
|
2013-05-25 18:31:06 +02:00
|
|
|
uint64_t last_sync_update;
|
2009-05-06 22:42:24 +02:00
|
|
|
|
2012-08-26 18:00:26 +02:00
|
|
|
VdpOutputSurface output_surfaces[MAX_OUTPUT_SURFACES];
|
2012-10-21 00:48:01 +02:00
|
|
|
VdpOutputSurface screenshot_surface;
|
2010-05-14 04:18:38 +02:00
|
|
|
int num_output_surfaces;
|
2013-08-18 05:12:21 +02:00
|
|
|
VdpOutputSurface rgb_surfaces[NUM_BUFFERED_VIDEO];
|
|
|
|
VdpOutputSurface black_pixel;
|
2009-10-14 03:12:10 +02:00
|
|
|
struct buffered_video_surface {
|
2013-08-18 05:12:21 +02:00
|
|
|
// Either surface or rgb_surface is used (never both)
|
2009-10-14 03:12:10 +02:00
|
|
|
VdpVideoSurface surface;
|
2013-08-18 05:12:21 +02:00
|
|
|
VdpOutputSurface rgb_surface;
|
2009-10-14 03:12:10 +02:00
|
|
|
double pts;
|
|
|
|
mp_image_t *mpi;
|
|
|
|
} buffered_video[NUM_BUFFERED_VIDEO];
|
2009-09-18 15:27:55 +02:00
|
|
|
int deint_queue_pos;
|
2013-10-01 23:45:30 +02:00
|
|
|
|
|
|
|
// State for redrawing the screen after seek-reset
|
|
|
|
int prev_deint_queue_pos;
|
|
|
|
|
2009-05-06 22:42:24 +02:00
|
|
|
int output_surface_width, output_surface_height;
|
|
|
|
|
2013-08-18 05:12:21 +02:00
|
|
|
int force_yuv;
|
2009-05-06 22:42:24 +02:00
|
|
|
VdpVideoMixer video_mixer;
|
video, options: implement better YUV->RGB conversion control
Rewrite control of the colorspace and input/output level parameters
used in YUV-RGB conversions, replacing VO-specific suboptions with new
common options and adding configuration support to more cases.
Add new option --colormatrix which selects the colorspace the original
video is assumed to have in YUV->RGB conversions. The default
behavior changes from assuming BT.601 to colorspace autoselection
between BT.601 and BT.709 using a simple heuristic based on video
size. Add new options --colormatrix-input-range and
--colormatrix-output-range which select input YUV and output RGB range.
Disable the previously existing VO-specific colorspace and level
conversion suboptions in vo_gl and vo_vdpau. Remove the
"yuv_colorspace" property and replace it with one named "colormatrix"
and semantics matching the new option. Add new properties matching the
options for level conversion.
Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv
and vf_scale, and all can change it at runtime (previously only
vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion
matrix generation as vo_gl instead of libvdpau functionality; the main
functional difference is that the "contrast" equalizer control behaves
somewhat differently (it scales the Y component around 1/2 instead of
around 0, so that contrast 0 makes the image gray rather than black).
vo_xv does not support level conversion. vf_scale supports range
setting for input, but always outputs full-range RGB.
The value of the slave properties is the policy setting used for
conversions. This means they can be set to any value regardless of
whether the current VO supports that value or whether there currently
even is any video. Possibly separate properties could be added to
query the conversion actually used at the moment, if any.
Because the colorspace and level settings are now set with a single
VF/VO control call, the return value of that is no longer used to
signal whether all the settings are actually supported. Instead code
should set all the details it can support, and ignore the rest. The
core will use GET_YUV_COLORSPACE to check which colorspace details
have been set and which not. In other words, the return value for
SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace
conversion handling exists at all, and VOs have to take care to return
the actual state with GET_YUV_COLORSPACE instead.
To be changed in later commits: add missing option documentation.
2011-10-15 23:50:21 +02:00
|
|
|
struct mp_csp_details colorspace;
|
2013-08-18 05:12:21 +02:00
|
|
|
int user_deint;
|
2009-05-06 22:42:24 +02:00
|
|
|
int deint;
|
|
|
|
int deint_type;
|
|
|
|
int pullup;
|
|
|
|
float denoise;
|
|
|
|
float sharpen;
|
2009-11-15 17:39:48 +01:00
|
|
|
int hqscaling;
|
2009-05-06 22:42:24 +02:00
|
|
|
int chroma_deint;
|
2010-02-05 19:13:33 +01:00
|
|
|
int flip_offset_window;
|
|
|
|
int flip_offset_fs;
|
2009-05-06 22:42:24 +02:00
|
|
|
int top_field_first;
|
2009-11-15 14:50:28 +01:00
|
|
|
bool flip;
|
2009-05-06 22:42:24 +02:00
|
|
|
|
|
|
|
VdpRect src_rect_vid;
|
|
|
|
VdpRect out_rect_vid;
|
2012-10-27 22:10:32 +02:00
|
|
|
struct mp_osd_res osd_rect;
|
2009-05-06 22:42:24 +02:00
|
|
|
|
video/filter: change filter API, use refcounting, remove filter DR
Change the entire filter API to use reference counted images instead
of vf_get_image().
Remove filter "direct rendering". This was useful for vf_expand and (in
rare cases) vf_sub: DR allowed these filters to pass a cropped image to
the filters before them. Then, on filtering, the image was "uncropped",
so that black bars could be added around the image without copying. This
means that in some cases, vf_expand will be slower (-vf gradfun,expand
for example).
Note that another form of DR used for in-place filters has been replaced
by simpler logic. Instead of trying to do DR, filters can check if the
image is writeable (with mp_image_is_writeable()), and do true in-place
if that's the case. This affects filters like vf_gradfun and vf_sub.
Everything has to support strides now. If something doesn't, making a
copy of the image data is required.
2012-11-05 14:25:04 +01:00
|
|
|
int surface_num; // indexes output_surfaces
|
2010-05-14 04:18:38 +02:00
|
|
|
int query_surface_num;
|
2009-11-15 03:39:22 +01:00
|
|
|
VdpTime recent_vsync_time;
|
|
|
|
float user_fps;
|
2012-07-27 02:40:38 +02:00
|
|
|
int composite_detect;
|
2009-11-15 03:39:22 +01:00
|
|
|
unsigned int vsync_interval;
|
|
|
|
uint64_t last_queue_time;
|
2010-05-14 04:18:38 +02:00
|
|
|
uint64_t queue_time[MAX_OUTPUT_SURFACES];
|
2009-11-15 03:39:22 +01:00
|
|
|
uint64_t last_ideal_time;
|
|
|
|
bool dropped_frame;
|
|
|
|
uint64_t dropped_time;
|
2009-05-06 22:42:24 +02:00
|
|
|
uint32_t vid_width, vid_height;
|
|
|
|
uint32_t image_format;
|
|
|
|
VdpChromaType vdp_chroma_type;
|
|
|
|
VdpYCbCrFormat vdp_pixel_format;
|
2013-08-18 05:12:21 +02:00
|
|
|
bool rgb_mode;
|
2009-05-06 22:42:24 +02:00
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
// OSD
|
|
|
|
struct osd_bitmap_surface {
|
2012-08-31 14:42:30 +02:00
|
|
|
VdpRGBAFormat format;
|
2012-08-26 18:00:26 +02:00
|
|
|
VdpBitmapSurface surface;
|
|
|
|
uint32_t max_width;
|
|
|
|
uint32_t max_height;
|
|
|
|
struct bitmap_packer *packer;
|
2012-09-28 21:49:32 +02:00
|
|
|
// List of surfaces to be rendered
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
struct osd_target {
|
2012-09-28 21:49:32 +02:00
|
|
|
VdpRect source;
|
|
|
|
VdpRect dest;
|
|
|
|
VdpColor color;
|
|
|
|
} *targets;
|
2012-09-28 21:49:09 +02:00
|
|
|
int targets_size;
|
|
|
|
int render_count;
|
|
|
|
int bitmap_id;
|
|
|
|
int bitmap_pos_id;
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
} osd_surfaces[MAX_OSD_PARTS];
|
2009-05-06 22:49:51 +02:00
|
|
|
|
|
|
|
// Video equalizer
|
video, options: implement better YUV->RGB conversion control
Rewrite control of the colorspace and input/output level parameters
used in YUV-RGB conversions, replacing VO-specific suboptions with new
common options and adding configuration support to more cases.
Add new option --colormatrix which selects the colorspace the original
video is assumed to have in YUV->RGB conversions. The default
behavior changes from assuming BT.601 to colorspace autoselection
between BT.601 and BT.709 using a simple heuristic based on video
size. Add new options --colormatrix-input-range and
--colormatrix-output-range which select input YUV and output RGB range.
Disable the previously existing VO-specific colorspace and level
conversion suboptions in vo_gl and vo_vdpau. Remove the
"yuv_colorspace" property and replace it with one named "colormatrix"
and semantics matching the new option. Add new properties matching the
options for level conversion.
Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv
and vf_scale, and all can change it at runtime (previously only
vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion
matrix generation as vo_gl instead of libvdpau functionality; the main
functional difference is that the "contrast" equalizer control behaves
somewhat differently (it scales the Y component around 1/2 instead of
around 0, so that contrast 0 makes the image gray rather than black).
vo_xv does not support level conversion. vf_scale supports range
setting for input, but always outputs full-range RGB.
The value of the slave properties is the policy setting used for
conversions. This means they can be set to any value regardless of
whether the current VO supports that value or whether there currently
even is any video. Possibly separate properties could be added to
query the conversion actually used at the moment, if any.
Because the colorspace and level settings are now set with a single
VF/VO control call, the return value of that is no longer used to
signal whether all the settings are actually supported. Instead code
should set all the details it can support, and ignore the rest. The
core will use GET_YUV_COLORSPACE to check which colorspace details
have been set and which not. In other words, the return value for
SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace
conversion handling exists at all, and VOs have to take care to return
the actual state with GET_YUV_COLORSPACE instead.
To be changed in later commits: add missing option documentation.
2011-10-15 23:50:21 +02:00
|
|
|
struct mp_csp_equalizer video_eq;
|
2009-05-06 22:49:51 +02:00
|
|
|
};
|
2009-02-16 21:58:13 +01:00
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
static bool status_ok(struct vo *vo);
|
|
|
|
|
2013-08-23 23:30:09 +02:00
|
|
|
static int change_vdptime_sync(struct vo *vo, int64_t *t)
|
2009-11-15 03:39:22 +01:00
|
|
|
{
|
2013-08-23 23:30:09 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
2009-11-15 03:39:22 +01:00
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
|
|
|
VdpStatus vdp_st;
|
|
|
|
VdpTime vdp_time;
|
|
|
|
vdp_st = vdp->presentation_queue_get_time(vc->flip_queue, &vdp_time);
|
|
|
|
CHECK_ST_ERROR("Error when calling vdp_presentation_queue_get_time");
|
2013-05-25 18:31:06 +02:00
|
|
|
uint64_t t1 = *t;
|
|
|
|
uint64_t t2 = mp_time_us();
|
2009-11-15 03:39:22 +01:00
|
|
|
uint64_t old = vc->last_vdp_time + (t1 - vc->last_sync_update) * 1000ULL;
|
2012-12-28 10:46:02 +01:00
|
|
|
if (vdp_time > old) {
|
2009-11-15 03:39:22 +01:00
|
|
|
if (vdp_time > old + (t2 - t1) * 1000ULL)
|
|
|
|
vdp_time -= (t2 - t1) * 1000ULL;
|
|
|
|
else
|
|
|
|
vdp_time = old;
|
2012-12-28 10:46:02 +01:00
|
|
|
}
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_DBG(vo, "adjusting VdpTime offset by %f µs\n",
|
2009-11-15 03:39:22 +01:00
|
|
|
(int64_t)(vdp_time - old) / 1000.);
|
|
|
|
vc->last_vdp_time = vdp_time;
|
|
|
|
vc->last_sync_update = t1;
|
|
|
|
*t = t2;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t sync_vdptime(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
|
2013-05-25 18:31:06 +02:00
|
|
|
uint64_t t = mp_time_us();
|
2009-11-15 03:39:22 +01:00
|
|
|
if (t - vc->last_sync_update > 5000000)
|
2013-08-23 23:30:09 +02:00
|
|
|
change_vdptime_sync(vo, &t);
|
2009-11-15 03:39:22 +01:00
|
|
|
uint64_t now = (t - vc->last_sync_update) * 1000ULL + vc->last_vdp_time;
|
|
|
|
// Make sure nanosecond inaccuracies don't make things inconsistent
|
|
|
|
now = FFMAX(now, vc->recent_vsync_time);
|
|
|
|
return now;
|
|
|
|
}
|
|
|
|
|
2013-05-25 18:31:06 +02:00
|
|
|
static uint64_t convert_to_vdptime(struct vo *vo, uint64_t t)
|
2009-11-15 03:39:22 +01:00
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
2013-05-25 18:31:06 +02:00
|
|
|
return (t - vc->last_sync_update) * 1000LL + vc->last_vdp_time;
|
2009-11-15 03:39:22 +01:00
|
|
|
}
|
|
|
|
|
2011-10-06 20:46:01 +02:00
|
|
|
static int render_video_to_output_surface(struct vo *vo,
|
|
|
|
VdpOutputSurface output_surface,
|
2013-08-18 05:06:46 +02:00
|
|
|
VdpRect *output_rect,
|
|
|
|
VdpRect *video_rect)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
2009-05-06 20:04:37 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2009-02-16 21:58:13 +01:00
|
|
|
VdpTime dummy;
|
|
|
|
VdpStatus vdp_st;
|
2013-10-01 23:45:30 +02:00
|
|
|
struct buffered_video_surface *bv = vc->buffered_video;
|
|
|
|
int dp = vc->deint_queue_pos;
|
|
|
|
|
|
|
|
// Redraw frame from before seek reset?
|
|
|
|
if (dp < 0)
|
|
|
|
dp = vc->prev_deint_queue_pos;
|
|
|
|
if (dp < 0) {
|
video/out: always support redrawing VO window at any point
Before, a VO could easily refuse to respond to VOCTRL_REDRAW_FRAME,
which means the VO wouldn't redraw OSD and window contents, and the
player would appear frozen to the user. This was a bit stupid, and makes
dealing with some corner cases much harder (think of --keep-open, which
was hard to implement, because the VO gets into this state if there are
no new video frames after a seek reset).
Change this, and require VOs to always react to VOCTRL_REDRAW_FRAME.
There are two aspects of this: First, behavior after a (successful)
vo_reconfig() call, but before any video frame has been displayed.
Second, behavior after a vo_seek_reset().
For the first issue, we define that sending VOCTRL_REDRAW_FRAME after
vo_reconfig() should clear the window with black. This requires minor
changes to some VOs. In particular vaapi makes this horribly
complicated, because OSD rendering is bound to a video surface. We
create a black dummy surface for this purpose.
The second issue is much simpler and works already with most VOs: they
simply redraw whatever has been uploaded previously. The exception is
vdpau, which has a complicated mechanism to track and filter video
frames. The state associated with this mechanism is completely cleared
with vo_seek_reset(), so implementing this to work as expected is not
trivial. For now, we just clear the window with black.
2013-10-01 23:35:51 +02:00
|
|
|
// At least clear the screen if there is nothing to render
|
|
|
|
int flags = VDP_OUTPUT_SURFACE_RENDER_ROTATE_0;
|
|
|
|
vdp_st = vdp->output_surface_render_output_surface(output_surface,
|
|
|
|
NULL, vc->black_pixel,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
flags);
|
2009-09-18 23:00:42 +02:00
|
|
|
return -1;
|
video/out: always support redrawing VO window at any point
Before, a VO could easily refuse to respond to VOCTRL_REDRAW_FRAME,
which means the VO wouldn't redraw OSD and window contents, and the
player would appear frozen to the user. This was a bit stupid, and makes
dealing with some corner cases much harder (think of --keep-open, which
was hard to implement, because the VO gets into this state if there are
no new video frames after a seek reset).
Change this, and require VOs to always react to VOCTRL_REDRAW_FRAME.
There are two aspects of this: First, behavior after a (successful)
vo_reconfig() call, but before any video frame has been displayed.
Second, behavior after a vo_seek_reset().
For the first issue, we define that sending VOCTRL_REDRAW_FRAME after
vo_reconfig() should clear the window with black. This requires minor
changes to some VOs. In particular vaapi makes this horribly
complicated, because OSD rendering is bound to a video surface. We
create a black dummy surface for this purpose.
The second issue is much simpler and works already with most VOs: they
simply redraw whatever has been uploaded previously. The exception is
vdpau, which has a complicated mechanism to track and filter video
frames. The state associated with this mechanism is completely cleared
with vo_seek_reset(), so implementing this to work as expected is not
trivial. For now, we just clear the window with black.
2013-10-01 23:35:51 +02:00
|
|
|
}
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2013-08-18 05:12:21 +02:00
|
|
|
vdp_st = vdp->presentation_queue_block_until_surface_idle(vc->flip_queue,
|
|
|
|
output_surface,
|
|
|
|
&dummy);
|
|
|
|
CHECK_ST_WARNING("Error when calling "
|
|
|
|
"vdp_presentation_queue_block_until_surface_idle");
|
|
|
|
|
|
|
|
if (vc->rgb_mode) {
|
|
|
|
int flags = VDP_OUTPUT_SURFACE_RENDER_ROTATE_0;
|
|
|
|
vdp_st = vdp->output_surface_render_output_surface(output_surface,
|
|
|
|
NULL, vc->black_pixel,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
flags);
|
|
|
|
CHECK_ST_WARNING("Error clearing screen");
|
|
|
|
vdp_st = vdp->output_surface_render_output_surface(output_surface,
|
|
|
|
output_rect,
|
|
|
|
bv[dp/2].rgb_surface,
|
|
|
|
video_rect,
|
|
|
|
NULL, NULL, flags);
|
|
|
|
CHECK_ST_WARNING("Error when calling "
|
|
|
|
"vdp_output_surface_render_output_surface");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int field = VDP_VIDEO_MIXER_PICTURE_STRUCTURE_FRAME;
|
2009-09-18 15:27:55 +02:00
|
|
|
// dp==0 means last field of latest frame, 1 earlier field of latest frame,
|
|
|
|
// 2 last field of previous frame and so on
|
|
|
|
if (vc->deint) {
|
|
|
|
field = vc->top_field_first ^ (dp & 1) ?
|
|
|
|
VDP_VIDEO_MIXER_PICTURE_STRUCTURE_BOTTOM_FIELD:
|
|
|
|
VDP_VIDEO_MIXER_PICTURE_STRUCTURE_TOP_FIELD;
|
|
|
|
}
|
|
|
|
const VdpVideoSurface *past_fields = (const VdpVideoSurface []){
|
2009-10-14 03:12:10 +02:00
|
|
|
bv[(dp+1)/2].surface, bv[(dp+2)/2].surface};
|
2009-09-18 15:27:55 +02:00
|
|
|
const VdpVideoSurface *future_fields = (const VdpVideoSurface []){
|
2009-10-14 03:12:10 +02:00
|
|
|
dp >= 1 ? bv[(dp-1)/2].surface : VDP_INVALID_HANDLE};
|
2009-09-18 15:27:55 +02:00
|
|
|
|
|
|
|
vdp_st = vdp->video_mixer_render(vc->video_mixer, VDP_INVALID_HANDLE,
|
|
|
|
0, field, 2, past_fields,
|
2009-10-14 03:12:10 +02:00
|
|
|
bv[dp/2].surface, 1, future_fields,
|
2013-08-18 05:06:46 +02:00
|
|
|
video_rect, output_surface,
|
2011-10-06 20:46:01 +02:00
|
|
|
NULL, output_rect, 0, NULL);
|
2009-09-18 15:27:55 +02:00
|
|
|
CHECK_ST_WARNING("Error when calling vdp_video_mixer_render");
|
2009-09-18 23:00:42 +02:00
|
|
|
return 0;
|
2009-09-18 15:27:55 +02:00
|
|
|
}
|
2009-03-26 00:32:27 +01:00
|
|
|
|
2011-10-06 20:46:01 +02:00
|
|
|
static int video_to_output_surface(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
|
|
|
|
return render_video_to_output_surface(vo,
|
|
|
|
vc->output_surfaces[vc->surface_num],
|
2013-08-18 05:06:46 +02:00
|
|
|
&vc->out_rect_vid, &vc->src_rect_vid);
|
2011-10-06 20:46:01 +02:00
|
|
|
}
|
|
|
|
|
2011-12-04 17:10:17 +01:00
|
|
|
static int next_deint_queue_pos(struct vo *vo, bool eof)
|
2009-09-18 15:27:55 +02:00
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
|
2009-10-14 03:12:10 +02:00
|
|
|
int dqp = vc->deint_queue_pos;
|
|
|
|
if (dqp < 0)
|
|
|
|
dqp += 1000;
|
|
|
|
else
|
|
|
|
dqp = vc->deint >= 2 ? dqp - 1 : dqp - 2 | 1;
|
|
|
|
if (dqp < (eof ? 0 : 3))
|
2011-12-04 17:10:17 +01:00
|
|
|
return -1;
|
|
|
|
return dqp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void set_next_frame_info(struct vo *vo, bool eof)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
2009-09-18 15:27:55 +02:00
|
|
|
|
2011-12-04 17:10:17 +01:00
|
|
|
vo->frame_loaded = false;
|
|
|
|
int dqp = next_deint_queue_pos(vo, eof);
|
|
|
|
if (dqp < 0)
|
|
|
|
return;
|
2009-09-18 15:27:55 +02:00
|
|
|
vo->frame_loaded = true;
|
2009-10-14 03:12:10 +02:00
|
|
|
|
|
|
|
// Set pts values
|
|
|
|
struct buffered_video_surface *bv = vc->buffered_video;
|
2011-12-04 17:10:17 +01:00
|
|
|
int idx = dqp >> 1;
|
2009-10-14 03:12:10 +02:00
|
|
|
if (idx == 0) { // no future frame/pts available
|
|
|
|
vo->next_pts = bv[0].pts;
|
|
|
|
vo->next_pts2 = MP_NOPTS_VALUE;
|
|
|
|
} else if (!(vc->deint >= 2)) { // no field-splitting deinterlace
|
|
|
|
vo->next_pts = bv[idx].pts;
|
|
|
|
vo->next_pts2 = bv[idx - 1].pts;
|
|
|
|
} else { // deinterlace with separate fields
|
|
|
|
double intermediate_pts;
|
|
|
|
double diff = bv[idx - 1].pts - bv[idx].pts;
|
2009-09-18 15:27:55 +02:00
|
|
|
if (diff > 0 && diff < 0.5)
|
2009-10-14 03:12:10 +02:00
|
|
|
intermediate_pts = (bv[idx].pts + bv[idx - 1].pts) / 2;
|
2009-09-18 15:27:55 +02:00
|
|
|
else
|
2009-10-14 03:12:10 +02:00
|
|
|
intermediate_pts = bv[idx].pts;
|
2011-12-04 17:10:17 +01:00
|
|
|
if (dqp & 1) { // first field
|
2009-10-14 03:12:10 +02:00
|
|
|
vo->next_pts = bv[idx].pts;
|
|
|
|
vo->next_pts2 = intermediate_pts;
|
|
|
|
} else {
|
|
|
|
vo->next_pts = intermediate_pts;
|
|
|
|
vo->next_pts2 = bv[idx - 1].pts;
|
|
|
|
}
|
|
|
|
}
|
2009-09-18 15:27:55 +02:00
|
|
|
}
|
|
|
|
|
2009-10-14 03:12:10 +02:00
|
|
|
static void add_new_video_surface(struct vo *vo, VdpVideoSurface surface,
|
2013-08-18 05:12:21 +02:00
|
|
|
VdpOutputSurface rgb_surface,
|
2009-10-14 03:12:10 +02:00
|
|
|
struct mp_image *reserved_mpi, double pts)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct buffered_video_surface *bv = vc->buffered_video;
|
|
|
|
|
video/filter: change filter API, use refcounting, remove filter DR
Change the entire filter API to use reference counted images instead
of vf_get_image().
Remove filter "direct rendering". This was useful for vf_expand and (in
rare cases) vf_sub: DR allowed these filters to pass a cropped image to
the filters before them. Then, on filtering, the image was "uncropped",
so that black bars could be added around the image without copying. This
means that in some cases, vf_expand will be slower (-vf gradfun,expand
for example).
Note that another form of DR used for in-place filters has been replaced
by simpler logic. Instead of trying to do DR, filters can check if the
image is writeable (with mp_image_is_writeable()), and do true in-place
if that's the case. This affects filters like vf_gradfun and vf_sub.
Everything has to support strides now. If something doesn't, making a
copy of the image data is required.
2012-11-05 14:25:04 +01:00
|
|
|
mp_image_unrefp(&bv[NUM_BUFFERED_VIDEO - 1].mpi);
|
2009-10-14 03:12:10 +02:00
|
|
|
|
|
|
|
for (int i = NUM_BUFFERED_VIDEO - 1; i > 0; i--)
|
|
|
|
bv[i] = bv[i - 1];
|
|
|
|
bv[0] = (struct buffered_video_surface){
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
.mpi = reserved_mpi,
|
2009-10-14 03:12:10 +02:00
|
|
|
.surface = surface,
|
2013-08-18 05:12:21 +02:00
|
|
|
.rgb_surface = rgb_surface,
|
2009-10-14 03:12:10 +02:00
|
|
|
.pts = pts,
|
|
|
|
};
|
|
|
|
|
2011-12-04 17:10:17 +01:00
|
|
|
vc->deint_queue_pos = FFMIN(vc->deint_queue_pos + 2,
|
|
|
|
NUM_BUFFERED_VIDEO * 2 - 3);
|
|
|
|
set_next_frame_info(vo, false);
|
2009-10-14 03:12:10 +02:00
|
|
|
}
|
|
|
|
|
2013-10-01 23:45:30 +02:00
|
|
|
static void forget_frames(struct vo *vo, bool seek_reset)
|
2009-09-18 15:27:55 +02:00
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
|
2013-10-01 23:45:30 +02:00
|
|
|
if (seek_reset) {
|
|
|
|
if (vc->deint_queue_pos >= 0)
|
|
|
|
vc->prev_deint_queue_pos = vc->deint_queue_pos;
|
|
|
|
} else {
|
|
|
|
vc->prev_deint_queue_pos = -1001;
|
|
|
|
}
|
|
|
|
|
2009-10-14 03:12:10 +02:00
|
|
|
vc->deint_queue_pos = -1001;
|
2009-11-15 03:39:22 +01:00
|
|
|
vc->dropped_frame = false;
|
2013-10-01 23:45:30 +02:00
|
|
|
if (vc->prev_deint_queue_pos < 0) {
|
|
|
|
for (int i = 0; i < NUM_BUFFERED_VIDEO; i++) {
|
|
|
|
struct buffered_video_surface *p = vc->buffered_video + i;
|
|
|
|
mp_image_unrefp(&p->mpi);
|
|
|
|
*p = (struct buffered_video_surface){
|
|
|
|
.surface = VDP_INVALID_HANDLE,
|
|
|
|
.rgb_surface = VDP_INVALID_HANDLE,
|
|
|
|
};
|
|
|
|
}
|
2009-02-24 22:46:25 +01:00
|
|
|
}
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
|
2009-05-04 02:09:50 +02:00
|
|
|
static void resize(struct vo *vo)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
2009-05-06 20:04:37 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2009-02-16 21:58:13 +01:00
|
|
|
VdpStatus vdp_st;
|
2012-10-27 22:10:32 +02:00
|
|
|
struct mp_rect src_rect;
|
|
|
|
struct mp_rect dst_rect;
|
|
|
|
vo_get_src_dst_rects(vo, &src_rect, &dst_rect, &vc->osd_rect);
|
|
|
|
vc->out_rect_vid.x0 = dst_rect.x0;
|
|
|
|
vc->out_rect_vid.x1 = dst_rect.x1;
|
|
|
|
vc->out_rect_vid.y0 = dst_rect.y0;
|
|
|
|
vc->out_rect_vid.y1 = dst_rect.y1;
|
|
|
|
vc->src_rect_vid.x0 = src_rect.x0;
|
|
|
|
vc->src_rect_vid.x1 = src_rect.x1;
|
|
|
|
vc->src_rect_vid.y0 = vc->flip ? src_rect.y1 : src_rect.y0;
|
|
|
|
vc->src_rect_vid.y1 = vc->flip ? src_rect.y0 : src_rect.y1;
|
2012-10-04 17:16:28 +02:00
|
|
|
|
2013-07-18 14:05:39 +02:00
|
|
|
int flip_offset_ms = vo->opts->fullscreen ?
|
2013-03-04 17:40:21 +01:00
|
|
|
vc->flip_offset_fs :
|
|
|
|
vc->flip_offset_window;
|
|
|
|
|
2010-02-05 19:13:33 +01:00
|
|
|
vo->flip_queue_offset = flip_offset_ms / 1000.;
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2012-10-21 00:48:01 +02:00
|
|
|
if (vc->output_surface_width < vo->dwidth
|
|
|
|
|| vc->output_surface_height < vo->dheight) {
|
|
|
|
if (vc->output_surface_width < vo->dwidth) {
|
2009-05-06 22:42:24 +02:00
|
|
|
vc->output_surface_width += vc->output_surface_width >> 1;
|
2009-05-09 17:08:30 +02:00
|
|
|
vc->output_surface_width = FFMAX(vc->output_surface_width,
|
2012-10-21 00:48:01 +02:00
|
|
|
vo->dwidth);
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
2012-10-21 00:48:01 +02:00
|
|
|
if (vc->output_surface_height < vo->dheight) {
|
2009-05-06 22:42:24 +02:00
|
|
|
vc->output_surface_height += vc->output_surface_height >> 1;
|
2009-05-09 17:08:30 +02:00
|
|
|
vc->output_surface_height = FFMAX(vc->output_surface_height,
|
2012-10-21 00:48:01 +02:00
|
|
|
vo->dheight);
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
// Creation of output_surfaces
|
2012-08-26 18:00:26 +02:00
|
|
|
for (int i = 0; i < vc->num_output_surfaces; i++)
|
2010-05-26 07:54:09 +02:00
|
|
|
if (vc->output_surfaces[i] != VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->output_surface_destroy(vc->output_surfaces[i]);
|
|
|
|
CHECK_ST_WARNING("Error when calling "
|
|
|
|
"vdp_output_surface_destroy");
|
|
|
|
}
|
2012-08-26 18:00:26 +02:00
|
|
|
for (int i = 0; i < vc->num_output_surfaces; i++) {
|
2009-05-09 17:08:30 +02:00
|
|
|
vdp_st = vdp->output_surface_create(vc->vdp_device,
|
2011-10-06 20:46:01 +02:00
|
|
|
OUTPUT_RGBA_FORMAT,
|
2009-05-09 17:08:30 +02:00
|
|
|
vc->output_surface_width,
|
|
|
|
vc->output_surface_height,
|
|
|
|
&vc->output_surfaces[i]);
|
|
|
|
CHECK_ST_WARNING("Error when calling vdp_output_surface_create");
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_DBG(vo, "vdpau out create: %u\n",
|
2009-05-09 17:08:30 +02:00
|
|
|
vc->output_surfaces[i]);
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
}
|
2011-12-05 05:36:20 +01:00
|
|
|
vo->want_redraw = true;
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
|
2009-05-04 02:09:50 +02:00
|
|
|
static int win_x11_init_vdpau_flip_queue(struct vo *vo)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
2009-05-06 20:04:37 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2009-05-04 02:09:50 +02:00
|
|
|
struct vo_x11_state *x11 = vo->x11;
|
2009-02-16 21:58:13 +01:00
|
|
|
VdpStatus vdp_st;
|
|
|
|
|
2009-09-07 01:02:24 +02:00
|
|
|
if (vc->flip_target == VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->presentation_queue_target_create_x11(vc->vdp_device,
|
|
|
|
x11->window,
|
|
|
|
&vc->flip_target);
|
|
|
|
CHECK_ST_ERROR("Error when calling "
|
|
|
|
"vdp_presentation_queue_target_create_x11");
|
|
|
|
}
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2009-09-07 01:02:24 +02:00
|
|
|
/* Emperically this seems to be the first call which fails when we
|
|
|
|
* try to reinit after preemption while the user is still switched
|
|
|
|
* from X to a virtual terminal (creating the vdp_device initially
|
|
|
|
* succeeds, as does creating the flip_target above). This is
|
|
|
|
* probably not guaranteed behavior, but we'll assume it as a simple
|
|
|
|
* way to reduce warnings while trying to recover from preemption.
|
|
|
|
*/
|
|
|
|
if (vc->flip_queue == VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->presentation_queue_create(vc->vdp_device, vc->flip_target,
|
|
|
|
&vc->flip_queue);
|
2013-11-05 22:06:32 +01:00
|
|
|
if (vc->mpvdp->is_preempted && vdp_st != VDP_STATUS_OK) {
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_DBG(vo, "Failed to create flip queue while preempted: %s\n",
|
|
|
|
vdp->get_error_string(vdp_st));
|
2009-09-07 01:02:24 +02:00
|
|
|
return -1;
|
|
|
|
} else
|
|
|
|
CHECK_ST_ERROR("Error when calling vdp_presentation_queue_create");
|
|
|
|
}
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2013-08-17 19:57:18 +02:00
|
|
|
if (vc->colorkey.a > 0) {
|
|
|
|
VdpColor color = {
|
|
|
|
.red = vc->colorkey.r / 255.0,
|
|
|
|
.green = vc->colorkey.g / 255.0,
|
|
|
|
.blue = vc->colorkey.b / 255.0,
|
|
|
|
.alpha = 0,
|
|
|
|
};
|
|
|
|
vdp_st = vdp->presentation_queue_set_background_color(vc->flip_queue,
|
|
|
|
&color);
|
|
|
|
CHECK_ST_WARNING("Error setting colorkey");
|
|
|
|
}
|
|
|
|
|
2009-11-15 03:39:22 +01:00
|
|
|
VdpTime vdp_time;
|
|
|
|
vdp_st = vdp->presentation_queue_get_time(vc->flip_queue, &vdp_time);
|
|
|
|
CHECK_ST_ERROR("Error when calling vdp_presentation_queue_get_time");
|
|
|
|
vc->last_vdp_time = vdp_time;
|
2013-05-25 18:31:06 +02:00
|
|
|
vc->last_sync_update = mp_time_us();
|
2009-11-15 03:39:22 +01:00
|
|
|
|
|
|
|
vc->vsync_interval = 1;
|
2012-07-27 02:40:38 +02:00
|
|
|
if (vc->composite_detect && vo_x11_screen_is_composited(vo)) {
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_INFO(vo, "Compositing window manager detected. Assuming timing info "
|
|
|
|
"is inaccurate.\n");
|
2012-07-27 02:40:38 +02:00
|
|
|
} else if (vc->user_fps > 0) {
|
2009-11-15 03:39:22 +01:00
|
|
|
vc->vsync_interval = 1e9 / vc->user_fps;
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_INFO(vo, "Assuming user-specified display refresh rate of %.3f Hz.\n",
|
|
|
|
vc->user_fps);
|
2009-11-15 03:39:22 +01:00
|
|
|
} else if (vc->user_fps == 0) {
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_XF86VM
|
2013-01-27 07:21:10 +01:00
|
|
|
double fps = vo_x11_vm_get_fps(vo);
|
2009-11-15 03:39:22 +01:00
|
|
|
if (!fps)
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_WARN(vo, "Failed to get display FPS\n");
|
2009-11-15 03:39:22 +01:00
|
|
|
else {
|
|
|
|
vc->vsync_interval = 1e9 / fps;
|
|
|
|
// This is verbose, but I'm not yet sure how common wrong values are
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_INFO(vo, "Got display refresh rate %.3f Hz.\n", fps);
|
|
|
|
MP_INFO(vo, "If that value looks wrong give the "
|
|
|
|
"-vo vdpau:fps=X suboption manually.\n");
|
2009-11-15 03:39:22 +01:00
|
|
|
}
|
|
|
|
#else
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_INFO(vo, "This binary has been compiled without XF86VidMode support.\n");
|
|
|
|
MP_INFO(vo, "Can't use vsync-aware timing without manually provided "
|
|
|
|
"-vo vdpau:fps=X suboption.\n");
|
2009-11-15 03:39:22 +01:00
|
|
|
#endif
|
|
|
|
} else
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_VERBOSE(vo, "framedrop/timing logic disabled by user.\n");
|
2009-11-15 03:39:22 +01:00
|
|
|
|
2009-02-16 21:58:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-23 23:30:09 +02:00
|
|
|
static int set_video_attribute(struct vo *vo, VdpVideoMixerAttribute attr,
|
2009-11-17 05:18:14 +01:00
|
|
|
const void *value, char *attr_name)
|
|
|
|
{
|
2013-08-23 23:30:09 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
2009-11-17 05:18:14 +01:00
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
|
|
|
VdpStatus vdp_st;
|
|
|
|
|
2013-08-18 05:12:21 +02:00
|
|
|
if (vc->rgb_mode)
|
|
|
|
return -1;
|
|
|
|
|
2009-11-17 05:18:14 +01:00
|
|
|
vdp_st = vdp->video_mixer_set_attribute_values(vc->video_mixer, 1, &attr,
|
|
|
|
&value);
|
|
|
|
if (vdp_st != VDP_STATUS_OK) {
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_ERR(vo, "Error setting video mixer attribute %s: %s\n", attr_name,
|
|
|
|
vdp->get_error_string(vdp_st));
|
2009-11-17 05:18:14 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-15 14:21:40 +01:00
|
|
|
static void update_csc_matrix(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_VERBOSE(vo, "Updating CSC matrix\n");
|
2009-11-15 14:21:40 +01:00
|
|
|
|
video, options: implement better YUV->RGB conversion control
Rewrite control of the colorspace and input/output level parameters
used in YUV-RGB conversions, replacing VO-specific suboptions with new
common options and adding configuration support to more cases.
Add new option --colormatrix which selects the colorspace the original
video is assumed to have in YUV->RGB conversions. The default
behavior changes from assuming BT.601 to colorspace autoselection
between BT.601 and BT.709 using a simple heuristic based on video
size. Add new options --colormatrix-input-range and
--colormatrix-output-range which select input YUV and output RGB range.
Disable the previously existing VO-specific colorspace and level
conversion suboptions in vo_gl and vo_vdpau. Remove the
"yuv_colorspace" property and replace it with one named "colormatrix"
and semantics matching the new option. Add new properties matching the
options for level conversion.
Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv
and vf_scale, and all can change it at runtime (previously only
vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion
matrix generation as vo_gl instead of libvdpau functionality; the main
functional difference is that the "contrast" equalizer control behaves
somewhat differently (it scales the Y component around 1/2 instead of
around 0, so that contrast 0 makes the image gray rather than black).
vo_xv does not support level conversion. vf_scale supports range
setting for input, but always outputs full-range RGB.
The value of the slave properties is the policy setting used for
conversions. This means they can be set to any value regardless of
whether the current VO supports that value or whether there currently
even is any video. Possibly separate properties could be added to
query the conversion actually used at the moment, if any.
Because the colorspace and level settings are now set with a single
VF/VO control call, the return value of that is no longer used to
signal whether all the settings are actually supported. Instead code
should set all the details it can support, and ignore the rest. The
core will use GET_YUV_COLORSPACE to check which colorspace details
have been set and which not. In other words, the return value for
SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace
conversion handling exists at all, and VOs have to take care to return
the actual state with GET_YUV_COLORSPACE instead.
To be changed in later commits: add missing option documentation.
2011-10-15 23:50:21 +02:00
|
|
|
// VdpCSCMatrix happens to be compatible with mplayer's CSC matrix type
|
|
|
|
// both are float[3][4]
|
2009-11-15 14:21:40 +01:00
|
|
|
VdpCSCMatrix matrix;
|
video, options: implement better YUV->RGB conversion control
Rewrite control of the colorspace and input/output level parameters
used in YUV-RGB conversions, replacing VO-specific suboptions with new
common options and adding configuration support to more cases.
Add new option --colormatrix which selects the colorspace the original
video is assumed to have in YUV->RGB conversions. The default
behavior changes from assuming BT.601 to colorspace autoselection
between BT.601 and BT.709 using a simple heuristic based on video
size. Add new options --colormatrix-input-range and
--colormatrix-output-range which select input YUV and output RGB range.
Disable the previously existing VO-specific colorspace and level
conversion suboptions in vo_gl and vo_vdpau. Remove the
"yuv_colorspace" property and replace it with one named "colormatrix"
and semantics matching the new option. Add new properties matching the
options for level conversion.
Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv
and vf_scale, and all can change it at runtime (previously only
vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion
matrix generation as vo_gl instead of libvdpau functionality; the main
functional difference is that the "contrast" equalizer control behaves
somewhat differently (it scales the Y component around 1/2 instead of
around 0, so that contrast 0 makes the image gray rather than black).
vo_xv does not support level conversion. vf_scale supports range
setting for input, but always outputs full-range RGB.
The value of the slave properties is the policy setting used for
conversions. This means they can be set to any value regardless of
whether the current VO supports that value or whether there currently
even is any video. Possibly separate properties could be added to
query the conversion actually used at the moment, if any.
Because the colorspace and level settings are now set with a single
VF/VO control call, the return value of that is no longer used to
signal whether all the settings are actually supported. Instead code
should set all the details it can support, and ignore the rest. The
core will use GET_YUV_COLORSPACE to check which colorspace details
have been set and which not. In other words, the return value for
SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace
conversion handling exists at all, and VOs have to take care to return
the actual state with GET_YUV_COLORSPACE instead.
To be changed in later commits: add missing option documentation.
2011-10-15 23:50:21 +02:00
|
|
|
|
2012-03-08 04:25:33 +01:00
|
|
|
struct mp_csp_params cparams = {
|
|
|
|
.colorspace = vc->colorspace, .input_bits = 8, .texture_bits = 8 };
|
video, options: implement better YUV->RGB conversion control
Rewrite control of the colorspace and input/output level parameters
used in YUV-RGB conversions, replacing VO-specific suboptions with new
common options and adding configuration support to more cases.
Add new option --colormatrix which selects the colorspace the original
video is assumed to have in YUV->RGB conversions. The default
behavior changes from assuming BT.601 to colorspace autoselection
between BT.601 and BT.709 using a simple heuristic based on video
size. Add new options --colormatrix-input-range and
--colormatrix-output-range which select input YUV and output RGB range.
Disable the previously existing VO-specific colorspace and level
conversion suboptions in vo_gl and vo_vdpau. Remove the
"yuv_colorspace" property and replace it with one named "colormatrix"
and semantics matching the new option. Add new properties matching the
options for level conversion.
Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv
and vf_scale, and all can change it at runtime (previously only
vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion
matrix generation as vo_gl instead of libvdpau functionality; the main
functional difference is that the "contrast" equalizer control behaves
somewhat differently (it scales the Y component around 1/2 instead of
around 0, so that contrast 0 makes the image gray rather than black).
vo_xv does not support level conversion. vf_scale supports range
setting for input, but always outputs full-range RGB.
The value of the slave properties is the policy setting used for
conversions. This means they can be set to any value regardless of
whether the current VO supports that value or whether there currently
even is any video. Possibly separate properties could be added to
query the conversion actually used at the moment, if any.
Because the colorspace and level settings are now set with a single
VF/VO control call, the return value of that is no longer used to
signal whether all the settings are actually supported. Instead code
should set all the details it can support, and ignore the rest. The
core will use GET_YUV_COLORSPACE to check which colorspace details
have been set and which not. In other words, the return value for
SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace
conversion handling exists at all, and VOs have to take care to return
the actual state with GET_YUV_COLORSPACE instead.
To be changed in later commits: add missing option documentation.
2011-10-15 23:50:21 +02:00
|
|
|
mp_csp_copy_equalizer_values(&cparams, &vc->video_eq);
|
|
|
|
mp_get_yuv2rgb_coeffs(&cparams, matrix);
|
2010-05-12 02:52:43 +02:00
|
|
|
|
2013-08-23 23:30:09 +02:00
|
|
|
set_video_attribute(vo, VDP_VIDEO_MIXER_ATTRIBUTE_CSC_MATRIX,
|
2009-11-17 05:18:14 +01:00
|
|
|
&matrix, "CSC matrix");
|
2009-11-15 14:21:40 +01:00
|
|
|
}
|
|
|
|
|
2013-08-23 23:30:09 +02:00
|
|
|
#define SET_VIDEO_ATTR(attr_name, attr_type, value) set_video_attribute(vo, \
|
2009-11-17 05:18:14 +01:00
|
|
|
VDP_VIDEO_MIXER_ATTRIBUTE_ ## attr_name, &(attr_type){value},\
|
|
|
|
# attr_name)
|
2009-05-06 20:04:37 +02:00
|
|
|
static int create_vdp_mixer(struct vo *vo, VdpChromaType vdp_chroma_type)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2009-02-16 21:58:13 +01:00
|
|
|
#define VDP_NUM_MIXER_PARAMETER 3
|
2009-11-15 17:39:48 +01:00
|
|
|
#define MAX_NUM_FEATURES 6
|
2009-02-20 10:45:48 +01:00
|
|
|
int i;
|
2009-02-16 21:58:13 +01:00
|
|
|
VdpStatus vdp_st;
|
2009-09-07 01:02:24 +02:00
|
|
|
|
|
|
|
if (vc->video_mixer != VDP_INVALID_HANDLE)
|
|
|
|
return 0;
|
|
|
|
|
2009-02-20 10:45:48 +01:00
|
|
|
int feature_count = 0;
|
|
|
|
VdpVideoMixerFeature features[MAX_NUM_FEATURES];
|
|
|
|
VdpBool feature_enables[MAX_NUM_FEATURES];
|
2009-02-16 21:58:13 +01:00
|
|
|
static const VdpVideoMixerParameter parameters[VDP_NUM_MIXER_PARAMETER] = {
|
|
|
|
VDP_VIDEO_MIXER_PARAMETER_VIDEO_SURFACE_WIDTH,
|
|
|
|
VDP_VIDEO_MIXER_PARAMETER_VIDEO_SURFACE_HEIGHT,
|
2009-05-09 17:08:30 +02:00
|
|
|
VDP_VIDEO_MIXER_PARAMETER_CHROMA_TYPE,
|
2009-02-16 21:58:13 +01:00
|
|
|
};
|
|
|
|
const void *const parameter_values[VDP_NUM_MIXER_PARAMETER] = {
|
2009-05-06 22:42:24 +02:00
|
|
|
&vc->vid_width,
|
|
|
|
&vc->vid_height,
|
2009-05-09 17:08:30 +02:00
|
|
|
&vdp_chroma_type,
|
2009-02-16 21:58:13 +01:00
|
|
|
};
|
2009-03-15 22:26:10 +01:00
|
|
|
features[feature_count++] = VDP_VIDEO_MIXER_FEATURE_DEINTERLACE_TEMPORAL;
|
2011-01-04 22:51:31 +01:00
|
|
|
if (vc->deint_type == 4)
|
2009-05-09 17:08:30 +02:00
|
|
|
features[feature_count++] =
|
|
|
|
VDP_VIDEO_MIXER_FEATURE_DEINTERLACE_TEMPORAL_SPATIAL;
|
2009-05-06 22:42:24 +02:00
|
|
|
if (vc->pullup)
|
2009-02-20 10:45:48 +01:00
|
|
|
features[feature_count++] = VDP_VIDEO_MIXER_FEATURE_INVERSE_TELECINE;
|
2009-05-06 22:42:24 +02:00
|
|
|
if (vc->denoise)
|
2009-02-20 10:45:48 +01:00
|
|
|
features[feature_count++] = VDP_VIDEO_MIXER_FEATURE_NOISE_REDUCTION;
|
2009-05-06 22:42:24 +02:00
|
|
|
if (vc->sharpen)
|
2009-02-20 10:45:48 +01:00
|
|
|
features[feature_count++] = VDP_VIDEO_MIXER_FEATURE_SHARPNESS;
|
2009-11-15 17:39:48 +01:00
|
|
|
if (vc->hqscaling) {
|
|
|
|
VdpVideoMixerFeature hqscaling_feature =
|
|
|
|
VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1 + vc->hqscaling-1;
|
|
|
|
VdpBool hqscaling_available;
|
|
|
|
vdp_st = vdp->video_mixer_query_feature_support(vc->vdp_device,
|
|
|
|
hqscaling_feature,
|
|
|
|
&hqscaling_available);
|
|
|
|
CHECK_ST_ERROR("Error when calling video_mixer_query_feature_support");
|
|
|
|
if (hqscaling_available)
|
|
|
|
features[feature_count++] = hqscaling_feature;
|
|
|
|
else
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_ERR(vo, "Your hardware or VDPAU library does not support "
|
|
|
|
"requested hqscaling.\n");
|
2009-11-29 00:32:30 +01:00
|
|
|
}
|
2009-02-20 10:45:48 +01:00
|
|
|
|
2009-05-06 22:42:24 +02:00
|
|
|
vdp_st = vdp->video_mixer_create(vc->vdp_device, feature_count, features,
|
2009-05-09 17:08:30 +02:00
|
|
|
VDP_NUM_MIXER_PARAMETER,
|
|
|
|
parameters, parameter_values,
|
|
|
|
&vc->video_mixer);
|
2009-05-08 19:57:22 +02:00
|
|
|
CHECK_ST_ERROR("Error when calling vdp_video_mixer_create");
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2009-05-09 17:08:30 +02:00
|
|
|
for (i = 0; i < feature_count; i++)
|
|
|
|
feature_enables[i] = VDP_TRUE;
|
2009-05-06 22:42:24 +02:00
|
|
|
if (vc->deint < 3)
|
2009-03-15 22:20:06 +01:00
|
|
|
feature_enables[0] = VDP_FALSE;
|
2011-01-04 22:51:31 +01:00
|
|
|
if (vc->deint_type == 4 && vc->deint < 4)
|
|
|
|
feature_enables[1] = VDP_FALSE;
|
2009-11-17 22:22:10 +01:00
|
|
|
if (feature_count) {
|
|
|
|
vdp_st = vdp->video_mixer_set_feature_enables(vc->video_mixer,
|
|
|
|
feature_count, features,
|
|
|
|
feature_enables);
|
|
|
|
CHECK_ST_WARNING("Error calling vdp_video_mixer_set_feature_enables");
|
|
|
|
}
|
2009-05-06 22:42:24 +02:00
|
|
|
if (vc->denoise)
|
2009-11-17 05:18:14 +01:00
|
|
|
SET_VIDEO_ATTR(NOISE_REDUCTION_LEVEL, float, vc->denoise);
|
2009-05-06 22:42:24 +02:00
|
|
|
if (vc->sharpen)
|
2009-11-17 05:18:14 +01:00
|
|
|
SET_VIDEO_ATTR(SHARPNESS_LEVEL, float, vc->sharpen);
|
2009-05-06 22:42:24 +02:00
|
|
|
if (!vc->chroma_deint)
|
2009-11-17 05:18:14 +01:00
|
|
|
SET_VIDEO_ATTR(SKIP_CHROMA_DEINTERLACE, uint8_t, 1);
|
2009-02-20 10:45:48 +01:00
|
|
|
|
2009-11-15 14:21:40 +01:00
|
|
|
update_csc_matrix(vo);
|
2009-02-16 21:58:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Free everything specific to a certain video file
|
2009-05-06 20:04:37 +02:00
|
|
|
static void free_video_specific(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2009-02-16 21:58:13 +01:00
|
|
|
VdpStatus vdp_st;
|
|
|
|
|
2013-10-01 23:45:30 +02:00
|
|
|
forget_frames(vo, false);
|
2009-03-18 18:02:29 +01:00
|
|
|
|
2009-05-06 22:42:24 +02:00
|
|
|
if (vc->video_mixer != VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->video_mixer_destroy(vc->video_mixer);
|
2009-05-08 19:57:22 +02:00
|
|
|
CHECK_ST_WARNING("Error when calling vdp_video_mixer_destroy");
|
2009-02-23 10:22:57 +01:00
|
|
|
}
|
2009-05-06 22:42:24 +02:00
|
|
|
vc->video_mixer = VDP_INVALID_HANDLE;
|
2012-10-21 00:48:01 +02:00
|
|
|
|
|
|
|
if (vc->screenshot_surface != VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->output_surface_destroy(vc->screenshot_surface);
|
|
|
|
CHECK_ST_WARNING("Error when calling vdp_output_surface_destroy");
|
|
|
|
}
|
|
|
|
vc->screenshot_surface = VDP_INVALID_HANDLE;
|
2013-08-18 05:12:21 +02:00
|
|
|
|
|
|
|
for (int n = 0; n < NUM_BUFFERED_VIDEO; n++) {
|
|
|
|
if (vc->rgb_surfaces[n] != VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->output_surface_destroy(vc->rgb_surfaces[n]);
|
|
|
|
CHECK_ST_WARNING("Error when calling vdp_output_surface_destroy");
|
|
|
|
}
|
|
|
|
vc->rgb_surfaces[n] = VDP_INVALID_HANDLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vc->black_pixel != VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->output_surface_destroy(vc->black_pixel);
|
|
|
|
CHECK_ST_WARNING("Error when calling vdp_output_surface_destroy");
|
|
|
|
}
|
|
|
|
vc->black_pixel = VDP_INVALID_HANDLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_rgb_format(int imgfmt)
|
|
|
|
{
|
|
|
|
switch (imgfmt) {
|
|
|
|
case IMGFMT_BGR32: return VDP_RGBA_FORMAT_B8G8R8A8;
|
|
|
|
default: return -1;
|
|
|
|
}
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
|
2009-10-22 03:21:14 +02:00
|
|
|
static int initialize_vdpau_objects(struct vo *vo)
|
2009-09-07 01:02:24 +02:00
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
2013-08-18 05:12:21 +02:00
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
|
|
|
VdpStatus vdp_st;
|
2009-09-07 01:02:24 +02:00
|
|
|
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
mp_vdpau_get_format(vc->image_format, &vc->vdp_chroma_type,
|
|
|
|
&vc->vdp_pixel_format);
|
|
|
|
|
2009-09-07 01:02:24 +02:00
|
|
|
if (win_x11_init_vdpau_flip_queue(vo) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2013-08-18 05:12:21 +02:00
|
|
|
if (vc->rgb_mode) {
|
|
|
|
int format = get_rgb_format(vc->image_format);
|
|
|
|
for (int n = 0; n < NUM_BUFFERED_VIDEO; n++) {
|
|
|
|
vdp_st = vdp->output_surface_create(vc->vdp_device,
|
|
|
|
format,
|
|
|
|
vc->vid_width, vc->vid_height,
|
|
|
|
&vc->rgb_surfaces[n]);
|
|
|
|
CHECK_ST_ERROR("Allocating RGB surface");
|
|
|
|
}
|
|
|
|
vdp_st = vdp->output_surface_create(vc->vdp_device, OUTPUT_RGBA_FORMAT,
|
|
|
|
1, 1, &vc->black_pixel);
|
|
|
|
CHECK_ST_ERROR("Allocating clearing surface");
|
|
|
|
const char data[4] = {0};
|
|
|
|
vdp_st = vdp->output_surface_put_bits_native(vc->black_pixel,
|
|
|
|
(const void*[]){data},
|
|
|
|
(uint32_t[]){4}, NULL);
|
|
|
|
CHECK_ST_ERROR("Initializing clearing surface");
|
|
|
|
} else {
|
|
|
|
if (create_vdp_mixer(vo, vc->vdp_chroma_type) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
2009-09-07 01:02:24 +02:00
|
|
|
|
2013-10-01 23:45:30 +02:00
|
|
|
forget_frames(vo, false);
|
2009-09-07 01:02:24 +02:00
|
|
|
resize(vo);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mark_vdpau_objects_uninitialized(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
|
2013-08-18 05:12:21 +02:00
|
|
|
for (int i = 0; i < NUM_BUFFERED_VIDEO; i++)
|
|
|
|
vc->rgb_surfaces[i] = VDP_INVALID_HANDLE;
|
2013-10-01 23:45:30 +02:00
|
|
|
forget_frames(vo, false);
|
2013-08-18 05:12:21 +02:00
|
|
|
vc->black_pixel = VDP_INVALID_HANDLE;
|
2009-09-07 01:02:24 +02:00
|
|
|
vc->video_mixer = VDP_INVALID_HANDLE;
|
|
|
|
vc->flip_queue = VDP_INVALID_HANDLE;
|
|
|
|
vc->flip_target = VDP_INVALID_HANDLE;
|
2012-08-26 18:00:26 +02:00
|
|
|
for (int i = 0; i < MAX_OUTPUT_SURFACES; i++)
|
2009-09-07 01:02:24 +02:00
|
|
|
vc->output_surfaces[i] = VDP_INVALID_HANDLE;
|
2012-10-21 00:48:01 +02:00
|
|
|
vc->screenshot_surface = VDP_INVALID_HANDLE;
|
2009-09-07 01:02:24 +02:00
|
|
|
vc->vdp_device = VDP_INVALID_HANDLE;
|
2012-09-28 21:49:09 +02:00
|
|
|
for (int i = 0; i < MAX_OSD_PARTS; i++) {
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
struct osd_bitmap_surface *sfc = &vc->osd_surfaces[i];
|
2012-09-28 21:49:09 +02:00
|
|
|
talloc_free(sfc->packer);
|
|
|
|
sfc->bitmap_id = sfc->bitmap_pos_id = 0;
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
*sfc = (struct osd_bitmap_surface){
|
2012-09-28 21:49:09 +02:00
|
|
|
.surface = VDP_INVALID_HANDLE,
|
|
|
|
};
|
|
|
|
}
|
2009-09-07 01:02:24 +02:00
|
|
|
vc->output_surface_width = vc->output_surface_height = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int handle_preemption(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
|
2013-11-05 22:06:32 +01:00
|
|
|
if (!mp_vdpau_status_ok(vc->mpvdp)) {
|
2009-09-07 01:02:24 +02:00
|
|
|
mark_vdpau_objects_uninitialized(vo);
|
|
|
|
return -1;
|
|
|
|
}
|
2013-11-05 22:06:32 +01:00
|
|
|
|
|
|
|
if (vc->preemption_counter == vc->mpvdp->preemption_counter)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
mark_vdpau_objects_uninitialized(vo);
|
|
|
|
|
|
|
|
vc->preemption_counter = vc->mpvdp->preemption_counter;
|
|
|
|
vc->vdp_device = vc->mpvdp->vdp_device;
|
|
|
|
|
|
|
|
if (initialize_vdpau_objects(vo) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2009-09-07 01:02:24 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
static bool status_ok(struct vo *vo)
|
|
|
|
{
|
|
|
|
return vo->config_ok && handle_preemption(vo) >= 0;
|
|
|
|
}
|
|
|
|
|
2009-02-16 21:58:13 +01:00
|
|
|
/*
|
|
|
|
* connect to X server, create and map window, initialize all
|
|
|
|
* VDPAU objects, create different surfaces etc.
|
|
|
|
*/
|
2009-05-04 02:09:50 +02:00
|
|
|
static int config(struct vo *vo, uint32_t width, uint32_t height,
|
|
|
|
uint32_t d_width, uint32_t d_height, uint32_t flags,
|
2011-12-06 20:23:54 +01:00
|
|
|
uint32_t format)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
2009-05-06 22:42:24 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2009-09-07 01:02:24 +02:00
|
|
|
if (handle_preemption(vo) < 0)
|
|
|
|
return -1;
|
2009-11-15 14:50:28 +01:00
|
|
|
|
|
|
|
vc->flip = flags & VOFLAG_FLIPPING;
|
2009-05-06 22:42:24 +02:00
|
|
|
vc->image_format = format;
|
|
|
|
vc->vid_width = width;
|
|
|
|
vc->vid_height = height;
|
2011-10-06 20:46:01 +02:00
|
|
|
|
2013-08-18 05:12:21 +02:00
|
|
|
vc->rgb_mode = get_rgb_format(format) >= 0;
|
|
|
|
|
|
|
|
vc->deint = vc->rgb_mode ? 0 : vc->user_deint;
|
|
|
|
|
2009-05-06 20:04:37 +02:00
|
|
|
free_video_specific(vo);
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2013-02-24 23:32:51 +01:00
|
|
|
vo_x11_config_vo_window(vo, NULL, vo->dx, vo->dy, d_width, d_height,
|
2013-01-27 12:01:08 +01:00
|
|
|
flags, "vdpau");
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2009-09-07 01:02:24 +02:00
|
|
|
if (initialize_vdpau_objects(vo) < 0)
|
2009-02-16 21:58:13 +01:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-26 18:00:26 +02:00
|
|
|
static struct bitmap_packer *make_packer(struct vo *vo, VdpRGBAFormat format)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
2009-05-06 20:04:37 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2009-05-09 17:08:30 +02:00
|
|
|
|
2012-08-26 18:00:26 +02:00
|
|
|
struct bitmap_packer *packer = talloc_zero(vo, struct bitmap_packer);
|
|
|
|
uint32_t w_max = 0, h_max = 0;
|
|
|
|
VdpStatus vdp_st = vdp->
|
|
|
|
bitmap_surface_query_capabilities(vc->vdp_device, format,
|
|
|
|
&(VdpBool){0}, &w_max, &h_max);
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
CHECK_ST_WARNING("Query to get max OSD surface size failed");
|
2012-08-26 18:00:26 +02:00
|
|
|
packer->w_max = w_max;
|
|
|
|
packer->h_max = h_max;
|
|
|
|
return packer;
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
static void draw_osd_part(struct vo *vo, int index)
|
2009-05-06 20:04:37 +02:00
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2009-02-23 10:21:57 +01:00
|
|
|
VdpStatus vdp_st;
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
struct osd_bitmap_surface *sfc = &vc->osd_surfaces[index];
|
2009-05-06 22:42:24 +02:00
|
|
|
VdpOutputSurface output_surface = vc->output_surfaces[vc->surface_num];
|
2009-02-23 10:21:57 +01:00
|
|
|
int i;
|
|
|
|
|
2009-05-09 17:08:30 +02:00
|
|
|
VdpOutputSurfaceRenderBlendState blend_state = {
|
|
|
|
.struct_version = VDP_OUTPUT_SURFACE_RENDER_BLEND_STATE_VERSION,
|
|
|
|
.blend_factor_source_color =
|
|
|
|
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_SRC_ALPHA,
|
|
|
|
.blend_factor_source_alpha =
|
2013-11-18 14:02:14 +01:00
|
|
|
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ZERO,
|
2009-05-09 17:08:30 +02:00
|
|
|
.blend_factor_destination_color =
|
|
|
|
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA,
|
|
|
|
.blend_factor_destination_alpha =
|
2013-11-18 14:02:14 +01:00
|
|
|
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ZERO,
|
2009-05-09 17:08:30 +02:00
|
|
|
.blend_equation_color = VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_ADD,
|
|
|
|
.blend_equation_alpha = VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_ADD,
|
|
|
|
};
|
|
|
|
|
2012-10-05 20:37:16 +02:00
|
|
|
VdpOutputSurfaceRenderBlendState blend_state_premultiplied = blend_state;
|
|
|
|
blend_state_premultiplied.blend_factor_source_color =
|
|
|
|
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE;
|
|
|
|
|
2012-09-28 21:49:09 +02:00
|
|
|
for (i = 0; i < sfc->render_count; i++) {
|
2012-10-05 20:37:16 +02:00
|
|
|
VdpOutputSurfaceRenderBlendState *blend = &blend_state;
|
|
|
|
if (sfc->format == VDP_RGBA_FORMAT_B8G8R8A8)
|
|
|
|
blend = &blend_state_premultiplied;
|
2009-05-09 17:08:30 +02:00
|
|
|
vdp_st = vdp->
|
|
|
|
output_surface_render_bitmap_surface(output_surface,
|
2012-09-28 21:49:09 +02:00
|
|
|
&sfc->targets[i].dest,
|
|
|
|
sfc->surface,
|
|
|
|
&sfc->targets[i].source,
|
|
|
|
&sfc->targets[i].color,
|
2012-10-05 20:37:16 +02:00
|
|
|
blend,
|
2009-05-09 17:08:30 +02:00
|
|
|
VDP_OUTPUT_SURFACE_RENDER_ROTATE_0);
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
CHECK_ST_WARNING("OSD: Error when rendering");
|
2009-02-23 10:21:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
static void generate_osd_part(struct vo *vo, struct sub_bitmaps *imgs)
|
2009-05-06 20:04:37 +02:00
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2009-02-23 10:21:57 +01:00
|
|
|
VdpStatus vdp_st;
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
struct osd_bitmap_surface *sfc = &vc->osd_surfaces[imgs->render_index];
|
2012-08-26 18:00:26 +02:00
|
|
|
bool need_upload = false;
|
2011-10-27 12:07:10 +02:00
|
|
|
|
2012-09-28 21:49:09 +02:00
|
|
|
if (imgs->bitmap_pos_id == sfc->bitmap_pos_id)
|
2012-08-26 18:00:26 +02:00
|
|
|
return; // Nothing changed and we still have the old data
|
2011-10-27 12:07:10 +02:00
|
|
|
|
2012-09-28 21:49:09 +02:00
|
|
|
sfc->render_count = 0;
|
2012-08-26 18:00:26 +02:00
|
|
|
|
2012-10-02 00:25:06 +02:00
|
|
|
if (imgs->format == SUBBITMAP_EMPTY || imgs->num_parts == 0)
|
2012-08-31 14:42:30 +02:00
|
|
|
return;
|
2012-08-26 18:00:26 +02:00
|
|
|
|
2012-09-28 21:49:09 +02:00
|
|
|
if (imgs->bitmap_id == sfc->bitmap_id)
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
goto osd_skip_upload;
|
2011-10-27 12:07:10 +02:00
|
|
|
|
2012-08-26 18:00:26 +02:00
|
|
|
need_upload = true;
|
2012-08-31 14:42:30 +02:00
|
|
|
VdpRGBAFormat format;
|
|
|
|
int format_size;
|
2012-09-28 21:19:36 +02:00
|
|
|
switch (imgs->format) {
|
2012-08-31 14:42:30 +02:00
|
|
|
case SUBBITMAP_LIBASS:
|
|
|
|
format = VDP_RGBA_FORMAT_A8;
|
|
|
|
format_size = 1;
|
|
|
|
break;
|
|
|
|
case SUBBITMAP_RGBA:
|
|
|
|
format = VDP_RGBA_FORMAT_B8G8R8A8;
|
|
|
|
format_size = 4;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
};
|
|
|
|
if (sfc->format != format) {
|
|
|
|
talloc_free(sfc->packer);
|
|
|
|
sfc->packer = NULL;
|
|
|
|
};
|
|
|
|
sfc->format = format;
|
2012-08-26 18:00:26 +02:00
|
|
|
if (!sfc->packer)
|
2012-08-31 14:42:30 +02:00
|
|
|
sfc->packer = make_packer(vo, format);
|
2012-09-28 21:19:36 +02:00
|
|
|
sfc->packer->padding = imgs->scaled; // assume 2x2 filter on scaling
|
|
|
|
int r = packer_pack_from_subbitmaps(sfc->packer, imgs);
|
2012-08-26 18:00:26 +02:00
|
|
|
if (r < 0) {
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_ERR(vo, "OSD bitmaps do not fit on a surface with the maximum "
|
|
|
|
"supported size\n");
|
2012-08-26 18:00:26 +02:00
|
|
|
return;
|
|
|
|
} else if (r == 1) {
|
|
|
|
if (sfc->surface != VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->bitmap_surface_destroy(sfc->surface);
|
2010-05-26 07:54:09 +02:00
|
|
|
CHECK_ST_WARNING("Error when calling vdp_bitmap_surface_destroy");
|
|
|
|
}
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_VERBOSE(vo, "Allocating a %dx%d surface for OSD bitmaps.\n",
|
|
|
|
sfc->packer->w, sfc->packer->h);
|
2012-08-31 14:42:30 +02:00
|
|
|
vdp_st = vdp->bitmap_surface_create(vc->vdp_device, format,
|
2012-08-26 18:00:26 +02:00
|
|
|
sfc->packer->w, sfc->packer->h,
|
|
|
|
true, &sfc->surface);
|
2009-09-02 19:21:24 +02:00
|
|
|
if (vdp_st != VDP_STATUS_OK)
|
2012-08-26 18:00:26 +02:00
|
|
|
sfc->surface = VDP_INVALID_HANDLE;
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
CHECK_ST_WARNING("OSD: error when creating surface");
|
2009-02-23 10:21:57 +01:00
|
|
|
}
|
2012-08-31 14:42:30 +02:00
|
|
|
if (imgs->scaled) {
|
|
|
|
char zeros[sfc->packer->used_width * format_size];
|
|
|
|
memset(zeros, 0, sizeof(zeros));
|
|
|
|
vdp_st = vdp->bitmap_surface_put_bits_native(sfc->surface,
|
|
|
|
&(const void *){zeros}, &(uint32_t){0},
|
|
|
|
&(VdpRect){0, 0, sfc->packer->used_width,
|
|
|
|
sfc->packer->used_height});
|
|
|
|
}
|
2009-02-23 10:21:57 +01:00
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
osd_skip_upload:
|
2012-08-26 18:00:26 +02:00
|
|
|
if (sfc->surface == VDP_INVALID_HANDLE)
|
2009-09-02 19:21:24 +02:00
|
|
|
return;
|
2012-09-28 21:49:09 +02:00
|
|
|
if (sfc->packer->count > sfc->targets_size) {
|
|
|
|
talloc_free(sfc->targets);
|
|
|
|
sfc->targets_size = sfc->packer->count;
|
|
|
|
sfc->targets = talloc_size(vc, sfc->targets_size
|
|
|
|
* sizeof(*sfc->targets));
|
2012-09-28 21:19:36 +02:00
|
|
|
}
|
2012-08-26 18:00:26 +02:00
|
|
|
|
2012-09-28 21:19:36 +02:00
|
|
|
for (int i = 0 ;i < sfc->packer->count; i++) {
|
|
|
|
struct sub_bitmap *b = &imgs->parts[i];
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
struct osd_target *target = sfc->targets + sfc->render_count;
|
2012-09-28 21:19:36 +02:00
|
|
|
int x = sfc->packer->result[i].x;
|
|
|
|
int y = sfc->packer->result[i].y;
|
|
|
|
target->source = (VdpRect){x, y, x + b->w, y + b->h};
|
|
|
|
target->dest = (VdpRect){b->x, b->y, b->x + b->dw, b->y + b->dh};
|
|
|
|
target->color = (VdpColor){1, 1, 1, 1};
|
|
|
|
if (imgs->format == SUBBITMAP_LIBASS) {
|
|
|
|
uint32_t color = b->libass.color;
|
|
|
|
target->color.alpha = 1.0 - ((color >> 0) & 0xff) / 255.0;
|
|
|
|
target->color.blue = ((color >> 8) & 0xff) / 255.0;
|
|
|
|
target->color.green = ((color >> 16) & 0xff) / 255.0;
|
|
|
|
target->color.red = ((color >> 24) & 0xff) / 255.0;
|
2012-08-31 14:42:30 +02:00
|
|
|
}
|
2012-09-28 21:19:36 +02:00
|
|
|
if (need_upload) {
|
|
|
|
vdp_st = vdp->
|
|
|
|
bitmap_surface_put_bits_native(sfc->surface,
|
|
|
|
&(const void *){b->bitmap},
|
|
|
|
&(uint32_t){b->stride},
|
|
|
|
&target->source);
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
CHECK_ST_WARNING("OSD: putbits failed");
|
2012-08-26 18:00:26 +02:00
|
|
|
}
|
2012-09-28 21:49:09 +02:00
|
|
|
sfc->render_count++;
|
2012-08-26 18:00:26 +02:00
|
|
|
}
|
2012-09-28 21:19:36 +02:00
|
|
|
|
2012-09-28 21:49:09 +02:00
|
|
|
sfc->bitmap_id = imgs->bitmap_id;
|
|
|
|
sfc->bitmap_pos_id = imgs->bitmap_pos_id;
|
2012-08-26 18:00:26 +02:00
|
|
|
}
|
2011-10-27 12:07:10 +02:00
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
static void draw_osd_cb(void *ctx, struct sub_bitmaps *imgs)
|
2012-08-26 18:00:26 +02:00
|
|
|
{
|
|
|
|
struct vo *vo = ctx;
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
generate_osd_part(vo, imgs);
|
|
|
|
draw_osd_part(vo, imgs->render_index);
|
2012-08-26 18:00:26 +02:00
|
|
|
}
|
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
static void draw_osd(struct vo *vo, struct osd_state *osd)
|
2012-08-26 18:00:26 +02:00
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
if (!status_ok(vo))
|
2012-08-26 18:00:26 +02:00
|
|
|
return;
|
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
static const bool formats[SUBBITMAP_COUNT] = {
|
|
|
|
[SUBBITMAP_LIBASS] = true,
|
|
|
|
[SUBBITMAP_RGBA] = true,
|
2012-08-26 18:00:26 +02:00
|
|
|
};
|
|
|
|
|
2012-10-27 22:10:32 +02:00
|
|
|
osd_draw(osd, vc->osd_rect, osd->vo_pts, 0, formats, draw_osd_cb, vo);
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
|
2010-05-14 04:18:38 +02:00
|
|
|
static int update_presentation_queue_status(struct vo *vo)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
2009-05-06 20:04:37 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2009-02-16 21:58:13 +01:00
|
|
|
VdpStatus vdp_st;
|
2009-05-09 17:08:30 +02:00
|
|
|
|
2010-05-14 04:18:38 +02:00
|
|
|
while (vc->query_surface_num != vc->surface_num) {
|
|
|
|
VdpTime vtime;
|
|
|
|
VdpPresentationQueueStatus status;
|
|
|
|
VdpOutputSurface surface = vc->output_surfaces[vc->query_surface_num];
|
|
|
|
vdp_st = vdp->presentation_queue_query_surface_status(vc->flip_queue,
|
|
|
|
surface,
|
|
|
|
&status, &vtime);
|
|
|
|
CHECK_ST_WARNING("Error calling "
|
|
|
|
"presentation_queue_query_surface_status");
|
|
|
|
if (status == VDP_PRESENTATION_QUEUE_STATUS_QUEUED)
|
|
|
|
break;
|
|
|
|
if (vc->vsync_interval > 1) {
|
|
|
|
uint64_t qtime = vc->queue_time[vc->query_surface_num];
|
|
|
|
if (vtime < qtime + vc->vsync_interval / 2)
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_VERBOSE(vo, "Frame shown too early\n");
|
2010-05-14 04:18:38 +02:00
|
|
|
if (vtime > qtime + vc->vsync_interval)
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_VERBOSE(vo, "Frame shown late\n");
|
2010-05-14 04:18:38 +02:00
|
|
|
}
|
|
|
|
vc->query_surface_num = WRAP_ADD(vc->query_surface_num, 1,
|
|
|
|
vc->num_output_surfaces);
|
|
|
|
vc->recent_vsync_time = vtime;
|
|
|
|
}
|
|
|
|
int num_queued = WRAP_ADD(vc->surface_num, -vc->query_surface_num,
|
|
|
|
vc->num_output_surfaces);
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_DBG(vo, "Queued surface count (before add): %d\n", num_queued);
|
2010-05-14 04:18:38 +02:00
|
|
|
return num_queued;
|
2009-11-15 03:39:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint64_t prev_vs2(struct vdpctx *vc, uint64_t ts, int shift)
|
|
|
|
{
|
|
|
|
uint64_t offset = ts - vc->recent_vsync_time;
|
|
|
|
// Fix negative values for 1<<shift vsyncs before vc->recent_vsync_time
|
|
|
|
offset += (uint64_t)vc->vsync_interval << shift;
|
|
|
|
offset %= vc->vsync_interval;
|
|
|
|
return ts - offset;
|
|
|
|
}
|
|
|
|
|
2013-05-25 18:31:06 +02:00
|
|
|
static void flip_page_timed(struct vo *vo, int64_t pts_us, int duration)
|
2009-11-15 03:39:22 +01:00
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
|
|
|
VdpStatus vdp_st;
|
|
|
|
uint32_t vsync_interval = vc->vsync_interval;
|
|
|
|
|
2009-09-07 01:02:24 +02:00
|
|
|
if (handle_preemption(vo) < 0)
|
|
|
|
return;
|
|
|
|
|
2009-11-15 03:39:22 +01:00
|
|
|
if (duration > INT_MAX / 1000)
|
|
|
|
duration = -1;
|
|
|
|
else
|
|
|
|
duration *= 1000;
|
|
|
|
|
2012-07-27 02:40:38 +02:00
|
|
|
if (vc->vsync_interval == 1)
|
2009-11-15 03:39:22 +01:00
|
|
|
duration = -1; // Make sure drop logic is disabled
|
|
|
|
|
|
|
|
uint64_t now = sync_vdptime(vo);
|
|
|
|
uint64_t pts = pts_us ? convert_to_vdptime(vo, pts_us) : now;
|
|
|
|
uint64_t ideal_pts = pts;
|
|
|
|
uint64_t npts = duration >= 0 ? pts + duration : UINT64_MAX;
|
|
|
|
|
|
|
|
#define PREV_VS2(ts, shift) prev_vs2(vc, ts, shift)
|
|
|
|
// Only gives accurate results for ts >= vc->recent_vsync_time
|
|
|
|
#define PREV_VSYNC(ts) PREV_VS2(ts, 0)
|
|
|
|
|
|
|
|
/* We hope to be here at least one vsync before the frame should be shown.
|
|
|
|
* If we are running late then don't drop the frame unless there is
|
|
|
|
* already one queued for the next vsync; even if we _hope_ to show the
|
|
|
|
* next frame soon enough to mean this one should be dropped we might
|
|
|
|
* not make the target time in reality. Without this check we could drop
|
|
|
|
* every frame, freezing the display completely if video lags behind.
|
|
|
|
*/
|
2010-05-06 03:46:10 +02:00
|
|
|
if (now > PREV_VSYNC(FFMAX(pts, vc->last_queue_time + vsync_interval)))
|
2009-11-15 03:39:22 +01:00
|
|
|
npts = UINT64_MAX;
|
|
|
|
|
|
|
|
/* Allow flipping a frame at a vsync if its presentation time is a
|
|
|
|
* bit after that vsync and the change makes the flip time delta
|
|
|
|
* from previous frame better match the target timestamp delta.
|
|
|
|
* This avoids instability with frame timestamps falling near vsyncs.
|
|
|
|
* For example if the frame timestamps were (with vsyncs at
|
|
|
|
* integer values) 0.01, 1.99, 4.01, 5.99, 8.01, ... then
|
|
|
|
* straightforward timing at next vsync would flip the frames at
|
|
|
|
* 1, 2, 5, 6, 9; this changes it to 1, 2, 4, 6, 8 and so on with
|
|
|
|
* regular 2-vsync intervals.
|
|
|
|
*
|
|
|
|
* Also allow moving the frame forward if it looks like we dropped
|
|
|
|
* the previous frame incorrectly (now that we know better after
|
|
|
|
* having final exact timestamp information for this frame) and
|
|
|
|
* there would unnecessarily be a vsync without a frame change.
|
|
|
|
*/
|
|
|
|
uint64_t vsync = PREV_VSYNC(pts);
|
|
|
|
if (pts < vsync + vsync_interval / 4
|
|
|
|
&& (vsync - PREV_VS2(vc->last_queue_time, 16)
|
|
|
|
> pts - vc->last_ideal_time + vsync_interval / 2
|
|
|
|
|| vc->dropped_frame && vsync > vc->dropped_time))
|
|
|
|
pts -= vsync_interval / 2;
|
|
|
|
|
|
|
|
vc->dropped_frame = true; // changed at end if false
|
|
|
|
vc->dropped_time = ideal_pts;
|
|
|
|
|
|
|
|
pts = FFMAX(pts, vc->last_queue_time + vsync_interval);
|
|
|
|
pts = FFMAX(pts, now);
|
|
|
|
if (npts < PREV_VSYNC(pts) + vsync_interval)
|
|
|
|
return;
|
|
|
|
|
2010-05-14 04:18:38 +02:00
|
|
|
int num_flips = update_presentation_queue_status(vo);
|
|
|
|
vsync = vc->recent_vsync_time + num_flips * vc->vsync_interval;
|
2009-11-15 03:39:22 +01:00
|
|
|
now = sync_vdptime(vo);
|
|
|
|
pts = FFMAX(pts, now);
|
2010-05-14 04:18:38 +02:00
|
|
|
pts = FFMAX(pts, vsync + (vsync_interval >> 2));
|
2009-11-15 03:39:22 +01:00
|
|
|
vsync = PREV_VSYNC(pts);
|
|
|
|
if (npts < vsync + vsync_interval)
|
|
|
|
return;
|
|
|
|
pts = vsync + (vsync_interval >> 2);
|
2009-05-09 17:08:30 +02:00
|
|
|
vdp_st =
|
|
|
|
vdp->presentation_queue_display(vc->flip_queue,
|
|
|
|
vc->output_surfaces[vc->surface_num],
|
2009-11-15 03:39:22 +01:00
|
|
|
vo->dwidth, vo->dheight, pts);
|
2009-05-09 17:08:30 +02:00
|
|
|
CHECK_ST_WARNING("Error when calling vdp_presentation_queue_display");
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2009-11-15 03:39:22 +01:00
|
|
|
vc->last_queue_time = pts;
|
2010-05-14 04:18:38 +02:00
|
|
|
vc->queue_time[vc->surface_num] = pts;
|
2009-11-15 03:39:22 +01:00
|
|
|
vc->last_ideal_time = ideal_pts;
|
|
|
|
vc->dropped_frame = false;
|
2010-05-14 04:18:38 +02:00
|
|
|
vc->surface_num = WRAP_ADD(vc->surface_num, 1, vc->num_output_surfaces);
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
|
2013-08-18 05:12:21 +02:00
|
|
|
static VdpOutputSurface get_rgb_surface(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
|
|
|
|
assert(vc->rgb_mode);
|
|
|
|
|
|
|
|
for (int n = 0; n < NUM_BUFFERED_VIDEO; n++) {
|
|
|
|
VdpOutputSurface surface = vc->rgb_surfaces[n];
|
|
|
|
// Note: we expect to be called before add_new_video_surface(), which
|
|
|
|
// will lead to vc->buffered_video[NUM_BUFFERED_VIDEO - 1] to be
|
|
|
|
// marked unused. So this entries rgb_surface can be reused
|
|
|
|
// freely.
|
|
|
|
for (int i = 0; i < NUM_BUFFERED_VIDEO - 1; i++) {
|
|
|
|
if (vc->buffered_video[i].rgb_surface == surface)
|
|
|
|
goto in_use;
|
|
|
|
}
|
|
|
|
return surface;
|
|
|
|
in_use:;
|
|
|
|
}
|
|
|
|
|
2013-08-23 23:30:09 +02:00
|
|
|
MP_ERR(vo, "no surfaces available in get_rgb_surface\n");
|
2013-08-18 05:12:21 +02:00
|
|
|
return VDP_INVALID_HANDLE;
|
|
|
|
}
|
|
|
|
|
video/filter: change filter API, use refcounting, remove filter DR
Change the entire filter API to use reference counted images instead
of vf_get_image().
Remove filter "direct rendering". This was useful for vf_expand and (in
rare cases) vf_sub: DR allowed these filters to pass a cropped image to
the filters before them. Then, on filtering, the image was "uncropped",
so that black bars could be added around the image without copying. This
means that in some cases, vf_expand will be slower (-vf gradfun,expand
for example).
Note that another form of DR used for in-place filters has been replaced
by simpler logic. Instead of trying to do DR, filters can check if the
image is writeable (with mp_image_is_writeable()), and do true in-place
if that's the case. This affects filters like vf_gradfun and vf_sub.
Everything has to support strides now. If something doesn't, making a
copy of the image data is required.
2012-11-05 14:25:04 +01:00
|
|
|
static void draw_image(struct vo *vo, mp_image_t *mpi)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
2009-05-06 20:04:37 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2009-09-18 15:27:55 +02:00
|
|
|
struct mp_image *reserved_mpi = NULL;
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
VdpVideoSurface surface = VDP_INVALID_HANDLE;
|
2013-08-18 05:12:21 +02:00
|
|
|
VdpOutputSurface rgb_surface = VDP_INVALID_HANDLE;
|
|
|
|
VdpStatus vdp_st;
|
2009-09-18 15:27:55 +02:00
|
|
|
|
2013-10-01 23:45:30 +02:00
|
|
|
// Forget previous frames, as we can display a new one now.
|
|
|
|
vc->prev_deint_queue_pos = -1001;
|
|
|
|
|
2013-11-29 14:19:44 +01:00
|
|
|
if (vc->image_format == IMGFMT_VDPAU) {
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
surface = (VdpVideoSurface)(intptr_t)mpi->planes[3];
|
|
|
|
reserved_mpi = mp_image_new_ref(mpi);
|
2013-08-18 05:12:21 +02:00
|
|
|
} else if (vc->rgb_mode) {
|
|
|
|
rgb_surface = get_rgb_surface(vo);
|
|
|
|
if (rgb_surface != VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->output_surface_put_bits_native(rgb_surface,
|
|
|
|
&(const void *){mpi->planes[0]},
|
|
|
|
&(uint32_t){mpi->stride[0]},
|
|
|
|
NULL);
|
|
|
|
CHECK_ST_WARNING("Error when calling "
|
|
|
|
"output_surface_put_bits_native");
|
|
|
|
}
|
2012-11-04 18:16:36 +01:00
|
|
|
} else {
|
2013-11-05 22:06:32 +01:00
|
|
|
reserved_mpi = mp_vdpau_get_video_surface(vc->mpvdp, IMGFMT_VDPAU,
|
|
|
|
vc->vdp_chroma_type,
|
|
|
|
mpi->w, mpi->h);
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
if (!reserved_mpi)
|
|
|
|
return;
|
|
|
|
surface = (VdpVideoSurface)(intptr_t)reserved_mpi->planes[3];
|
2011-12-20 02:47:16 +01:00
|
|
|
if (handle_preemption(vo) >= 0) {
|
|
|
|
const void *destdata[3] = {mpi->planes[0], mpi->planes[2],
|
|
|
|
mpi->planes[1]};
|
|
|
|
if (vc->image_format == IMGFMT_NV12)
|
|
|
|
destdata[1] = destdata[2];
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
vdp_st = vdp->video_surface_put_bits_y_cb_cr(surface,
|
2011-12-20 02:47:16 +01:00
|
|
|
vc->vdp_pixel_format, destdata, mpi->stride);
|
|
|
|
CHECK_ST_WARNING("Error when calling "
|
|
|
|
"vdp_video_surface_put_bits_y_cb_cr");
|
|
|
|
}
|
2012-11-04 18:16:36 +01:00
|
|
|
}
|
2009-03-29 13:15:22 +02:00
|
|
|
if (mpi->fields & MP_IMGFIELD_ORDERED)
|
2009-05-06 22:42:24 +02:00
|
|
|
vc->top_field_first = !!(mpi->fields & MP_IMGFIELD_TOP_FIRST);
|
2009-03-29 13:15:22 +02:00
|
|
|
else
|
2009-05-06 22:42:24 +02:00
|
|
|
vc->top_field_first = 1;
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2013-08-18 05:12:21 +02:00
|
|
|
add_new_video_surface(vo, surface, rgb_surface, reserved_mpi, mpi->pts);
|
2009-09-18 15:27:55 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-06 20:46:01 +02:00
|
|
|
// warning: the size and pixel format of surface must match that of the
|
|
|
|
// surfaces in vc->output_surfaces
|
|
|
|
static struct mp_image *read_output_surface(struct vdpctx *vc,
|
2012-10-21 00:48:01 +02:00
|
|
|
VdpOutputSurface surface,
|
|
|
|
int width, int height)
|
2011-10-06 20:46:01 +02:00
|
|
|
{
|
|
|
|
VdpStatus vdp_st;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2012-12-22 21:46:22 +01:00
|
|
|
struct mp_image *image = mp_image_alloc(IMGFMT_BGR32, width, height);
|
2012-10-26 19:29:47 +02:00
|
|
|
image->colorspace = MP_CSP_RGB;
|
|
|
|
image->levels = vc->colorspace.levels_out; // hardcoded with conv. matrix
|
2011-10-06 20:46:01 +02:00
|
|
|
|
|
|
|
void *dst_planes[] = { image->planes[0] };
|
|
|
|
uint32_t dst_pitches[] = { image->stride[0] };
|
|
|
|
vdp_st = vdp->output_surface_get_bits_native(surface, NULL, dst_planes,
|
|
|
|
dst_pitches);
|
|
|
|
CHECK_ST_WARNING("Error when calling vdp_output_surface_get_bits_native");
|
|
|
|
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct mp_image *get_screenshot(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
2012-10-21 00:48:01 +02:00
|
|
|
VdpStatus vdp_st;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
2011-10-06 20:46:01 +02:00
|
|
|
|
2012-10-21 00:48:01 +02:00
|
|
|
if (vc->screenshot_surface == VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->output_surface_create(vc->vdp_device,
|
|
|
|
OUTPUT_RGBA_FORMAT,
|
|
|
|
vc->vid_width, vc->vid_height,
|
|
|
|
&vc->screenshot_surface);
|
|
|
|
CHECK_ST_WARNING("Error when calling vdp_output_surface_create");
|
|
|
|
}
|
2011-10-06 20:46:01 +02:00
|
|
|
|
|
|
|
VdpRect rc = { .x1 = vc->vid_width, .y1 = vc->vid_height };
|
2013-08-18 05:06:46 +02:00
|
|
|
render_video_to_output_surface(vo, vc->screenshot_surface, &rc, &rc);
|
2011-10-06 20:46:01 +02:00
|
|
|
|
2012-10-21 00:48:01 +02:00
|
|
|
struct mp_image *image = read_output_surface(vc, vc->screenshot_surface,
|
|
|
|
vc->vid_width, vc->vid_height);
|
2011-10-06 20:46:01 +02:00
|
|
|
|
2012-11-10 02:02:24 +01:00
|
|
|
mp_image_set_display_size(image, vo->aspdat.prew, vo->aspdat.preh);
|
2011-10-06 20:46:01 +02:00
|
|
|
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct mp_image *get_window_screenshot(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
int last_surface = WRAP_ADD(vc->surface_num, -1, vc->num_output_surfaces);
|
|
|
|
VdpOutputSurface screen = vc->output_surfaces[last_surface];
|
2012-10-21 00:48:01 +02:00
|
|
|
struct mp_image *image = read_output_surface(vo->priv, screen,
|
|
|
|
vc->output_surface_width,
|
|
|
|
vc->output_surface_height);
|
2012-11-10 02:02:24 +01:00
|
|
|
mp_image_set_size(image, vo->dwidth, vo->dheight);
|
2011-10-06 20:46:01 +02:00
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
2012-11-04 16:24:18 +01:00
|
|
|
static int query_format(struct vo *vo, uint32_t format)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
2013-08-18 05:12:21 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
|
2013-12-05 22:55:35 +01:00
|
|
|
int flags = VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW;
|
2013-08-18 05:12:21 +02:00
|
|
|
if (mp_vdpau_get_format(format, NULL, NULL))
|
|
|
|
return flags;
|
|
|
|
int rgb_format = get_rgb_format(format);
|
|
|
|
if (!vc->force_yuv && rgb_format >= 0)
|
|
|
|
return flags;
|
|
|
|
return 0;
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
|
2009-05-06 20:04:37 +02:00
|
|
|
static void destroy_vdpau_objects(struct vo *vo)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
2009-05-06 20:04:37 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
|
|
|
|
2009-02-16 21:58:13 +01:00
|
|
|
VdpStatus vdp_st;
|
|
|
|
|
2009-05-06 20:04:37 +02:00
|
|
|
free_video_specific(vo);
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2009-05-08 19:57:22 +02:00
|
|
|
if (vc->flip_queue != VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->presentation_queue_destroy(vc->flip_queue);
|
2009-05-09 17:08:30 +02:00
|
|
|
CHECK_ST_WARNING("Error when calling vdp_presentation_queue_destroy");
|
2009-05-08 19:57:22 +02:00
|
|
|
}
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2009-05-08 19:57:22 +02:00
|
|
|
if (vc->flip_target != VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->presentation_queue_target_destroy(vc->flip_target);
|
2009-05-09 17:08:30 +02:00
|
|
|
CHECK_ST_WARNING("Error when calling "
|
|
|
|
"vdp_presentation_queue_target_destroy");
|
2009-05-08 19:57:22 +02:00
|
|
|
}
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2013-07-23 00:45:23 +02:00
|
|
|
for (int i = 0; i < vc->num_output_surfaces; i++) {
|
2009-05-08 19:57:22 +02:00
|
|
|
if (vc->output_surfaces[i] == VDP_INVALID_HANDLE)
|
|
|
|
continue;
|
2009-05-06 22:42:24 +02:00
|
|
|
vdp_st = vdp->output_surface_destroy(vc->output_surfaces[i]);
|
2009-05-09 17:08:30 +02:00
|
|
|
CHECK_ST_WARNING("Error when calling vdp_output_surface_destroy");
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
|
2012-09-28 21:49:09 +02:00
|
|
|
for (int i = 0; i < MAX_OSD_PARTS; i++) {
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 19:25:18 +02:00
|
|
|
struct osd_bitmap_surface *sfc = &vc->osd_surfaces[i];
|
2012-09-28 21:49:09 +02:00
|
|
|
if (sfc->surface != VDP_INVALID_HANDLE) {
|
|
|
|
vdp_st = vdp->bitmap_surface_destroy(sfc->surface);
|
|
|
|
CHECK_ST_WARNING("Error when calling vdp_bitmap_surface_destroy");
|
|
|
|
}
|
2009-02-23 10:21:57 +01:00
|
|
|
}
|
|
|
|
|
2013-11-05 22:06:32 +01:00
|
|
|
mp_vdpau_destroy(vc->mpvdp);
|
|
|
|
vc->mpvdp = NULL;
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
|
2009-05-04 02:09:50 +02:00
|
|
|
static void uninit(struct vo *vo)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
|
|
|
/* Destroy all vdpau objects */
|
2009-05-06 20:04:37 +02:00
|
|
|
destroy_vdpau_objects(vo);
|
2009-02-23 10:21:57 +01:00
|
|
|
|
2009-05-04 02:09:50 +02:00
|
|
|
vo_x11_uninit(vo);
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
|
2013-07-22 22:52:42 +02:00
|
|
|
static int preinit(struct vo *vo)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
2012-06-25 22:12:03 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
2009-02-16 21:58:13 +01:00
|
|
|
|
2013-11-05 22:06:32 +01:00
|
|
|
if (!vo_x11_init(vo))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
vc->mpvdp = mp_vdpau_create_device_x11(vo->log, vo->x11);
|
|
|
|
if (!vc->mpvdp) {
|
|
|
|
vo_x11_uninit(vo);
|
|
|
|
return -1;
|
|
|
|
}
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
|
2009-05-08 20:48:01 +02:00
|
|
|
// Mark everything as invalid first so uninit() can tell what has been
|
|
|
|
// allocated
|
2009-09-07 01:02:24 +02:00
|
|
|
mark_vdpau_objects_uninitialized(vo);
|
2009-05-08 20:48:01 +02:00
|
|
|
|
2013-11-05 22:06:32 +01:00
|
|
|
vc->preemption_counter = vc->mpvdp->preemption_counter;
|
|
|
|
vc->vdp_device = vc->mpvdp->vdp_device;
|
|
|
|
vc->vdp = vc->mpvdp->vdp;
|
|
|
|
|
video, options: implement better YUV->RGB conversion control
Rewrite control of the colorspace and input/output level parameters
used in YUV-RGB conversions, replacing VO-specific suboptions with new
common options and adding configuration support to more cases.
Add new option --colormatrix which selects the colorspace the original
video is assumed to have in YUV->RGB conversions. The default
behavior changes from assuming BT.601 to colorspace autoselection
between BT.601 and BT.709 using a simple heuristic based on video
size. Add new options --colormatrix-input-range and
--colormatrix-output-range which select input YUV and output RGB range.
Disable the previously existing VO-specific colorspace and level
conversion suboptions in vo_gl and vo_vdpau. Remove the
"yuv_colorspace" property and replace it with one named "colormatrix"
and semantics matching the new option. Add new properties matching the
options for level conversion.
Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv
and vf_scale, and all can change it at runtime (previously only
vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion
matrix generation as vo_gl instead of libvdpau functionality; the main
functional difference is that the "contrast" equalizer control behaves
somewhat differently (it scales the Y component around 1/2 instead of
around 0, so that contrast 0 makes the image gray rather than black).
vo_xv does not support level conversion. vf_scale supports range
setting for input, but always outputs full-range RGB.
The value of the slave properties is the policy setting used for
conversions. This means they can be set to any value regardless of
whether the current VO supports that value or whether there currently
even is any video. Possibly separate properties could be added to
query the conversion actually used at the moment, if any.
Because the colorspace and level settings are now set with a single
VF/VO control call, the return value of that is no longer used to
signal whether all the settings are actually supported. Instead code
should set all the details it can support, and ignore the rest. The
core will use GET_YUV_COLORSPACE to check which colorspace details
have been set and which not. In other words, the return value for
SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace
conversion handling exists at all, and VOs have to take care to return
the actual state with GET_YUV_COLORSPACE instead.
To be changed in later commits: add missing option documentation.
2011-10-15 23:50:21 +02:00
|
|
|
vc->colorspace = (struct mp_csp_details) MP_CSP_DETAILS_DEFAULTS;
|
|
|
|
vc->video_eq.capabilities = MP_CSP_EQ_CAPS_COLORMATRIX;
|
2012-06-25 22:12:03 +02:00
|
|
|
|
|
|
|
vc->deint_type = vc->deint ? FFABS(vc->deint) : 3;
|
2011-01-04 22:51:31 +01:00
|
|
|
if (vc->deint < 0)
|
|
|
|
vc->deint = 0;
|
2009-02-16 21:58:13 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-05-06 20:04:37 +02:00
|
|
|
static int get_equalizer(struct vo *vo, const char *name, int *value)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
2013-08-18 05:12:21 +02:00
|
|
|
|
|
|
|
if (vc->rgb_mode)
|
|
|
|
return false;
|
|
|
|
|
video, options: implement better YUV->RGB conversion control
Rewrite control of the colorspace and input/output level parameters
used in YUV-RGB conversions, replacing VO-specific suboptions with new
common options and adding configuration support to more cases.
Add new option --colormatrix which selects the colorspace the original
video is assumed to have in YUV->RGB conversions. The default
behavior changes from assuming BT.601 to colorspace autoselection
between BT.601 and BT.709 using a simple heuristic based on video
size. Add new options --colormatrix-input-range and
--colormatrix-output-range which select input YUV and output RGB range.
Disable the previously existing VO-specific colorspace and level
conversion suboptions in vo_gl and vo_vdpau. Remove the
"yuv_colorspace" property and replace it with one named "colormatrix"
and semantics matching the new option. Add new properties matching the
options for level conversion.
Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv
and vf_scale, and all can change it at runtime (previously only
vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion
matrix generation as vo_gl instead of libvdpau functionality; the main
functional difference is that the "contrast" equalizer control behaves
somewhat differently (it scales the Y component around 1/2 instead of
around 0, so that contrast 0 makes the image gray rather than black).
vo_xv does not support level conversion. vf_scale supports range
setting for input, but always outputs full-range RGB.
The value of the slave properties is the policy setting used for
conversions. This means they can be set to any value regardless of
whether the current VO supports that value or whether there currently
even is any video. Possibly separate properties could be added to
query the conversion actually used at the moment, if any.
Because the colorspace and level settings are now set with a single
VF/VO control call, the return value of that is no longer used to
signal whether all the settings are actually supported. Instead code
should set all the details it can support, and ignore the rest. The
core will use GET_YUV_COLORSPACE to check which colorspace details
have been set and which not. In other words, the return value for
SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace
conversion handling exists at all, and VOs have to take care to return
the actual state with GET_YUV_COLORSPACE instead.
To be changed in later commits: add missing option documentation.
2011-10-15 23:50:21 +02:00
|
|
|
return mp_csp_equalizer_get(&vc->video_eq, name, value) >= 0 ?
|
|
|
|
VO_TRUE : VO_NOTIMPL;
|
2009-02-28 14:20:01 +01:00
|
|
|
}
|
|
|
|
|
2009-05-06 20:04:37 +02:00
|
|
|
static int set_equalizer(struct vo *vo, const char *name, int value)
|
|
|
|
{
|
|
|
|
struct vdpctx *vc = vo->priv;
|
2009-02-28 14:20:01 +01:00
|
|
|
|
2013-08-18 05:12:21 +02:00
|
|
|
if (vc->rgb_mode)
|
|
|
|
return false;
|
|
|
|
|
video, options: implement better YUV->RGB conversion control
Rewrite control of the colorspace and input/output level parameters
used in YUV-RGB conversions, replacing VO-specific suboptions with new
common options and adding configuration support to more cases.
Add new option --colormatrix which selects the colorspace the original
video is assumed to have in YUV->RGB conversions. The default
behavior changes from assuming BT.601 to colorspace autoselection
between BT.601 and BT.709 using a simple heuristic based on video
size. Add new options --colormatrix-input-range and
--colormatrix-output-range which select input YUV and output RGB range.
Disable the previously existing VO-specific colorspace and level
conversion suboptions in vo_gl and vo_vdpau. Remove the
"yuv_colorspace" property and replace it with one named "colormatrix"
and semantics matching the new option. Add new properties matching the
options for level conversion.
Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv
and vf_scale, and all can change it at runtime (previously only
vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion
matrix generation as vo_gl instead of libvdpau functionality; the main
functional difference is that the "contrast" equalizer control behaves
somewhat differently (it scales the Y component around 1/2 instead of
around 0, so that contrast 0 makes the image gray rather than black).
vo_xv does not support level conversion. vf_scale supports range
setting for input, but always outputs full-range RGB.
The value of the slave properties is the policy setting used for
conversions. This means they can be set to any value regardless of
whether the current VO supports that value or whether there currently
even is any video. Possibly separate properties could be added to
query the conversion actually used at the moment, if any.
Because the colorspace and level settings are now set with a single
VF/VO control call, the return value of that is no longer used to
signal whether all the settings are actually supported. Instead code
should set all the details it can support, and ignore the rest. The
core will use GET_YUV_COLORSPACE to check which colorspace details
have been set and which not. In other words, the return value for
SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace
conversion handling exists at all, and VOs have to take care to return
the actual state with GET_YUV_COLORSPACE instead.
To be changed in later commits: add missing option documentation.
2011-10-15 23:50:21 +02:00
|
|
|
if (mp_csp_equalizer_set(&vc->video_eq, name, value) < 0)
|
2009-02-28 14:20:01 +01:00
|
|
|
return VO_NOTIMPL;
|
|
|
|
|
2011-08-11 20:13:34 +02:00
|
|
|
if (status_ok(vo))
|
|
|
|
update_csc_matrix(vo);
|
2009-11-15 14:21:40 +01:00
|
|
|
return true;
|
2009-02-28 14:20:01 +01:00
|
|
|
}
|
|
|
|
|
2011-08-11 20:13:34 +02:00
|
|
|
static void checked_resize(struct vo *vo)
|
|
|
|
{
|
|
|
|
if (!status_ok(vo))
|
|
|
|
return;
|
|
|
|
resize(vo);
|
|
|
|
}
|
|
|
|
|
2009-05-04 02:09:50 +02:00
|
|
|
static int control(struct vo *vo, uint32_t request, void *data)
|
2009-02-16 21:58:13 +01:00
|
|
|
{
|
2009-05-06 20:04:37 +02:00
|
|
|
struct vdpctx *vc = vo->priv;
|
|
|
|
struct vdp_functions *vdp = vc->vdp;
|
|
|
|
|
2009-09-07 01:02:24 +02:00
|
|
|
handle_preemption(vo);
|
|
|
|
|
2009-02-16 21:58:13 +01:00
|
|
|
switch (request) {
|
2009-09-05 05:20:03 +02:00
|
|
|
case VOCTRL_GET_DEINTERLACE:
|
2013-08-18 05:12:21 +02:00
|
|
|
if (vc->rgb_mode)
|
|
|
|
break;
|
2010-12-20 05:42:04 +01:00
|
|
|
*(int *)data = vc->deint;
|
2009-09-05 05:20:03 +02:00
|
|
|
return VO_TRUE;
|
|
|
|
case VOCTRL_SET_DEINTERLACE:
|
2013-08-18 05:12:21 +02:00
|
|
|
if (vc->rgb_mode)
|
|
|
|
break;
|
|
|
|
vc->deint = vc->user_deint = *(int *)data;
|
2009-09-05 05:20:03 +02:00
|
|
|
if (vc->deint)
|
|
|
|
vc->deint = vc->deint_type;
|
2011-08-11 20:13:34 +02:00
|
|
|
if (vc->deint_type > 2 && status_ok(vo)) {
|
2009-09-05 05:20:03 +02:00
|
|
|
VdpStatus vdp_st;
|
|
|
|
VdpVideoMixerFeature features[1] =
|
|
|
|
{vc->deint_type == 3 ?
|
|
|
|
VDP_VIDEO_MIXER_FEATURE_DEINTERLACE_TEMPORAL :
|
|
|
|
VDP_VIDEO_MIXER_FEATURE_DEINTERLACE_TEMPORAL_SPATIAL};
|
|
|
|
VdpBool feature_enables[1] = {vc->deint ? VDP_TRUE : VDP_FALSE};
|
|
|
|
vdp_st = vdp->video_mixer_set_feature_enables(vc->video_mixer,
|
|
|
|
1, features,
|
|
|
|
feature_enables);
|
|
|
|
CHECK_ST_WARNING("Error changing deinterlacing settings");
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
2011-12-05 05:36:20 +01:00
|
|
|
vo->want_redraw = true;
|
2009-09-05 05:20:03 +02:00
|
|
|
return VO_TRUE;
|
|
|
|
case VOCTRL_PAUSE:
|
2009-11-15 03:39:22 +01:00
|
|
|
if (vc->dropped_frame)
|
2011-12-09 02:08:37 +01:00
|
|
|
vo->want_redraw = true;
|
2011-12-05 05:36:20 +01:00
|
|
|
return true;
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
case VOCTRL_GET_HWDEC_INFO: {
|
|
|
|
struct mp_hwdec_info *arg = data;
|
2013-11-05 22:06:32 +01:00
|
|
|
arg->vdpau_ctx = vc->mpvdp;
|
video/filter: change filter API, use refcounting, remove filter DR
Change the entire filter API to use reference counted images instead
of vf_get_image().
Remove filter "direct rendering". This was useful for vf_expand and (in
rare cases) vf_sub: DR allowed these filters to pass a cropped image to
the filters before them. Then, on filtering, the image was "uncropped",
so that black bars could be added around the image without copying. This
means that in some cases, vf_expand will be slower (-vf gradfun,expand
for example).
Note that another form of DR used for in-place filters has been replaced
by simpler logic. Instead of trying to do DR, filters can check if the
image is writeable (with mp_image_is_writeable()), and do true in-place
if that's the case. This affects filters like vf_gradfun and vf_sub.
Everything has to support strides now. If something doesn't, making a
copy of the image data is required.
2012-11-05 14:25:04 +01:00
|
|
|
return true;
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
}
|
2009-09-05 05:20:03 +02:00
|
|
|
case VOCTRL_GET_PANSCAN:
|
|
|
|
return VO_TRUE;
|
|
|
|
case VOCTRL_SET_PANSCAN:
|
2011-08-11 20:13:34 +02:00
|
|
|
checked_resize(vo);
|
2009-09-05 05:20:03 +02:00
|
|
|
return VO_TRUE;
|
|
|
|
case VOCTRL_SET_EQUALIZER: {
|
2011-12-05 05:36:20 +01:00
|
|
|
vo->want_redraw = true;
|
2009-09-05 05:20:03 +02:00
|
|
|
struct voctrl_set_equalizer_args *args = data;
|
|
|
|
return set_equalizer(vo, args->name, args->value);
|
|
|
|
}
|
|
|
|
case VOCTRL_GET_EQUALIZER: {
|
|
|
|
struct voctrl_get_equalizer_args *args = data;
|
|
|
|
return get_equalizer(vo, args->name, args->valueptr);
|
|
|
|
}
|
2009-11-15 14:21:40 +01:00
|
|
|
case VOCTRL_SET_YUV_COLORSPACE:
|
2013-08-18 05:12:21 +02:00
|
|
|
if (vc->rgb_mode)
|
|
|
|
break;
|
video, options: implement better YUV->RGB conversion control
Rewrite control of the colorspace and input/output level parameters
used in YUV-RGB conversions, replacing VO-specific suboptions with new
common options and adding configuration support to more cases.
Add new option --colormatrix which selects the colorspace the original
video is assumed to have in YUV->RGB conversions. The default
behavior changes from assuming BT.601 to colorspace autoselection
between BT.601 and BT.709 using a simple heuristic based on video
size. Add new options --colormatrix-input-range and
--colormatrix-output-range which select input YUV and output RGB range.
Disable the previously existing VO-specific colorspace and level
conversion suboptions in vo_gl and vo_vdpau. Remove the
"yuv_colorspace" property and replace it with one named "colormatrix"
and semantics matching the new option. Add new properties matching the
options for level conversion.
Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv
and vf_scale, and all can change it at runtime (previously only
vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion
matrix generation as vo_gl instead of libvdpau functionality; the main
functional difference is that the "contrast" equalizer control behaves
somewhat differently (it scales the Y component around 1/2 instead of
around 0, so that contrast 0 makes the image gray rather than black).
vo_xv does not support level conversion. vf_scale supports range
setting for input, but always outputs full-range RGB.
The value of the slave properties is the policy setting used for
conversions. This means they can be set to any value regardless of
whether the current VO supports that value or whether there currently
even is any video. Possibly separate properties could be added to
query the conversion actually used at the moment, if any.
Because the colorspace and level settings are now set with a single
VF/VO control call, the return value of that is no longer used to
signal whether all the settings are actually supported. Instead code
should set all the details it can support, and ignore the rest. The
core will use GET_YUV_COLORSPACE to check which colorspace details
have been set and which not. In other words, the return value for
SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace
conversion handling exists at all, and VOs have to take care to return
the actual state with GET_YUV_COLORSPACE instead.
To be changed in later commits: add missing option documentation.
2011-10-15 23:50:21 +02:00
|
|
|
vc->colorspace = *(struct mp_csp_details *)data;
|
2011-08-11 20:13:34 +02:00
|
|
|
if (status_ok(vo))
|
|
|
|
update_csc_matrix(vo);
|
2011-12-05 05:36:20 +01:00
|
|
|
vo->want_redraw = true;
|
2009-11-15 14:21:40 +01:00
|
|
|
return true;
|
|
|
|
case VOCTRL_GET_YUV_COLORSPACE:
|
2013-08-18 05:12:21 +02:00
|
|
|
if (vc->rgb_mode)
|
|
|
|
break;
|
video, options: implement better YUV->RGB conversion control
Rewrite control of the colorspace and input/output level parameters
used in YUV-RGB conversions, replacing VO-specific suboptions with new
common options and adding configuration support to more cases.
Add new option --colormatrix which selects the colorspace the original
video is assumed to have in YUV->RGB conversions. The default
behavior changes from assuming BT.601 to colorspace autoselection
between BT.601 and BT.709 using a simple heuristic based on video
size. Add new options --colormatrix-input-range and
--colormatrix-output-range which select input YUV and output RGB range.
Disable the previously existing VO-specific colorspace and level
conversion suboptions in vo_gl and vo_vdpau. Remove the
"yuv_colorspace" property and replace it with one named "colormatrix"
and semantics matching the new option. Add new properties matching the
options for level conversion.
Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv
and vf_scale, and all can change it at runtime (previously only
vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion
matrix generation as vo_gl instead of libvdpau functionality; the main
functional difference is that the "contrast" equalizer control behaves
somewhat differently (it scales the Y component around 1/2 instead of
around 0, so that contrast 0 makes the image gray rather than black).
vo_xv does not support level conversion. vf_scale supports range
setting for input, but always outputs full-range RGB.
The value of the slave properties is the policy setting used for
conversions. This means they can be set to any value regardless of
whether the current VO supports that value or whether there currently
even is any video. Possibly separate properties could be added to
query the conversion actually used at the moment, if any.
Because the colorspace and level settings are now set with a single
VF/VO control call, the return value of that is no longer used to
signal whether all the settings are actually supported. Instead code
should set all the details it can support, and ignore the rest. The
core will use GET_YUV_COLORSPACE to check which colorspace details
have been set and which not. In other words, the return value for
SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace
conversion handling exists at all, and VOs have to take care to return
the actual state with GET_YUV_COLORSPACE instead.
To be changed in later commits: add missing option documentation.
2011-10-15 23:50:21 +02:00
|
|
|
*(struct mp_csp_details *)data = vc->colorspace;
|
2009-11-15 14:21:40 +01:00
|
|
|
return true;
|
2011-12-04 17:10:17 +01:00
|
|
|
case VOCTRL_NEWFRAME:
|
|
|
|
vc->deint_queue_pos = next_deint_queue_pos(vo, true);
|
2011-12-20 02:47:16 +01:00
|
|
|
if (status_ok(vo))
|
|
|
|
video_to_output_surface(vo);
|
2011-12-04 17:10:17 +01:00
|
|
|
return true;
|
|
|
|
case VOCTRL_SKIPFRAME:
|
|
|
|
vc->deint_queue_pos = next_deint_queue_pos(vo, true);
|
|
|
|
return true;
|
2011-12-05 04:24:18 +01:00
|
|
|
case VOCTRL_REDRAW_FRAME:
|
2011-12-20 02:47:16 +01:00
|
|
|
if (status_ok(vo))
|
|
|
|
video_to_output_surface(vo);
|
2009-09-05 05:33:33 +02:00
|
|
|
return true;
|
2009-09-18 15:27:55 +02:00
|
|
|
case VOCTRL_RESET:
|
2013-10-01 23:45:30 +02:00
|
|
|
forget_frames(vo, true);
|
2009-09-18 15:27:55 +02:00
|
|
|
return true;
|
2011-10-06 20:46:01 +02:00
|
|
|
case VOCTRL_SCREENSHOT: {
|
2011-12-20 02:47:16 +01:00
|
|
|
if (!status_ok(vo))
|
|
|
|
return false;
|
2011-10-06 20:46:01 +02:00
|
|
|
struct voctrl_screenshot_args *args = data;
|
|
|
|
if (args->full_window)
|
|
|
|
args->out_image = get_window_screenshot(vo);
|
|
|
|
else
|
|
|
|
args->out_image = get_screenshot(vo);
|
|
|
|
return true;
|
|
|
|
}
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
2013-05-16 14:02:28 +02:00
|
|
|
|
|
|
|
int events = 0;
|
|
|
|
int r = vo_x11_control(vo, &events, request, data);
|
|
|
|
|
|
|
|
if (events & VO_EVENT_RESIZE) {
|
|
|
|
checked_resize(vo);
|
|
|
|
} else if (events & VO_EVENT_EXPOSE) {
|
|
|
|
vo->want_redraw = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
2009-02-16 21:58:13 +01:00
|
|
|
}
|
|
|
|
|
2012-06-25 22:12:03 +02:00
|
|
|
#define OPT_BASE_STRUCT struct vdpctx
|
|
|
|
|
2009-05-04 02:09:50 +02:00
|
|
|
const struct vo_driver video_out_vdpau = {
|
2009-09-18 15:27:55 +02:00
|
|
|
.buffer_frames = true,
|
2013-10-23 19:06:14 +02:00
|
|
|
.description = "VDPAU with X11",
|
|
|
|
.name = "vdpau",
|
2009-05-04 02:09:50 +02:00
|
|
|
.preinit = preinit,
|
2012-11-04 16:24:18 +01:00
|
|
|
.query_format = query_format,
|
2009-05-04 02:09:50 +02:00
|
|
|
.config = config,
|
|
|
|
.control = control,
|
video/filter: change filter API, use refcounting, remove filter DR
Change the entire filter API to use reference counted images instead
of vf_get_image().
Remove filter "direct rendering". This was useful for vf_expand and (in
rare cases) vf_sub: DR allowed these filters to pass a cropped image to
the filters before them. Then, on filtering, the image was "uncropped",
so that black bars could be added around the image without copying. This
means that in some cases, vf_expand will be slower (-vf gradfun,expand
for example).
Note that another form of DR used for in-place filters has been replaced
by simpler logic. Instead of trying to do DR, filters can check if the
image is writeable (with mp_image_is_writeable()), and do true in-place
if that's the case. This affects filters like vf_gradfun and vf_sub.
Everything has to support strides now. If something doesn't, making a
copy of the image data is required.
2012-11-05 14:25:04 +01:00
|
|
|
.draw_image = draw_image,
|
2011-12-04 17:10:17 +01:00
|
|
|
.get_buffered_frame = set_next_frame_info,
|
2009-05-04 02:09:50 +02:00
|
|
|
.draw_osd = draw_osd,
|
2009-11-15 03:39:22 +01:00
|
|
|
.flip_page_timed = flip_page_timed,
|
2009-05-04 02:09:50 +02:00
|
|
|
.uninit = uninit,
|
2012-08-06 17:51:53 +02:00
|
|
|
.priv_size = sizeof(struct vdpctx),
|
2012-06-25 22:12:03 +02:00
|
|
|
.options = (const struct m_option []){
|
|
|
|
OPT_INTRANGE("deint", deint, 0, -4, 4),
|
2013-02-08 21:09:18 +01:00
|
|
|
OPT_FLAG("chroma-deint", chroma_deint, 0, OPTDEF_INT(1)),
|
|
|
|
OPT_FLAG("pullup", pullup, 0),
|
2012-06-25 22:12:03 +02:00
|
|
|
OPT_FLOATRANGE("denoise", denoise, 0, 0, 1),
|
|
|
|
OPT_FLOATRANGE("sharpen", sharpen, 0, -1, 1),
|
|
|
|
OPT_INTRANGE("hqscaling", hqscaling, 0, 0, 9),
|
|
|
|
OPT_FLOAT("fps", user_fps, 0),
|
2013-02-08 21:09:18 +01:00
|
|
|
OPT_FLAG("composite-detect", composite_detect, 0, OPTDEF_INT(1)),
|
2012-06-25 22:12:03 +02:00
|
|
|
OPT_INT("queuetime_windowed", flip_offset_window, 0, OPTDEF_INT(50)),
|
|
|
|
OPT_INT("queuetime_fs", flip_offset_fs, 0, OPTDEF_INT(50)),
|
|
|
|
OPT_INTRANGE("output_surfaces", num_output_surfaces, 0,
|
|
|
|
2, MAX_OUTPUT_SURFACES, OPTDEF_INT(3)),
|
vo_vdpau: use color close to black as default colorkey (instead of green)
The VDPAU default colorkey, although it seems to be driver specific, is
usually green. This is a pretty annoying color, and you usually see it
briefly (as flashes) if the VDPAU window resizes.
Change it to some shade of black. The new default color is close to what
MPlayer picks as colorkey (and apparently it worked well for them):
VdpColor vdp_bg = {0.01, 0.02, 0.03, 0};
Since our OPT_COLOR can set 8 bit colors only, we use '#020507' instead,
which should be the same assuming 8 bit colors.
Obviously, you can't use black, because black is a way too common color,
and would make it too easy to observe the colorkey effect when e.g.
moving a terminal with black background over the video window.
2013-08-17 20:05:28 +02:00
|
|
|
OPT_COLOR("colorkey", colorkey, 0,
|
|
|
|
.defval = &(const struct m_color) {
|
|
|
|
.r = 2, .g = 5, .b = 7, .a = 255,
|
|
|
|
}),
|
2013-08-18 05:12:21 +02:00
|
|
|
OPT_FLAG("force-yuv", force_yuv, 0),
|
2012-06-25 22:12:03 +02:00
|
|
|
{NULL},
|
|
|
|
}
|
2009-05-04 02:09:50 +02:00
|
|
|
};
|