diff options
author | Mark Cox <melbournemark+ffmpeg@gmail.com> | 2007-05-02 09:13:47 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-05-02 09:13:47 +0000 |
commit | 671adb174250d6b0fc7a562ac810680a6df155e7 (patch) | |
tree | 9d7bded6f40545b2a6643ac1c6f116638eb598ea /libavformat/avformat.h | |
parent | 29644cb504eee88bd40f95abaa392047946c6066 (diff) | |
download | ffmpeg-671adb174250d6b0fc7a562ac810680a6df155e7.tar.gz |
patch so that the deprecated items show up correctly
when building doxygen docs
patch by mark cox melbournemark plus ffmpeg minus devel chez gmail dot com
Originally committed as revision 8866 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 2c8f8e9c3a..1e8028cdcd 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -111,8 +111,11 @@ static inline void av_free_packet(AVPacket *pkt) /*************************************************/ /* fractional numbers for exact pts handling */ -/* the exact value of the fractional number is: 'val + num / den'. num - is assumed to be such as 0 <= num < den */ +/** + * the exact value of the fractional number is: 'val + num / den'. + * num is assumed to be such as 0 <= num < den + * @deprecated Use AVRational instead +*/ typedef struct AVFrac { int64_t val, num, den; } AVFrac attribute_deprecated; |