File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
src/AvTranscoder/transcoder Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -69,8 +69,18 @@ class AvExport StreamTranscoder
69
69
*/
70
70
double getDuration () const ;
71
71
72
- // / Returns a reference to the current decoder used by the streamTranscoder (from input file or from generator)
72
+ // / Returns a reference to the current decoder (from input file or from generator)
73
73
IDecoder& getCurrentDecoder () const { return *_currentDecoder; }
74
+ // / Returns a reference to the encoder
75
+ IEncoder& getEncoder () const { return *_outputEncoder; }
76
+
77
+ // / Returns a reference to the object which transforms the decoded data
78
+ ITransform& getTransform () const { return *_transform; }
79
+
80
+ // / Returns a reference to the stream which unwraps data
81
+ IInputStream& getInputStream () const { return *_inputStream; }
82
+ // / Returns a reference to the stream which wraps data
83
+ IOutputStream& getOutputStream () const { return *_outputStream; }
74
84
75
85
/* *
76
86
* @brief Returns if the stream can switch to a generator when ended
You can’t perform that action at this time.
0 commit comments