2013-03-01 20:19:20 +00:00
|
|
|
/*
|
|
|
|
* This file is part of mpv.
|
|
|
|
*
|
|
|
|
* mpv 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.
|
|
|
|
*
|
|
|
|
* mpv 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 mpv. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#ifndef MP_GL_VIDEO_H
|
|
|
|
#define MP_GL_VIDEO_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include "sub/sub.h"
|
|
|
|
#include "gl_common.h"
|
|
|
|
|
|
|
|
struct lut3d {
|
|
|
|
uint16_t *data;
|
|
|
|
int size[3];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct gl_video_opts {
|
|
|
|
char *scalers[2];
|
|
|
|
float scaler_params[2];
|
|
|
|
int indirect;
|
|
|
|
int gamma;
|
|
|
|
int srgb;
|
|
|
|
int scale_sep;
|
|
|
|
int fancy_downscaling;
|
2013-05-25 21:47:55 +00:00
|
|
|
int scaler_resizes_only;
|
2013-03-01 20:19:20 +00:00
|
|
|
int npot;
|
|
|
|
int pbo;
|
|
|
|
int dither_depth;
|
2013-05-25 23:48:39 +00:00
|
|
|
int dither_algo;
|
|
|
|
int dither_size;
|
|
|
|
int temporal_dither;
|
2013-03-01 20:19:20 +00:00
|
|
|
int fbo_format;
|
|
|
|
int stereo_mode;
|
2013-03-28 20:44:27 +00:00
|
|
|
int enable_alpha;
|
vo_opengl: handle chroma location
Use the video decoder chroma location flags and render chroma locations
other than centered. Until now, we've always used the intuitive and
obvious centered chroma location, but H.264 uses something else.
FFmpeg provides a small overview in libavcodec/avcodec.h:
-----------
/**
* X X 3 4 X X are luma samples,
* 1 2 1-6 are possible chroma positions
* X X 5 6 X 0 is undefined/unknown position
*/
enum AVChromaLocation{
AVCHROMA_LOC_UNSPECIFIED = 0,
AVCHROMA_LOC_LEFT = 1, ///< mpeg2/4, h264 default
AVCHROMA_LOC_CENTER = 2, ///< mpeg1, jpeg, h263
AVCHROMA_LOC_TOPLEFT = 3, ///< DV
AVCHROMA_LOC_TOP = 4,
AVCHROMA_LOC_BOTTOMLEFT = 5,
AVCHROMA_LOC_BOTTOM = 6,
AVCHROMA_LOC_NB , ///< Not part of ABI
};
-----------
The visual difference is literally minimal, but since videophiles
apparently consider this detail as quality mark of a video renderer,
support it anyway. We don't bother with chroma locations other than
centered and left, though.
Not sure about correctness, but it's probably ok.
2013-06-08 00:15:24 +00:00
|
|
|
int chroma_location;
|
2013-03-01 20:19:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct m_sub_options gl_video_conf;
|
|
|
|
|
|
|
|
struct gl_video;
|
|
|
|
|
|
|
|
struct gl_video *gl_video_init(GL *gl);
|
|
|
|
void gl_video_uninit(struct gl_video *p);
|
|
|
|
void gl_video_set_options(struct gl_video *p, struct gl_video_opts *opts);
|
2013-06-07 23:35:44 +00:00
|
|
|
void gl_video_config(struct gl_video *p, struct mp_image_params *params);
|
2013-03-01 20:19:20 +00:00
|
|
|
void gl_video_set_output_depth(struct gl_video *p, int r, int g, int b);
|
|
|
|
void gl_video_set_lut3d(struct gl_video *p, struct lut3d *lut3d);
|
|
|
|
void gl_video_draw_osd(struct gl_video *p, struct osd_state *osd);
|
|
|
|
void gl_video_upload_image(struct gl_video *p, struct mp_image *img);
|
|
|
|
void gl_video_render_frame(struct gl_video *p);
|
|
|
|
struct mp_image *gl_video_download_image(struct gl_video *p);
|
|
|
|
void gl_video_resize(struct gl_video *p, struct mp_rect *window,
|
|
|
|
struct mp_rect *src, struct mp_rect *dst,
|
|
|
|
struct mp_osd_res *osd);
|
|
|
|
bool gl_video_get_csp_override(struct gl_video *p, struct mp_csp_details *csp);
|
|
|
|
bool gl_video_set_csp_override(struct gl_video *p, struct mp_csp_details *csp);
|
|
|
|
bool gl_video_set_equalizer(struct gl_video *p, const char *name, int val);
|
|
|
|
bool gl_video_get_equalizer(struct gl_video *p, const char *name, int *val);
|
|
|
|
|
|
|
|
void gl_video_set_debug(struct gl_video *p, bool enable);
|
2013-03-15 19:17:33 +00:00
|
|
|
void gl_video_resize_redraw(struct gl_video *p, int w, int h);
|
2013-03-01 20:19:20 +00:00
|
|
|
|
|
|
|
bool gl_video_check_format(int mp_format);
|
|
|
|
|
|
|
|
#endif
|