Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/media/ffvpx/libavutil/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  moz.build   Sprache: unbekannt

 
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

# Due to duplicate file names, we compile libavutil/x86 in its own
# moz.build file.
if CONFIG['FFVPX_ASFLAGS']:
    if CONFIG['TARGET_CPU'] == 'x86' or CONFIG['TARGET_CPU'] == 'x86_64':
        DIRS += ['x86']
    elif CONFIG['TARGET_CPU'] == 'arm':
        DIRS += ['arm']

if CONFIG['TARGET_CPU'] == 'aarch64':
    DIRS += ['aarch64']

SharedLibrary('mozavutil')
SOURCES += [
    'avsscanf.c',
    'avstring.c',
    'bprint.c',
    'buffer.c',
    'channel_layout.c',
    'container_fifo.c',
    'cpu.c',
    'crc.c',
    'dict.c',
    'error.c',
    'eval.c',
    'fifo.c',
    'fixed_dsp.c',
    'float_dsp.c',
    'frame.c',
    'hwcontext.c',
    'imgutils.c',
    'log.c',
    'log2_tab.c',
    'mastering_display_metadata.c',
    'mathematics.c',
    'mem.c',
    'opt.c',
    'parseutils.c',
    'pixdesc.c',
    'rational.c',
    'refstruct.c',
    'reverse.c',
    'samplefmt.c',
    'slicethread.c',
    'time.c',
    'tx.c',
    'tx_double.c',
    'tx_float.c',
    'tx_int32.c',
    'utils.c'
]

if not CONFIG['MOZ_FFVPX_AUDIOONLY']:
    SOURCES += [
        'adler32.c',
        'base64.c',
        'film_grain_params.c',
        'hdr_dynamic_metadata.c',
        'integer.c',
        'intmath.c',
        'lls.c',
        'pixelutils.c',
        'threadmessage.c',
        'timecode.c',
        'video_enc_params.c'
    ]
    if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk":
        LOCAL_INCLUDES += ['/media/mozva']
        SOURCES += [
            'hwcontext_vaapi.c',
        ]
        USE_LIBS += ['mozva']
    elif CONFIG["MOZ_WIDGET_TOOLKIT"] == "windows":
        SOURCES += [
            'hwcontext_d3d11va.c',
        ]

EXPORTS.ffvpx += [
    "tx.h"
]

if CONFIG["MOZ_WIDGET_TOOLKIT"] == "windows":
    EXPORTS.ffvpx += [
        "hwcontext_d3d11va.h"
    ]

SYMBOLS_FILE =  'avutil.symbols'
NoVisibilityFlags()

OS_LIBS += CONFIG['REALTIME_LIBS']
if CONFIG['OS_TARGET'] != 'WINNT':
    OS_LIBS += ['m']

OS_LIBS += CONFIG["LIBATOMIC_LIBS"]

include("../ffvpxcommon.mozbuild")

[ Dauer der Verarbeitung: 0.2 Sekunden  (vorverarbeitet)  ]