Skip to content

Commit 0d04bd9

Browse files
author
Clement Champetier
committed
util: do not skip format with undefined video codec
1 parent 645d63d commit 0d04bd9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/AvTranscoder/util.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,6 @@ NamesArray getAvailableFormatsNames()
124124
AVOutputFormat* fmt = NULL;
125125
while((fmt = av_oformat_next(fmt)))
126126
{
127-
// skip undefined codec
128-
if(fmt->video_codec == AV_CODEC_ID_NONE)
129-
continue;
130-
131127
if(!fmt->name)
132128
continue;
133129

0 commit comments

Comments
 (0)