tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

version.h (4310B)


      1 /*
      2 *
      3 * This file is part of Libav.
      4 *
      5 * Libav is free software; you can redistribute it and/or
      6 * modify it under the terms of the GNU Lesser General Public
      7 * License as published by the Free Software Foundation; either
      8 * version 2.1 of the License, or (at your option) any later version.
      9 *
     10 * Libav is distributed in the hope that it will be useful,
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     13 * Lesser General Public License for more details.
     14 *
     15 * You should have received a copy of the GNU Lesser General Public
     16 * License along with Libav; if not, write to the Free Software
     17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
     18 */
     19 
     20 #ifndef AVCODEC_VERSION_H
     21 #define AVCODEC_VERSION_H
     22 
     23 /**
     24 * @file
     25 * @ingroup libavc
     26 * Libavcodec version macros.
     27 */
     28 
     29 #include "libavutil/version.h"
     30 
     31 #define LIBAVCODEC_VERSION_MAJOR 55
     32 #define LIBAVCODEC_VERSION_MINOR 34
     33 #define LIBAVCODEC_VERSION_MICRO  1
     34 
     35 #define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
     36                                               LIBAVCODEC_VERSION_MINOR, \
     37                                               LIBAVCODEC_VERSION_MICRO)
     38 #define LIBAVCODEC_VERSION      AV_VERSION(LIBAVCODEC_VERSION_MAJOR,    \
     39                                           LIBAVCODEC_VERSION_MINOR,    \
     40                                           LIBAVCODEC_VERSION_MICRO)
     41 #define LIBAVCODEC_BUILD        LIBAVCODEC_VERSION_INT
     42 
     43 #define LIBAVCODEC_IDENT        "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
     44 
     45 /**
     46 * FF_API_* defines may be placed below to indicate public API that will be
     47 * dropped at a future version bump. The defines themselves are not part of
     48 * the public API and may change, break or disappear at any time.
     49 */
     50 
     51 #ifndef FF_API_REQUEST_CHANNELS
     52 #define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 56)
     53 #endif
     54 #ifndef FF_API_DEINTERLACE
     55 #define FF_API_DEINTERLACE       (LIBAVCODEC_VERSION_MAJOR < 56)
     56 #endif
     57 #ifndef FF_API_DESTRUCT_PACKET
     58 #define FF_API_DESTRUCT_PACKET   (LIBAVCODEC_VERSION_MAJOR < 56)
     59 #endif
     60 #ifndef FF_API_GET_BUFFER
     61 #define FF_API_GET_BUFFER        (LIBAVCODEC_VERSION_MAJOR < 56)
     62 #endif
     63 #ifndef FF_API_MISSING_SAMPLE
     64 #define FF_API_MISSING_SAMPLE    (LIBAVCODEC_VERSION_MAJOR < 56)
     65 #endif
     66 #ifndef FF_API_LOWRES
     67 #define FF_API_LOWRES            (LIBAVCODEC_VERSION_MAJOR < 56)
     68 #endif
     69 #ifndef FF_API_CAP_VDPAU
     70 #define FF_API_CAP_VDPAU         (LIBAVCODEC_VERSION_MAJOR < 56)
     71 #endif
     72 #ifndef FF_API_BUFS_VDPAU
     73 #define FF_API_BUFS_VDPAU        (LIBAVCODEC_VERSION_MAJOR < 56)
     74 #endif
     75 #ifndef FF_API_VOXWARE
     76 #define FF_API_VOXWARE           (LIBAVCODEC_VERSION_MAJOR < 56)
     77 #endif
     78 #ifndef FF_API_SET_DIMENSIONS
     79 #define FF_API_SET_DIMENSIONS    (LIBAVCODEC_VERSION_MAJOR < 56)
     80 #endif
     81 #ifndef FF_API_DEBUG_MV
     82 #define FF_API_DEBUG_MV          (LIBAVCODEC_VERSION_MAJOR < 56)
     83 #endif
     84 #ifndef FF_API_AC_VLC
     85 #define FF_API_AC_VLC            (LIBAVCODEC_VERSION_MAJOR < 56)
     86 #endif
     87 #ifndef FF_API_OLD_MSMPEG4
     88 #define FF_API_OLD_MSMPEG4       (LIBAVCODEC_VERSION_MAJOR < 56)
     89 #endif
     90 #ifndef FF_API_ASPECT_EXTENDED
     91 #define FF_API_ASPECT_EXTENDED   (LIBAVCODEC_VERSION_MAJOR < 56)
     92 #endif
     93 #ifndef FF_API_THREAD_OPAQUE
     94 #define FF_API_THREAD_OPAQUE     (LIBAVCODEC_VERSION_MAJOR < 56)
     95 #endif
     96 #ifndef FF_API_CODEC_PKT
     97 #define FF_API_CODEC_PKT         (LIBAVCODEC_VERSION_MAJOR < 56)
     98 #endif
     99 #ifndef FF_API_ARCH_ALPHA
    100 #define FF_API_ARCH_ALPHA        (LIBAVCODEC_VERSION_MAJOR < 56)
    101 #endif
    102 #ifndef FF_API_XVMC
    103 #define FF_API_XVMC              (LIBAVCODEC_VERSION_MAJOR < 56)
    104 #endif
    105 #ifndef FF_API_ERROR_RATE
    106 #define FF_API_ERROR_RATE        (LIBAVCODEC_VERSION_MAJOR < 56)
    107 #endif
    108 #ifndef FF_API_QSCALE_TYPE
    109 #define FF_API_QSCALE_TYPE       (LIBAVCODEC_VERSION_MAJOR < 56)
    110 #endif
    111 #ifndef FF_API_MB_TYPE
    112 #define FF_API_MB_TYPE           (LIBAVCODEC_VERSION_MAJOR < 56)
    113 #endif
    114 #ifndef FF_API_MAX_BFRAMES
    115 #define FF_API_MAX_BFRAMES       (LIBAVCODEC_VERSION_MAJOR < 56)
    116 #endif
    117 #ifndef FF_API_FAST_MALLOC
    118 #define FF_API_FAST_MALLOC       (LIBAVCODEC_VERSION_MAJOR < 56)
    119 #endif
    120 #ifndef FF_API_NEG_LINESIZES
    121 #define FF_API_NEG_LINESIZES     (LIBAVCODEC_VERSION_MAJOR < 56)
    122 #endif
    123 #ifndef FF_API_EMU_EDGE
    124 #define FF_API_EMU_EDGE          (LIBAVCODEC_VERSION_MAJOR < 56)
    125 #endif
    126 
    127 #endif /* AVCODEC_VERSION_H */