~ubuntu-branches/ubuntu/wily/mpv/wily

« back to all changes in this revision

Viewing changes to video/decode/dec_video.h

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2013-10-16 12:38:59 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20131016123859-wj70wr6n3mzimx3e
Tags: 0.2.0-1
* New upstream release
* Install sample configuration files as examples
* Enable Lua scripting support
* Remove copyright for talloc (not used anymore)
* Update installed docs list
* Update 01_spelling.patch
* Enable VAAPI support

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
int get_video_colors(sh_video_t *sh_video, const char *item, int *value);
39
39
int set_video_colors(sh_video_t *sh_video, const char *item, int value);
40
 
struct mp_image_params;
41
 
bool get_video_params(struct sh_video *sh, struct mp_image_params *p);
42
 
void set_video_output_levels(struct sh_video *sh);
43
40
void resync_video_stream(sh_video_t *sh_video);
44
41
void video_reinit_vo(struct sh_video *sh_video);
45
42
int get_current_video_decoder_lag(sh_video_t *sh_video);
51
48
// The VO can set the context pointer for supported APIs.
52
49
struct mp_hwdec_info {
53
50
    struct mp_vdpau_ctx *vdpau_ctx;
 
51
    struct mp_vaapi_ctx *vaapi_ctx;
54
52
};
55
53
 
56
54
#endif /* MPLAYER_DEC_VIDEO_H */