view libmpdemux/parse_es.h @ 27750:2c11b155ff11

Move X11_FULLSCREEN definition to x11_common.h where it belongs. config.h should only contain option definitions, no logic.
author diego
date Thu, 16 Oct 2008 18:19:36 +0000
parents 268ecf0e1ba4
children d643e4643313
line wrap: on
line source

#ifndef MPLAYER_PARSE_ES_H
#define MPLAYER_PARSE_ES_H

#include "demuxer.h"

#define MAX_VIDEO_PACKET_SIZE (224*1024+4)
#define VIDEOBUFFER_SIZE 0x100000

extern unsigned char* videobuffer;
extern int videobuf_len;
extern unsigned char videobuf_code[4];
extern int videobuf_code_len;

// sync video stream, and returns next packet code
int sync_video_packet(demux_stream_t *ds);

// return: packet length
int read_video_packet(demux_stream_t *ds);

// return: next packet code
int skip_video_packet(demux_stream_t *ds);

#endif /* MPLAYER_PARSE_ES_H */