Fixed a stupid mistake that made some of the *input* formats not show up.

This commit is contained in:
LoRd_MuldeR 2013-05-23 22:28:57 +02:00
parent 7c9c6054a2
commit 4e2094c296
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
#define VER_X264_MAJOR 2
#define VER_X264_MINOR 1
#define VER_X264_PATCH 3
#define VER_X264_BUILD 470
#define VER_X264_BUILD 471
#define VER_X264_MINIMUM_REV 2282
#define VER_X264_CURRENT_API 133

View File

@ -1018,7 +1018,7 @@ QString AddJobDialog::getInputFilterLst(void)
{"Uncompresses YUV Data", "yuv"},
};
const int count = ARRAY_SIZE(FILE_TYPE_FILTERS);
const int count = ARRAY_SIZE(s_filters);
QString allTypes;
for(size_t index = 0; index < count; index++)