aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil/intfloat_readwrite.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2014-09-14 21:21:42 -0300
committerJames Almer <jamrial@gmail.com>2014-10-05 17:10:03 -0300
commite524a9b1ff3d3f1560c9119dfb73f6a6a684dc73 (patch)
tree3d6d1aafb4f3c5ae9e3c2124abd709a07a771a82 /libavutil/intfloat_readwrite.h
parent3e5752098275e035f8b3d1ba475de80fcb62a3e5 (diff)
downloadffmpeg-e524a9b1ff3d3f1560c9119dfb73f6a6a684dc73.tar.gz
avutil: remove obsolete FF_API_INTFLOAT cruft
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/intfloat_readwrite.h')
-rw-r--r--libavutil/intfloat_readwrite.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/libavutil/intfloat_readwrite.h b/libavutil/intfloat_readwrite.h
deleted file mode 100644
index 1d79e3e8af..0000000000
--- a/libavutil/intfloat_readwrite.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * copyright (c) 2005 Michael Niedermayer <michaelni@gmx.at>
- *
- * This file is part of FFmpeg.
- *
- * FFmpeg is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * FFmpeg is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with FFmpeg; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef AVUTIL_INTFLOAT_READWRITE_H
-#define AVUTIL_INTFLOAT_READWRITE_H
-
-#include <stdint.h>
-
-#include "attributes.h"
-#include "version.h"
-
-#if FF_API_INTFLOAT
-/* IEEE 80 bits extended float */
-typedef struct AVExtFloat {
- uint8_t exponent[2];
- uint8_t mantissa[8];
-} AVExtFloat;
-
-attribute_deprecated double av_int2dbl(int64_t v) av_const;
-attribute_deprecated float av_int2flt(int32_t v) av_const;
-attribute_deprecated double av_ext2dbl(const AVExtFloat ext) av_const;
-attribute_deprecated int64_t av_dbl2int(double d) av_const;
-attribute_deprecated int32_t av_flt2int(float d) av_const;
-attribute_deprecated AVExtFloat av_dbl2ext(double d) av_const;
-#endif /* FF_API_INTFLOAT */
-
-#endif /* AVUTIL_INTFLOAT_READWRITE_H */