view libmpdemux/parse_es.h @ 28155:c21d81e41e15

Increase MAX_PACK_BYTES from 8 or 32 MB (with/without CONFIG_TV_BSDBT848) to always 32 MB. Firstly 32 MB is not that much with HD video and the different values depending on whether CONFIG_TV_BSDBT848 is set or not makes debugging harder.
author reimar
date Wed, 24 Dec 2008 16:05:20 +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 */