You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
689 B
27 lines
689 B
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
// alpha_combine.h : helper to combine D3D11 planes to generate pictures with alpha
|
|
// Copyright © 2023 VideoLabs, VLC authors and VideoLAN
|
|
|
|
// Authors: Steve Lhomme <robux4@videolabs.io>
|
|
|
|
#ifndef VLC_ALPHA_COMBINE_H
|
|
#define VLC_ALPHA_COMBINE_H 1
|
|
|
|
#include <vlc_common.h>
|
|
#include <vlc_codec.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
picture_t *CombineD3D11(decoder_t *bdec, picture_t *opaque, picture_t *alpha, vlc_video_context*);
|
|
int SetupD3D11(decoder_t *bdec, vlc_video_context *vctx, vlc_video_context **vctx_out);
|
|
#endif // _WIN32
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // VLC_ALPHA_COMBINE_H
|
|
|