Skip to content

Commit

Permalink
don't ignore TEXTSUB streams
Browse files Browse the repository at this point in the history
  • Loading branch information
Jalle19 committed Jan 3, 2014
1 parent 0ed916c commit bdb0e70
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xbmc/xbmc_codec_descriptor.hpp
Expand Up @@ -51,6 +51,8 @@ class CodecDescriptor
retVal = CodecDescriptor(CODEC->GetCodecByName("MP2"), strCodecName);
else if (!strcmp(strCodecName, "MPEGTS"))
retVal = CodecDescriptor(CODEC->GetCodecByName("MPEG2VIDEO"), strCodecName);
else if (!strcmp(strCodecName, "TEXTSUB"))
retVal = CodecDescriptor(CODEC->GetCodecByName("TEXT"), strCodecName);
else
retVal = CodecDescriptor(CODEC->GetCodecByName(strCodecName), strCodecName);

Expand Down

0 comments on commit bdb0e70

Please sign in to comment.