diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-02-25 17:35:52 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-02-25 17:35:52 +0000 |
commit | 9740beffc65d08ba454ce4c1d904b6d9388a6544 (patch) | |
tree | aac8e8724add20e3f08ab24c0bf7d15f847dd56f /libavformat | |
parent | 8ac5c1b2d343ef6c1c759d3fb5a32de984ff9ab5 (diff) | |
download | ffmpeg-9740beffc65d08ba454ce4c1d904b6d9388a6544.tar.gz |
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
move AV_NOPTS_VALUE & AV_TIME_BASE from avformat.h -> avcodec.h
related fixes
Originally committed as revision 2814 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avformat.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index a44fe8ffbd..432d2e57bc 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -27,9 +27,6 @@ extern "C" { #define MININT64 int64_t_C(0x8000000000000000) #endif -#define AV_NOPTS_VALUE MININT64 -#define AV_TIME_BASE 1000000 - typedef struct AVPacket { int64_t pts; /* presentation time stamp in AV_TIME_BASE units (or pts_den units in muxers or demuxers) */ |