Fix typo in conversion technique name (there is no UYUV, only UYVY)

This commit is contained in:
Palana 2014-06-02 16:38:20 +02:00
parent c19b9160ad
commit 7d0a1502bd
2 changed files with 2 additions and 2 deletions

View File

@ -269,7 +269,7 @@ technique NV12
}
}
technique UYUV_Reverse
technique UYVY_Reverse
{
pass
{

View File

@ -737,7 +737,7 @@ static const char *select_conversion_technique(enum video_format format)
{
switch (format) {
case VIDEO_FORMAT_UYVY:
return "UYUV_Reverse";
return "UYVY_Reverse";
case VIDEO_FORMAT_YUY2:
return "YUY2_Reverse";