File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ bool AudioDecoder::decodeNextFrame(Frame& frameBuffer)
97
97
&got_frame, &data.getAVPacket ());
98
98
if (ret < 0 )
99
99
{
100
- throw std::runtime_error (" an error occured during audio decoding" + getDescriptionFromErrorCode (ret));
100
+ throw std::runtime_error (" An error occured during audio decoding: " + getDescriptionFromErrorCode (ret));
101
101
}
102
102
103
103
// if no frame could be decompressed
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ bool VideoDecoder::decodeNextFrame(Frame& frameBuffer)
95
95
&got_frame, &data.getAVPacket ());
96
96
if (ret < 0 )
97
97
{
98
- throw std::runtime_error (" an error occured during video decoding - " + getDescriptionFromErrorCode (ret));
98
+ throw std::runtime_error (" An error occured during video decoding: " + getDescriptionFromErrorCode (ret));
99
99
}
100
100
101
101
// if no frame could be decompressed
You can’t perform that action at this time.
0 commit comments