mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-14 22:22:59 +02:00
Merge commit '70a7b24d56a823894440a372c46e89e212b89c35'
* commit '70a7b24d56a823894440a372c46e89e212b89c35': avutil: Add deprecation ifdefs around obsolete intfloat code Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
acda7c8e20
@ -29,7 +29,9 @@
|
|||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "mathematics.h"
|
#include "mathematics.h"
|
||||||
#include "intfloat_readwrite.h"
|
#include "intfloat_readwrite.h"
|
||||||
|
#include "version.h"
|
||||||
|
|
||||||
|
#if FF_API_INTFLOAT
|
||||||
double av_int2dbl(int64_t v){
|
double av_int2dbl(int64_t v){
|
||||||
if((uint64_t)v+v > 0xFFEULL<<52)
|
if((uint64_t)v+v > 0xFFEULL<<52)
|
||||||
return NAN;
|
return NAN;
|
||||||
@ -96,3 +98,4 @@ AVExtFloat av_dbl2ext(double d){
|
|||||||
ext.exponent[0] |= 0x80;
|
ext.exponent[0] |= 0x80;
|
||||||
return ext;
|
return ext;
|
||||||
}
|
}
|
||||||
|
#endif /* FF_API_INTFLOAT */
|
||||||
|
@ -22,8 +22,11 @@
|
|||||||
#define AVUTIL_INTFLOAT_READWRITE_H
|
#define AVUTIL_INTFLOAT_READWRITE_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "attributes.h"
|
|
||||||
|
|
||||||
|
#include "attributes.h"
|
||||||
|
#include "version.h"
|
||||||
|
|
||||||
|
#if FF_API_INTFLOAT
|
||||||
/* IEEE 80 bits extended float */
|
/* IEEE 80 bits extended float */
|
||||||
typedef struct AVExtFloat {
|
typedef struct AVExtFloat {
|
||||||
uint8_t exponent[2];
|
uint8_t exponent[2];
|
||||||
@ -36,5 +39,6 @@ attribute_deprecated double av_ext2dbl(const AVExtFloat ext) av_const;
|
|||||||
attribute_deprecated int64_t av_dbl2int(double d) av_const;
|
attribute_deprecated int64_t av_dbl2int(double d) av_const;
|
||||||
attribute_deprecated int32_t av_flt2int(float d) av_const;
|
attribute_deprecated int32_t av_flt2int(float d) av_const;
|
||||||
attribute_deprecated AVExtFloat av_dbl2ext(double d) av_const;
|
attribute_deprecated AVExtFloat av_dbl2ext(double d) av_const;
|
||||||
|
#endif /* FF_API_INTFLOAT */
|
||||||
|
|
||||||
#endif /* AVUTIL_INTFLOAT_READWRITE_H */
|
#endif /* AVUTIL_INTFLOAT_READWRITE_H */
|
||||||
|
@ -150,6 +150,9 @@
|
|||||||
#ifndef FF_API_XVMC
|
#ifndef FF_API_XVMC
|
||||||
#define FF_API_XVMC (LIBAVUTIL_VERSION_MAJOR < 53)
|
#define FF_API_XVMC (LIBAVUTIL_VERSION_MAJOR < 53)
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef FF_API_INTFLOAT
|
||||||
|
#define FF_API_INTFLOAT (LIBAVUTIL_VERSION_MAJOR < 53)
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @}
|
* @}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user