File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ VideoCodec& InputStream::getVideoCodec()
89
89
throw std::runtime_error ( " unable to get video descriptor on non-video stream" );
90
90
}
91
91
92
- return *static_cast <VideoCodec*>( _codec );;
92
+ return *static_cast <VideoCodec*>( _codec );
93
93
}
94
94
95
95
AudioCodec& InputStream::getAudioCodec ()
@@ -101,7 +101,7 @@ AudioCodec& InputStream::getAudioCodec()
101
101
throw std::runtime_error ( " unable to get audio descriptor on non-audio stream" );
102
102
}
103
103
104
- return *static_cast <AudioCodec*>( _codec );;
104
+ return *static_cast <AudioCodec*>( _codec );
105
105
}
106
106
107
107
DataCodec& InputStream::getDataCodec ()
@@ -113,7 +113,7 @@ DataCodec& InputStream::getDataCodec()
113
113
throw std::runtime_error ( " unable to get data descriptor on non-data stream" );
114
114
}
115
115
116
- return *static_cast <DataCodec*>( _codec );;
116
+ return *static_cast <DataCodec*>( _codec );
117
117
}
118
118
119
119
AVMediaType InputStream::getStreamType () const
You can’t perform that action at this time.
0 commit comments