aboutsummaryrefslogtreecommitdiffstats
path: root/meta-rcar-gen2/recipes-graphics/wayland/weston_1.9.0.bbappend
blob: 33efb495fb15403e20df97173e1b0183272c1e3d (plain)
1
2
3
4
5
6
7
8
9
10
11
EXTRA_OECONF += "--enable-gst-recorder "
DEPENDS += "media-ctl gstreamer1.0 gstreamer1.0-plugins-base libjpeg-turbo"

FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"

SRC_URI_append = " \
 	       file://0001-Add-virtual-output-support.patch \
    	       file://0002-Get-DMA-fd-on-bo.patch \
	       file://0003-Add-gst-recorder-for-h264-output-streaming.patch \
               file://weston.service \
"
"highlight">
/*
 * Copyright 2018-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * Copyright 2019 Konsulko Group
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *     http://aws.amazon.com/apache2.0/
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
#ifndef VSHL_AFB_AFBAPIIMPL_H_
#define VSHL_AFB_AFBAPIIMPL_H_

#include <memory>

extern "C" {
#include "ctl-plugin.h"
}

#include "interfaces/afb/IAFBApi.h"
#include "interfaces/utilities/logging/ILogger.h"

using namespace std;
namespace vshlcore {
namespace afb {

class AFBApiImpl : public vshlcore::common::interfaces::IAFBApi {
public:
    static std::unique_ptr<AFBApiImpl> create(afb_api_t api);

    ~AFBApiImpl();

    std::shared_ptr<IAFBEvent> createEvent(const std::string& eventName) override;

    int callSync(
        const std::string& api,
        const std::string& verb,
        struct json_object* request,
        struct json_object** result,
        std::string& error,
        std::string& info) override;

private:
    AFBApiImpl(afb_api_t api);

    // AFB API Binding
    afb_api_t mApi;

    // Logger
    std::shared_ptr<vshlcore::common::interfaces::ILogger> mLogger;
};

}  // namespace afb
}  // namespace vshl

#endif  // VSHL_AFB_AFBAPIIMPL_H_