# HG changeset patch # User benoit # Date 1178097227 0 # Node ID 64bd1b09cef2ab39ff595079f20d18b197ff5e52 # Parent ebc45cc020b70758a4e82e75af79acb8a5e11579 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 diff -r ebc45cc020b7 -r 64bd1b09cef2 avformat.h --- a/avformat.h Mon Apr 30 15:56:11 2007 +0000 +++ b/avformat.h Wed May 02 09:13:47 2007 +0000 @@ -111,8 +111,11 @@ /*************************************************/ /* 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; diff -r ebc45cc020b7 -r 64bd1b09cef2 riff.h --- a/riff.h Mon Apr 30 15:56:11 2007 +0000 +++ b/riff.h Wed May 02 09:13:47 2007 +0000 @@ -46,10 +46,22 @@ unsigned int codec_get_tag(const AVCodecTag *tags, int id); enum CodecID codec_get_id(const AVCodecTag *tags, unsigned int tag); -unsigned int codec_get_bmp_tag(int id) attribute_deprecated; //use av_codec_get_tag -unsigned int codec_get_wav_tag(int id) attribute_deprecated; //use av_codec_get_tag -enum CodecID codec_get_bmp_id(unsigned int tag) attribute_deprecated; //use av_codec_get_id -enum CodecID codec_get_wav_id(unsigned int tag) attribute_deprecated; //use av_codec_get_id +/** + * @deprecated Use av_codec_get_tag instead. + */ +unsigned int codec_get_bmp_tag(int id) attribute_deprecated; +/** + * @deprecated Use av_codec_get_tag instead. + */ +unsigned int codec_get_wav_tag(int id) attribute_deprecated; +/** + * @deprecated Use av_codec_get_id instead. + */ +enum CodecID codec_get_bmp_id(unsigned int tag) attribute_deprecated; +/** + * @deprecated Use av_codec_get_id instead. + */ +enum CodecID codec_get_wav_id(unsigned int tag) attribute_deprecated; void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale); #endif