~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavutil/intfloat_readwrite.h

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#define AVUTIL_INTFLOAT_READWRITE_H
23
23
 
24
24
#include <stdint.h>
 
25
 
25
26
#include "attributes.h"
 
27
#include "version.h"
26
28
 
 
29
#if FF_API_INTFLOAT
27
30
/* IEEE 80 bits extended float */
28
31
typedef struct AVExtFloat  {
29
32
    uint8_t exponent[2];
36
39
attribute_deprecated int64_t av_dbl2int(double d) av_const;
37
40
attribute_deprecated int32_t av_flt2int(float d) av_const;
38
41
attribute_deprecated AVExtFloat av_dbl2ext(double d) av_const;
 
42
#endif /* FF_API_INTFLOAT */
39
43
 
40
44
#endif /* AVUTIL_INTFLOAT_READWRITE_H */