content/media/fmp4/ffmpeg/FFmpegCompat.h

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /* vim:set ts=2 sw=2 sts=2 et cindent: */
     3 /* This Source Code Form is subject to the terms of the Mozilla Public
     4  * License, v. 2.0. If a copy of the MPL was not distributed with this
     5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     7 #ifndef __FFmpegCompat_h__
     8 #define __FFmpegCompat_h__
    10 #include <libavcodec/version.h>
    12 #if LIBAVCODEC_VERSION_MAJOR < 55
    13 #define AV_CODEC_ID_H264 CODEC_ID_H264
    14 #define AV_CODEC_ID_AAC CODEC_ID_AAC
    15 typedef CodecID AVCodecID;
    16 #endif
    18 #endif // __FFmpegCompat_h__

mercurial