Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • windows_ci_static
  • c_link
  • cpack
  • windows_ci
  • cert_pk_id
  • proxy_push_result
  • cnode_put_id
  • update-windows-build
  • proxy
  • resubscribe_on_token_change
  • actions
  • client_mode
  • llhttp
  • search_node_add
  • crypto_aes_gcm_argon2
  • ios_notifications
  • log_fmt
  • v2asio
  • fix-msvc
  • v3.4.0
  • v3.3.1
  • v3.3.1rc1
  • v3.3.1rc2
  • v3.3.0
  • v3.2.0
  • v3.1.11
  • v3.1.10
  • v3.1.9
  • v3.1.8.2
  • v3.1.8.1
  • v3.1.8
  • v3.1.7
  • v3.1.6
  • v3.1.5
  • v3.1.4
  • v3.1.3
  • v3.1.2
  • v3.1
  • v3.0.1
40 results

opendht-c.pc.in

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    libav_utils.cpp 4.08 KiB
    /*
     *  Copyright (C) 2004-2017 Savoir-faire Linux Inc.
     *
     *  Author: Tristan Matthews <tristan.matthews@savoirfairelinux.com>
     *  Author: Luca Barbato <lu_zero@gentoo.org>
     *  Author: Guillaume Roguez <Guillaume.Roguez@savoirfairelinux.com>
     *
     *  This program is free software; you can redistribute it and/or modify
     *  it under the terms of the GNU General Public License as published by
     *  the Free Software Foundation; either version 3 of the License, or
     *  (at your option) any later version.
     *
     *  This program is distributed in the hope that it will be useful,
     *  but WITHOUT ANY WARRANTY; without even the implied warranty of
     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     *  GNU General Public License for more details.
     *
     *  You should have received a copy of the GNU General Public License
     *  along with this program; if not, write to the Free Software
     *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
     */
    
    #include "libav_deps.h" // MUST BE INCLUDED FIRST
    
    #include "config.h"
    #include "video/video_base.h"
    #include "logger.h"
    
    #include <vector>
    #include <algorithm>
    #include <string>
    #include <iostream>
    #include <thread>
    #include <mutex>
    #include <exception>
    #include <ciso646> // fix windows compiler bug
    
    namespace ring { namespace libav_utils {
    
    // protect libav/ffmpeg access
    static int
    avcodecManageMutex(void **data, enum AVLockOp op)
    {
        auto mutex = reinterpret_cast<std::mutex**>(data);
        int ret = 0;
        switch (op) {
            case AV_LOCK_CREATE:
                try {
                    *mutex = new std::mutex;
                } catch (const std::bad_alloc& e) {
                    return AVERROR(ENOMEM);
                }
                break;
            case AV_LOCK_OBTAIN:
                (*mutex)->lock();
                break;
            case AV_LOCK_RELEASE:
                (*mutex)->unlock();
                break;
            case AV_LOCK_DESTROY:
                delete *mutex;
                *mutex = nullptr;
                break;
            default:
    #ifdef AVERROR_BUG
                return AVERROR_BUG;
    #else
                break;
    #endif
        }
        return AVERROR(ret);
    }
    
    static constexpr const char* AVLOGLEVEL = "AVLOGLEVEL";
    
    static void
    setAvLogLevel()
    {
        char* envvar = getenv(AVLOGLEVEL);
        signed level = AV_LOG_WARNING;
    
        if (envvar != nullptr) {
            if (not (std::istringstream(envvar) >> level))
                level = AV_LOG_ERROR;
    
            level = std::max(AV_LOG_QUIET, std::min(level, AV_LOG_DEBUG));
        }
        av_log_set_level(level);
    }
    
    static void
    init_once()
    {
        av_register_all();
        avdevice_register_all();
    #if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53, 13, 0)
        avformat_network_init();
    #endif
    
        av_lockmgr_register(avcodecManageMutex);
    
        if (getDebugMode())
            setAvLogLevel();
    }
    
    static std::once_flag already_called;
    
    void ring_avcodec_init()
    {
        std::call_once(already_called, init_once);
    }
    
    
    int libav_pixel_format(int fmt)
    {
        switch (fmt) {
            case video::VIDEO_PIXFMT_BGRA: return PIXEL_FORMAT(BGRA);
            case video::VIDEO_PIXFMT_RGBA: return PIXEL_FORMAT(RGBA);
            case video::VIDEO_PIXFMT_YUYV422: return PIXEL_FORMAT(YUYV422);
            case video::VIDEO_PIXFMT_YUV420P: return PIXEL_FORMAT(YUV420P);
            case video::VIDEO_PIXFMT_NV21: return PIXEL_FORMAT(NV21);
        }
        return fmt;
    }
    
    int ring_pixel_format(int fmt)
    {
        switch (fmt) {
            case PIXEL_FORMAT(YUYV422): return video::VIDEO_PIXFMT_YUYV422;
        }
        return fmt;
    }
    
    void ring_url_split(const char *url,
                       char *hostname, size_t hostname_size, int *port,
                       char *path, size_t path_size)
    {
        av_url_split(NULL, 0, NULL, 0, hostname, hostname_size, port,
                     path, path_size, url);
    }
    
    bool
    is_yuv_planar(const AVPixFmtDescriptor& desc)
    {
        if (not (desc.flags & AV_PIX_FMT_FLAG_PLANAR) or desc.flags & AV_PIX_FMT_FLAG_RGB)
            return false;
    
        /* handle formats that do not use all planes */
        unsigned used_bit_mask = (1u << desc.nb_components) - 1;
        for (unsigned i = 0; i < desc.nb_components; ++i)
            used_bit_mask &= ~(1u << desc.comp[i].plane);
    
        return not used_bit_mask;
    }
    
    }} // namespace ring::libav_utils