File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/AvTranscoder/CodedStructures Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,18 +57,18 @@ void CodedDesc::initCodecContext( )
57
57
{
58
58
if ( m_codec == NULL )
59
59
{
60
- throw std::runtime_error ( " unknown audio codec" );
60
+ throw std::runtime_error ( " unknown codec" );
61
61
}
62
62
63
63
if ( ( m_codecContext = avcodec_alloc_context3 ( m_codec ) ) == NULL )
64
64
{
65
- throw std::runtime_error ( " unable to create context for audio context" );
65
+ throw std::runtime_error ( " unable to create context for context" );
66
66
}
67
67
68
68
// Set default codec parameters
69
69
if ( avcodec_get_context_defaults3 ( m_codecContext, m_codec ) != 0 )
70
70
{
71
- throw std::runtime_error ( " unable to find audio codec default values" );
71
+ throw std::runtime_error ( " unable to find codec default values" );
72
72
}
73
73
}
74
74
You can’t perform that action at this time.
0 commit comments