Skip to content

Commit

Permalink
show vpx version in about screen
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Sep 29, 2023
1 parent 4596efd commit 05443f1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/widget/form/settings/aboutform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
#include <opus.h>
#endif

#include "vpx/vpx_codec.h"

#include <sodium.h>

#include <QDebug>
Expand Down Expand Up @@ -136,6 +138,8 @@ void AboutForm::replaceVersions()
QString::fromUtf8(libavutil_version_str) +
QString("\nopus: ") +
QString::fromUtf8(opus_get_version_string()) +
QString("\nvpx: ") +
QString::fromUtf8(vpx_codec_version_str()) +
QString("\nsodium: ") +
QString::fromUtf8(sodium_version_string())
);
Expand Down

0 comments on commit 05443f1

Please sign in to comment.