misc/winutils/include/libavutil/intfloat.h
author dag10 <gottlieb.drew@gmail.com>
Wed, 16 Jan 2013 18:34:43 -0500
changeset 8393 85bd6c7b2641
parent 7813 7ac83d79b897
permissions -rw-r--r--
Can now change theme for static and mission maps. Fixed mission map descriptions that had commas which broke them. Now, you must escape commas in map descriptions. Made bgwidget repaint on animation tick to avoid buffer-not-clearing issue with widgets that change overtop the background leaving a ghost image of the widget's previous state. Generated map is now the default map in the mapconfig widget.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7813
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     1
/*
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     2
 * Copyright (c) 2011 Mans Rullgard
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     3
 *
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     4
 * This file is part of Libav.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     5
 *
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     6
 * Libav is free software; you can redistribute it and/or
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     7
 * modify it under the terms of the GNU Lesser General Public
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     8
 * License as published by the Free Software Foundation; either
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     9
 * version 2.1 of the License, or (at your option) any later version.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    10
 *
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    11
 * Libav is distributed in the hope that it will be useful,
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    14
 * Lesser General Public License for more details.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    15
 *
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    16
 * You should have received a copy of the GNU Lesser General Public
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    17
 * License along with Libav; if not, write to the Free Software
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    19
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    20
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    21
#ifndef AVUTIL_INTFLOAT_H
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    22
#define AVUTIL_INTFLOAT_H
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    23
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    24
#include <stdint.h>
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    25
#include "attributes.h"
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    26
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    27
union av_intfloat32 {
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    28
    uint32_t i;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    29
    float    f;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    30
};
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    31
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    32
union av_intfloat64 {
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    33
    uint64_t i;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    34
    double   f;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    35
};
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    36
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    37
/**
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    38
 * Reinterpret a 32-bit integer as a float.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    39
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    40
static av_always_inline float av_int2float(uint32_t i)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    41
{
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    42
    union av_intfloat32 v;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    43
    v.i = i;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    44
    return v.f;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    45
}
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    46
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    47
/**
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    48
 * Reinterpret a float as a 32-bit integer.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    49
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    50
static av_always_inline uint32_t av_float2int(float f)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    51
{
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    52
    union av_intfloat32 v;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    53
    v.f = f;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    54
    return v.i;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    55
}
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    56
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    57
/**
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    58
 * Reinterpret a 64-bit integer as a double.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    59
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    60
static av_always_inline double av_int2double(uint64_t i)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    61
{
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    62
    union av_intfloat64 v;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    63
    v.i = i;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    64
    return v.f;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    65
}
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    66
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    67
/**
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    68
 * Reinterpret a double as a 64-bit integer.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    69
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    70
static av_always_inline uint64_t av_double2int(double f)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    71
{
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    72
    union av_intfloat64 v;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    73
    v.f = f;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    74
    return v.i;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    75
}
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    76
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    77
#endif /* AVUTIL_INTFLOAT_H */