diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-05 22:10:16 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-05 22:10:16 +0000 |
commit | 52e57500bb4295404a5cf63d4050b8e1ab530479 (patch) | |
tree | 412a3f7512e64169be5d1c045db116c70eebb2bd /libavformat/avformat.h | |
parent | e193c74e6ec3a77fb319761fc4b659bf08110f86 (diff) | |
download | ffmpeg-52e57500bb4295404a5cf63d4050b8e1ab530479.tar.gz |
Revert deprecation of AVFrac structure. Attempts to replace AVFrac have turned
out to be unsatisfying and confidence in AVFrac has been restored.
Originally committed as revision 16441 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 811c7722cc..d002a99117 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -208,7 +208,7 @@ static inline void av_free_packet(AVPacket *pkt) */ typedef struct AVFrac { int64_t val, num, den; -} AVFrac attribute_deprecated; +} AVFrac; /*************************************************/ /* input/output formats */ |