Commit c4b2aaf9 authored by Damien Fouilleul's avatar Damien Fouilleul

i422_yuy2_sse2: fix module requirements

parent 7a8e5196
...@@ -68,7 +68,7 @@ vlc_module_begin(); ...@@ -68,7 +68,7 @@ vlc_module_begin();
#elif defined (MODULE_NAME_IS_i422_yuy2_sse2) #elif defined (MODULE_NAME_IS_i422_yuy2_sse2)
set_description( _("SSE2 conversions from " SRC_FOURCC " to " DEST_FOURCC) ); set_description( _("SSE2 conversions from " SRC_FOURCC " to " DEST_FOURCC) );
set_capability( "chroma", 120 ); set_capability( "chroma", 120 );
add_requirement( MMX ); add_requirement( SSE2 );
#endif #endif
set_callbacks( Activate, NULL ); set_callbacks( Activate, NULL );
vlc_module_end(); vlc_module_end();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment