We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7efb612 commit ed6eaf0Copy full SHA for ed6eaf0
src/AvTranscoder/util.cpp
@@ -144,13 +144,6 @@ NamesArray getVideoCodecsNames()
144
AVCodec* c = NULL;
145
while( ( c = av_codec_next( c ) ) != NULL )
146
{
147
-#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 53, 34, 0 )
148
- if( ! c->encode )
149
- continue;
150
-#else
151
- if( ! c->encode2 )
152
153
-#endif
154
switch( c->type )
155
156
case AVMEDIA_TYPE_VIDEO:
@@ -175,13 +168,6 @@ NamesArray getAudioCodecsNames()
175
168
176
169
177
170
178
179
180
181
182
183
184
185
171
186
172
187
173
case AVMEDIA_TYPE_AUDIO:
0 commit comments