vlc | branch: master | Hugo Beauzée-Luyssen <[email protected]> | 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 _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
