0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

3 - Move a definition of MP_NOPTS_VALUE from muxer.h to demuxer.h to

make it available in more files (needed for next patch).

Patch by Uoti Urpala


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18242 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rtognimp 2006-04-24 10:36:29 +00:00
parent 1d62695562
commit 4b45ec30e4
2 changed files with 1 additions and 6 deletions

View File

@ -61,10 +61,7 @@
#define DEMUXER_TYPE_PLAYLIST (2<<16)
#define DEMUXER_TIME_NONE 0
#define DEMUXER_TIME_PTS 1
#define DEMUXER_TIME_FILE 2
#define DEMUXER_TIME_BPS 3
#define MP_NOPTS_VALUE (-1LL<<63) //both int64_t and double should be able to represent this exactly
// DEMUXER control commands/answers

View File

@ -97,8 +97,6 @@ typedef struct muxbuf_t {
unsigned int flags;
} muxbuf_t;
#define MP_NOPTS_VALUE (-1LL<<63) //both int64_t and double should be able to represent this exactly
muxer_t *muxer_new_muxer(int type,FILE *);
#define muxer_new_stream(muxer,a) muxer->cont_new_stream(muxer,a)
#define muxer_stream_fix_parameters(muxer, a) muxer->fix_stream_parameters(a)