Add encoder support for Dirac using the Schroedinger library.
[vlc/asuraparaju-public.git] / src / test / keys.c
blob03843041bec6a71937702a3a518d3b60deb770a7
1 /*****************************************************************************
2 * keys.c: test for key support
3 *****************************************************************************
4 * Copyright (C) 2009 RĂ©mi Denis-Courmont
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 #ifdef HAVE_CONFIG_H
22 # include "config.h"
23 #endif
25 #include <stdio.h>
26 #include <stdint.h>
27 #include <stdbool.h>
29 #define __LIBVLC__
30 #include "../config/keys.c"
32 int main (void)
34 bool ok = true;
36 /* Make sure keys are sorted properly, so that bsearch() works */
37 for (size_t i = 1; i < vlc_num_keys; i++)
38 if (vlc_keys[i].i_key_code < vlc_keys[i - 1].i_key_code)
40 fprintf (stderr,
41 "%s (%06"PRIx32") should be before %s (%06"PRIx32")\n",
42 vlc_keys[i].psz_key_string, vlc_keys[i].i_key_code,
43 vlc_keys[i - 1].psz_key_string,
44 vlc_keys[i - 1].i_key_code);
45 ok = false;
48 return !ok;