Skip to content

Commit 81059ac

Browse files
author
Clement Champetier
committed
InputStream: clean
1 parent 8dafd79 commit 81059ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/AvTranscoder/stream/InputStream.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ VideoCodec& InputStream::getVideoCodec()
8989
throw std::runtime_error( "unable to get video descriptor on non-video stream" );
9090
}
9191

92-
return *static_cast<VideoCodec*>( _codec );;
92+
return *static_cast<VideoCodec*>( _codec );
9393
}
9494

9595
AudioCodec& InputStream::getAudioCodec()
@@ -101,7 +101,7 @@ AudioCodec& InputStream::getAudioCodec()
101101
throw std::runtime_error( "unable to get audio descriptor on non-audio stream" );
102102
}
103103

104-
return *static_cast<AudioCodec*>( _codec );;
104+
return *static_cast<AudioCodec*>( _codec );
105105
}
106106

107107
DataCodec& InputStream::getDataCodec()
@@ -113,7 +113,7 @@ DataCodec& InputStream::getDataCodec()
113113
throw std::runtime_error( "unable to get data descriptor on non-data stream" );
114114
}
115115

116-
return *static_cast<DataCodec*>( _codec );;
116+
return *static_cast<DataCodec*>( _codec );
117117
}
118118

119119
AVMediaType InputStream::getStreamType() const

0 commit comments

Comments
 (0)