Skip to content

Commit

Permalink
Added meaning of 'D', 'E', 'I', 'L' and 'S' in About->Codecs tab.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Mar 12, 2024
1 parent 7f71da6 commit 597c5a7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions mrv2/lib/mrvWidgets/mrvVersion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,13 @@ namespace mrv
if (nb_codecs < 0)
return;

char buf[256];
browser.add("D\t\t\t\t\t=\tDecoding supported");
browser.add("\tE\t\t\t\t=\tEncoding supported");
browser.add("\t\tI\t\t\t=\tIntra frame-only codec");
browser.add("\t\t\tL\t\t=\tLossy compression");
browser.add("\t\t\t\tS\t=\tLossless compression");
browser.add("--------------------------------------------------------------------------------------------------------------------------------------");

for (i = 0; i < nb_codecs; i++) {
const AVCodecDescriptor *desc = codecs[i];
const AVCodec *codec;
Expand Down Expand Up @@ -641,7 +647,7 @@ namespace mrv
void ffmpeg_subtitle_codecs(mrv::Browser& browser)
{
#ifdef TLRENDER_FFMPEG
return ffmpeg_codecs(browser, AVMEDIA_TYPE_SUBTITLE);
//return ffmpeg_codecs(browser, AVMEDIA_TYPE_SUBTITLE);
#endif
}

Expand Down

0 comments on commit 597c5a7

Please sign in to comment.