misc/winutils/include/libavformat/version.h
author koda
Wed, 24 Oct 2012 14:55:31 +0100
changeset 7813 7ac83d79b897
permissions -rw-r--r--
support video recording on windows with automation and headers
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
 * Version macros.
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 AVFORMAT_VERSION_H
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    22
#define AVFORMAT_VERSION_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
/**
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    25
 * @file
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    26
 * @ingroup libavf
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    27
 * Libavformat version macros
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    28
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    29
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    30
#include "libavutil/avutil.h"
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
#define LIBAVFORMAT_VERSION_MAJOR 54
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    33
#define LIBAVFORMAT_VERSION_MINOR 19
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    34
#define LIBAVFORMAT_VERSION_MICRO  0
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
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    37
                                               LIBAVFORMAT_VERSION_MINOR, \
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    38
                                               LIBAVFORMAT_VERSION_MICRO)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    39
#define LIBAVFORMAT_VERSION     AV_VERSION(LIBAVFORMAT_VERSION_MAJOR,   \
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    40
                                           LIBAVFORMAT_VERSION_MINOR,   \
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    41
                                           LIBAVFORMAT_VERSION_MICRO)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    42
#define LIBAVFORMAT_BUILD       LIBAVFORMAT_VERSION_INT
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    43
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    44
#define LIBAVFORMAT_IDENT       "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)
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
 * FF_API_* defines may be placed below to indicate public API that will be
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    48
 * dropped at a future version bump. The defines themselves are not part of
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    49
 * the public API and may change, break or disappear at any time.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    50
 */
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
#ifndef FF_API_CLOSE_INPUT_FILE
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    53
#define FF_API_CLOSE_INPUT_FILE        (LIBAVFORMAT_VERSION_MAJOR < 55)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    54
#endif
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    55
#ifndef FF_API_APPLEHTTP_PROTO
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    56
#define FF_API_APPLEHTTP_PROTO         (LIBAVFORMAT_VERSION_MAJOR < 55)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    57
#endif
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    58
#ifndef FF_API_READ_PACKET
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    59
#define FF_API_READ_PACKET             (LIBAVFORMAT_VERSION_MAJOR < 55)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    60
#endif
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    61
#ifndef FF_API_INTERLEAVE_PACKET
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    62
#define FF_API_INTERLEAVE_PACKET       (LIBAVFORMAT_VERSION_MAJOR < 55)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    63
#endif
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    64
#ifndef FF_API_AV_GETTIME
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    65
#define FF_API_AV_GETTIME              (LIBAVFORMAT_VERSION_MAJOR < 55)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    66
#endif
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    67
#ifndef FF_API_R_FRAME_RATE
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    68
#define FF_API_R_FRAME_RATE            (LIBAVFORMAT_VERSION_MAJOR < 55)
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    69
#endif
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    70
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    71
#endif /* AVFORMAT_VERSION_H */