Mercurial > mplayer.hg
view libmpdemux/parse_es.h @ 27705:ad1d056da559
Mark some symbols in swscale.c as constant.
These are only used in swscale_template.c (and thus don't need to be
made extern), and can be declared as ASM constants.
author | flameeyes |
---|---|
date | Thu, 09 Oct 2008 11:13:14 +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 */