Mercurial > mplayer.hg
view libmpdemux/parse_es.h @ 28782:37c47d68d586
Support a vsfilter special case:
If PlayResX or Y is 1280/1024 respectively and the other
PlayRes attribute isn't provided, use 1280/1024 for it.
author | greg |
---|---|
date | Thu, 05 Mar 2009 20:36:39 +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 */