File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -422,7 +422,7 @@ void Window::displayInformations()
422
422
std::cout << textureType << " " << _width << " x" << _height << std::endl;
423
423
424
424
// stream info
425
- const avtranscoder::VideoProperties* properties = _reader->getVideoProperties ();
425
+ const avtranscoder::VideoProperties* properties = _reader->getSourceVideoProperties ();
426
426
if ( properties != NULL )
427
427
std::cout << *properties << std::endl;
428
428
}
Original file line number Diff line number Diff line change @@ -34,9 +34,8 @@ class AvExport AudioReader : public IReader
34
34
AVSampleFormat getOutputSampleFormat () const { return _outputSampleFormat; }
35
35
// @}
36
36
37
- // @brief Input info
38
- const AudioProperties* getAudioProperties () const {return _audioStreamProperties;}
39
-
37
+ // @brief Get source audio properties
38
+ const AudioProperties* getSourceAudioProperties () const {return _audioStreamProperties;}
40
39
41
40
private:
42
41
void init ();
Original file line number Diff line number Diff line change @@ -37,9 +37,8 @@ class AvExport VideoReader : public IReader
37
37
AVPixelFormat getOutputPixelFormat () const { return _outputPixelProperties.getAVPixelFormat (); }
38
38
// @}
39
39
40
- // @brief Input info
41
- const VideoProperties* getVideoProperties () const {return _videoStreamProperties;}
42
-
40
+ // @brief Get source video properties
41
+ const VideoProperties* getSourceVideoProperties () const { return _videoStreamProperties; }
43
42
44
43
private:
45
44
void init ();
You can’t perform that action at this time.
0 commit comments