X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavutil%2Fsoftfloat.h;h=d1a1901ea5575976e1e6e71111b454db4338553e;hb=eb30e86c7d2be4b7e85c45aae6ba6a45e759c71b;hp=422c1b3d6d617e2ff4ae79b20e6ccb5cddc70a02;hpb=99545457bf1175d55e4eaa2c061dbf0faeb661ec;p=ffmpeg diff --git a/libavutil/softfloat.h b/libavutil/softfloat.h index 422c1b3d6d6..d1a1901ea55 100644 --- a/libavutil/softfloat.h +++ b/libavutil/softfloat.h @@ -16,9 +16,11 @@ * 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 FFMPEG_SOFTFLOAT_H +#define FFMPEG_SOFTFLOAT_H + #include #define MIN_EXP -126 @@ -122,3 +124,5 @@ static inline int av_sf2int(SoftFloat v, int frac_bits){ if(v.exp >= 0) return v.mant << v.exp ; else return v.mant >>(-v.exp); } + +#endif /* FFMPEG_SOFTFLOAT_H */