Mercurial > mplayer.hg
annotate libmpcodecs/dec_video.h @ 7542:190d14d9130e
fullscreen fixes, based on mail by Havoc Pennington <hp@redhat.com>
- it should not set _NET_WM_STATE_STAYS_ON_TOP, this hint does
not exist in the spec
(http://www.freedesktop.org/standards/wm-spec/1.2/html/x224.html)
and _NET_WM_STATE_FULLSCREEN already implies "on top" so there's no
need to set this.
it should set _NET_WM_STATE_FULLSCREEN instead, I don't
currently see code to set _NET_WM_STATE_FULLSCREEN
- the XUnmapWindow() after sending the client message
is officially speaking breaking the spec, should be
XWithdrawWindow().
author | arpi |
---|---|
date | Sat, 28 Sep 2002 22:37:20 +0000 |
parents | c1cb94198e05 |
children | 1f8961f2b34c |
rev | line source |
---|---|
2557 | 1 |
2 // dec_video.c: | |
3 extern int video_read_properties(sh_video_t *sh_video); | |
4 | |
7191
1eadce15446c
-afm/-vfm help implemenetd, some cosmetics of ad/vd codec names/comments
arpi
parents:
7180
diff
changeset
|
5 extern void vfm_help(); |
1eadce15446c
-afm/-vfm help implemenetd, some cosmetics of ad/vd codec names/comments
arpi
parents:
7180
diff
changeset
|
6 |
7506
c1cb94198e05
-vc/-vfm accepts codec/driver _list_ now. empty list element for -vc means
arpi
parents:
7502
diff
changeset
|
7 extern int init_best_video_codec(sh_video_t *sh_video,char** video_codec_list,char** video_fm_list); |
7502
6a2b6f3d619c
best audio/video codec selection & init moved to libmpcodecs
arpi
parents:
7472
diff
changeset
|
8 |
5174 | 9 //extern int init_video(sh_video_t *sh_video, int *pitches); |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6887
diff
changeset
|
10 extern int init_video(sh_video_t *sh_video,char* codecname,char* vfm,int status); |
5174 | 11 extern void uninit_video(sh_video_t *sh_video); |
2557 | 12 |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5174
diff
changeset
|
13 extern int decode_video(sh_video_t *sh_video,unsigned char *start,int in_size,int drop_frame); |
2557 | 14 |
15 extern int get_video_quality_max(sh_video_t *sh_video); | |
16 extern void set_video_quality(sh_video_t *sh_video,int quality); | |
17 | |
7472
c4434bdf6e51
tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents:
7191
diff
changeset
|
18 int get_video_colors(sh_video_t *sh_video,char *item,int *value); |
5174 | 19 extern int set_video_colors(sh_video_t *sh_video,char *item,int value); |
6887 | 20 extern int set_rectangle(sh_video_t *sh_video,int param,int value); |
2563 | 21 |
22 extern int divx_quality; |