SCTDecodeStream.h
Go to the documentation of this file.
1 // Copyright (c) 2009 Essential Viewing.
4 
8 #pragma once
9 
10 #include "Stream.h"
11 
12 #include "FrameConfig.h"
13 #include "Pimpl.h"
14 #include "OpResult.h"
15 
16 namespace EdgeVisDecoderSDK
17 {
18  class SCTDecodeStreamImpl;
19 
20  class SCTDecodeStream :
21  public EdgeVisSDKPimpl<SCTDecodeStreamImpl>
22  {
23  public:
24 
25  DB_EDGEVIS_SDK SCTDecodeStream();
26 
27  DB_EDGEVIS_SDK virtual ~SCTDecodeStream();
28 
29  DB_EDGEVIS_SDK OpResult Open();
30 
31  DB_EDGEVIS_SDK void Close();
32 
33  DB_EDGEVIS_SDK int32_t WriteSCTData( byte_array data );
34 
35  DB_EDGEVIS_SDK void SetRealTimeDecode( bool enable );
36  DB_EDGEVIS_SDK bool GetRealTimeDecode() const;
37 
38  DB_EDGEVIS_SDK FrameConfig GetVideoFrameConfig() const;
39  DB_EDGEVIS_SDK bool SetVideoFrameConfig(FrameConfig config);
40  DB_EDGEVIS_SDK void RequestH264IFrame();
41  DB_EDGEVIS_SDK bool EnableVideoConverter(size_t index, FrameConfig);
42  DB_EDGEVIS_SDK void DisableVideoConverter(size_t index);
43  DB_EDGEVIS_SDK size_t MaxVideoConverters() const;
44 
45  DB_EDGEVIS_SDK void RegisterListener( IStreamListener* listener );
46  DB_EDGEVIS_SDK void UnregisterListener( IStreamListener* listener );
47 
48  };
49 }
The EdgeVis Decoder SDK namespace.
OpResult
Result of an operation.
Definition: OpResult.h:25