Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions YUViewLib/src/playlistitem/playlistItemRawFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ using namespace std::string_view_literals;
namespace
{

constexpr auto YUV_EXTENSIONS = {"yuv", "nv12", "y4m"};
constexpr auto YUV_EXTENSIONS = {"yuv","v210", "nv12", "y4m"};
constexpr auto RGB_EXTENSIONS = {"rgb", "gbr", "bgr", "brg"};
constexpr auto RGBA_EXTENSIONS = {"rgba", "gbra", "bgra", "brga", "argb", "agbr", "abgr", "abrg"};
constexpr auto RAW_BAYER_EXTENSIONS = {"raw"};
Expand Down Expand Up @@ -582,7 +582,7 @@ void playlistItemRawFile::getSupportedFileExtensions(QStringList &allExtensions,
for (const auto &extension : extensionsList)
allExtensions.append(QString(extension));

filters.append("Raw YUV File (*.yuv *.nv21)");
filters.append("Raw YUV File (*.yuv *.nv21 *.v210 *.uyvy)");
filters.append("Raw RGB File (*.rgb *.rbg *.grb *.gbr *.brg *.bgr)");
filters.append("Raw RGBA File (*.rgba *.rbga *.grba *.gbra *.brga *.bgra *.argb *.arbg *.agrb "
"*.agbr *.abrg *.abgr)");
Expand Down