annotate libmpcodecs/dec_video.h @ 26110:69790f7caffa

configure: Set CONFIG_ENCODERS=yes in config.mak unconditionally config.h already had "#define CONFIG_ENCODERS 1" unconditionally, but the config.mak value depended on whether MEncoder was enabled. Encoders need to be enabled as some encoder code is used by MPlayer too. The inconsistent values broke compilation with --disable-mencoder after libavcodec Makefile made compilation of i386/dsputilenc_mmx.o depend on the config.mak value.
author uau
date Mon, 03 Mar 2008 03:02:36 +0000
parents 4129c8cfa742
children 41652035483c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25553
diff changeset
1 #ifndef MPLAYER_DEC_VIDEO_H
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25553
diff changeset
2 #define MPLAYER_DEC_VIDEO_H
2557
6a74454ea121 some cleanup
arpi
parents:
diff changeset
3
6a74454ea121 some cleanup
arpi
parents:
diff changeset
4 // dec_video.c:
17566
f580a7755ac5 Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents: 11977
diff changeset
5 extern void vfm_help(void);
7191
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);
5174
17a7fb99b06b init_video() changed, make all extern
arpi
parents: 4741
diff changeset
8 extern void uninit_video(sh_video_t *sh_video);
2557
6a74454ea121 some cleanup
arpi
parents:
diff changeset
9
20902
bfb6eacd9c4a Update OSD contents only after the correct values for the frame are known.
uau
parents: 18917
diff changeset
10 extern void *decode_video(sh_video_t *sh_video,unsigned char *start,int in_size,int drop_frame, double pts);
bfb6eacd9c4a Update OSD contents only after the correct values for the frame are known.
uau
parents: 18917
diff changeset
11 extern int filter_video(sh_video_t *sh_video, void *frame, double pts);
2557
6a74454ea121 some cleanup
arpi
parents:
diff changeset
12
6a74454ea121 some cleanup
arpi
parents:
diff changeset
13 extern int get_video_quality_max(sh_video_t *sh_video);
6a74454ea121 some cleanup
arpi
parents:
diff changeset
14 extern void set_video_quality(sh_video_t *sh_video,int quality);
6a74454ea121 some cleanup
arpi
parents:
diff changeset
15
25224
abb784e37907 get/set video colors string is constant
reimar
parents: 24148
diff changeset
16 extern int get_video_colors(sh_video_t *sh_video,const char *item,int *value);
abb784e37907 get/set video colors string is constant
reimar
parents: 24148
diff changeset
17 extern int set_video_colors(sh_video_t *sh_video,const char *item,int value);
6887
66427e850216 Add the control VFCTRL_CHANGE_RECTANGLE
kmkaplan
parents: 5609
diff changeset
18 extern int set_rectangle(sh_video_t *sh_video,int param,int value);
11977
efb37725d616 flushing stuff after seeking (finally we can view MPEG without thouse blocks after seeking with -vc ffmpeg12)
michael
parents: 7731
diff changeset
19 extern void resync_video_stream(sh_video_t *sh_video);
18917
d9a75b26da6c Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents: 17910
diff changeset
20 extern int get_current_video_decoder_lag(sh_video_t *sh_video);
2563
fc124f9db88e more cleanup, warnings fixed
arpi
parents: 2557
diff changeset
21
fc124f9db88e more cleanup, warnings fixed
arpi
parents: 2557
diff changeset
22 extern int divx_quality;
25553
6ac1ece1f9fe Add multiple inclusion guards to all header files that lack them.
diego
parents: 25326
diff changeset
23
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25553
diff changeset
24 #endif /* MPLAYER_DEC_VIDEO_H */