[vlc-commits] test: thumbnail: Fix test following recent rgb changes
Hugo Beauzée-Luyssen
git at videolan.org
Mon Nov 19 14:04:01 CET 2018
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Mon Nov 19 13:48:59 2018 +0100| [ba559e5e1480c93357689d25c3f798a8e56428d9] | committer: Hugo Beauzée-Luyssen
test: thumbnail: Fix test following recent rgb changes
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ba559e5e1480c93357689d25c3f798a8e56428d9
---
test/src/input/thumbnail.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/src/input/thumbnail.c b/test/src/input/thumbnail.c
index 909bb38195..e6192ccf61 100644
--- a/test/src/input/thumbnail.c
+++ b/test/src/input/thumbnail.c
@@ -75,7 +75,7 @@ static void thumbnailer_callback( void* data, picture_t* thumbnail )
if ( thumbnail != NULL )
{
assert( test_params[p_ctx->test_idx].b_expected_success && "Unexpected failure" );
- assert( thumbnail->format.i_chroma == VLC_CODEC_RGB32 );
+ assert( thumbnail->format.i_chroma == VLC_CODEC_ARGB );
/* TODO: Enable this once the new clock is merged */
#if 0
More information about the vlc-commits
mailing list