美摄SDK For iOS  3.7.2
NvsCustomVideoFx.h
浏览该文件的文档.
1 //================================================================================
2 //
3 // (c) Copyright China Digital Video (Beijing) Limited, 2017. All rights reserved.
4 //
5 // This code and information is provided "as is" without warranty of any kind,
6 // either expressed or implied, including but not limited to the implied
7 // warranties of merchantability and/or fitness for a particular purpose.
8 //
9 //--------------------------------------------------------------------------------
10 // Birth Date: Jul 20. 2017
11 // Author: NewAuto video team
12 //================================================================================
13 #pragma once
14 
15 #import <Foundation/Foundation.h>
16 #import "NvsCommonDef.h"
17 
19  int texId;
20  int width;
21  int height;
24 };
25 
31  int64_t effectTime;
32  int64_t effectStartTime;
33  int64_t effectEndTime;
34  int64_t mediaStreamTime;
35 };
36 
38 
47 @protocol NvsCustomVideoFxRenderer <NSObject>
48 
61 - (void)didInit;
62 
75 - (void)didCleanup;
76 
91 - (void)didPreloadResources;
92 
121 - (void)didRender:(struct NvsCustomVideoFxRenderContext *)renderContext
122  renderHelper:(NvsCustomVideoFxRenderHelper *)renderHelper;
123 
124 @optional
125 
138 - (void)didClearCacheResources;
139 
140 @end
141 
149 
164 - (int)allocateRGBATexture:(NvsSize)texSize;
165 
174 - (void)reclaimTexture:(int)texId;
175 
186 - (BOOL)uploadHostBufferToOpenGLTexture:(NvsVideoFrameInfo*)hostBuffer textureId:(int)tId;
187 
188 @end
189 
NvsCustomVideoFxRenderContext::inputVideoFrame
struct NvsCustomVideoFxVideoFrame inputVideoFrame
输入视频帧
Definition: NvsCustomVideoFx.h:27
NvsCustomVideoFxVideoFrame::texId
int texId
视频帧的纹理ID
Definition: NvsCustomVideoFx.h:19
NvsCustomVideoFxVideoFrame::proxyScale
NvsRational proxyScale
Definition: NvsCustomVideoFx.h:23
NvsCustomVideoFxVideoFrame::isUpsideDownTexture
BOOL isUpsideDownTexture
值为YES表示这个视频帧中的纹理是上下颠倒的。用户在渲染时需对纹理坐标进行处理。
Definition: NvsCustomVideoFx.h:22
NvsVideoFrameInfo
视频帧信息
Definition: NvsCommonDef.h:361
NvsCustomVideoFxRenderContext::effectEndTime
int64_t effectEndTime
特效终止时间(单位微秒)
Definition: NvsCustomVideoFx.h:33
-[NvsCustomVideoFxRenderer-p didCleanup]
void didCleanup()
美摄SDK对自定义视频特效调用此方法以便让用户清理资源
-[NvsCustomVideoFxRenderer-p didClearCacheResources]
void didClearCacheResources()
美摄SDK对自定义视频特效调用此方法以便让进行资源清理。
NvsRational
比例值
Definition: NvsCommonDef.h:254
NvsCustomVideoFxRenderContext
Definition: NvsCustomVideoFx.h:26
NvsCustomVideoFxRenderContext::hasBuddyVideoFrame
bool hasBuddyVideoFrame
表示伴侣视频帧是否存在,伴侣视频帧只有在采集的时,而且设置了STREAMING_ENGINE_CAPTURE_FLAG_CAPTURE_BUDDY_HOST_VIDEO_FRAME才会存在
Definition: NvsCustomVideoFx.h:28
NvsCustomVideoFxVideoFrame::width
int width
视频帧的宽度
Definition: NvsCustomVideoFx.h:20
NvsCustomVideoFxRenderContext::mediaStreamTime
int64_t mediaStreamTime
特效终止时间(单位微秒)
Definition: NvsCustomVideoFx.h:34
NvsCustomVideoFxRenderContext::effectStartTime
int64_t effectStartTime
特效起始时间(单位微秒)
Definition: NvsCustomVideoFx.h:32
NvsCustomVideoFxRenderContext::inputBuddyVideoFrame
NvsVideoFrameInfo inputBuddyVideoFrame
输入视频帧在Host Memory中数据和信息
Definition: NvsCustomVideoFx.h:29
NvsCustomVideoFxRenderer-p
自定义视频特效渲染器接口
Definition: NvsCustomVideoFx.h:47
NvsCustomVideoFxRenderContext::outputVideoFrame
struct NvsCustomVideoFxVideoFrame outputVideoFrame
输出视频帧
Definition: NvsCustomVideoFx.h:30
NvsCustomVideoFxVideoFrame::height
int height
视频帧的高度
Definition: NvsCustomVideoFx.h:21
NvsCustomVideoFxRenderHelper
自定义视频特效的辅助方法接口
Definition: NvsCustomVideoFx.h:149
NVS_EXPORT
#define NVS_EXPORT
Definition: NvsCommonDef.h:20
-[NvsCustomVideoFxRenderer-p didPreloadResources]
void didPreloadResources()
美摄SDK对自定义视频特效调用此方法以便让进行一些资源预处理
-[NvsCustomVideoFxRenderer-p didInit]
void didInit()
美摄SDK对自定义视频特效调用此方法以便让用户初始化一些资源
NvsCommonDef.h
NvsCustomVideoFxVideoFrame
Definition: NvsCustomVideoFx.h:18
NvsCustomVideoFxRenderContext::effectTime
int64_t effectTime
特效时间(单位微秒)
Definition: NvsCustomVideoFx.h:31
NvsSize
尺寸
Definition: NvsCommonDef.h:265