mirror of
https://github.com/mpv-player/mpv
synced 2024-12-19 21:31:52 +00:00
're-include' possibility
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4934 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
154afc3d80
commit
f6878753fb
@ -1,3 +1,5 @@
|
||||
#ifndef __DEMUXER_H
|
||||
#define __DEMUXER_H 1
|
||||
|
||||
#define MAX_PACKS 4096
|
||||
#define MAX_PACK_BYTES 0x800000
|
||||
@ -190,3 +192,5 @@ extern int pts_from_bps;
|
||||
int demux_info_add(demuxer_t *demuxer, char *opt, char *param);
|
||||
char* demux_info_get(demuxer_t *demuxer, char *opt);
|
||||
int demux_info_print(demuxer_t *demuxer);
|
||||
|
||||
#endif
|
||||
|
@ -1,3 +1,6 @@
|
||||
#ifndef __ST_HEADER_H
|
||||
#define __ST_HEADER_H 1
|
||||
|
||||
// Stream headers:
|
||||
|
||||
#include "wine/mmreg.h"
|
||||
@ -79,3 +82,5 @@ sh_video_t* new_sh_video(demuxer_t *demuxer,int id);
|
||||
|
||||
int video_read_properties(sh_video_t *sh_video);
|
||||
int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps);
|
||||
|
||||
#endif
|
||||
|
@ -5,6 +5,9 @@
|
||||
* Strongly modified, most parts rewritten: A'rpi/ESP-team - 2000-2001
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __VIDEO_OUT_H
|
||||
#define __VIDEO_OUT_H 1
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <stdarg.h>
|
||||
@ -202,3 +205,4 @@ extern float vo_fps;
|
||||
|
||||
extern char *vo_subdevice;
|
||||
|
||||
#endif
|
||||
|
@ -1,3 +1,5 @@
|
||||
#ifndef __MP_IMAGE_H
|
||||
#define __MP_IMAGE_H 1
|
||||
|
||||
// set if buffer content shouldn't be modified:
|
||||
#define MP_IMGFLAG_PRESERVE 0x01
|
||||
@ -87,3 +89,5 @@ static inline mp_image_t* new_mp_image(int w,int h){
|
||||
mpi->height=mpi->h=h;
|
||||
return mpi;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user