comparison vm/decoder.h @ 388:90ca650854e0 src

Remove all trailing whitespace, patch by Erik Hovland *erik$hovland dot org%
author rathann
date Sat, 06 Sep 2008 21:55:51 +0000
parents 6c0def2b7e39
children d3c273ced49c
comparison
equal deleted inserted replaced
387:4e28052eb201 388:90ca650854e0
1 /* 1 /*
2 * Copyright (C) 2000, 2001 Martin Norbäck, Håkan Hjort 2 * Copyright (C) 2000, 2001 Martin Norbäck, Håkan Hjort
3 * 3 *
4 * This file is part of libdvdnav, a DVD navigation library. It is modified 4 * This file is part of libdvdnav, a DVD navigation library. It is modified
5 * from a file originally part of the Ogle DVD player. 5 * from a file originally part of the Ogle DVD player.
6 * 6 *
7 * libdvdnav is free software; you can redistribute it and/or modify 7 * libdvdnav is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or 9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version. 10 * (at your option) any later version.
11 * 11 *
12 * libdvdnav is distributed in the hope that it will be useful, 12 * libdvdnav is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details. 15 * GNU General Public License for more details.
16 * 16 *
17 * You should have received a copy of the GNU General Public License 17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software 18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA 19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
20 * 20 *
21 * $Id$ 21 * $Id$
93 } command_t; 93 } command_t;
94 94
95 /* the big VM function, executing the given commands and writing 95 /* the big VM function, executing the given commands and writing
96 * the link where to continue, the return value indicates if a jump 96 * the link where to continue, the return value indicates if a jump
97 * has been performed */ 97 * has been performed */
98 int32_t vmEval_CMD(vm_cmd_t commands[], int32_t num_commands, 98 int32_t vmEval_CMD(vm_cmd_t commands[], int32_t num_commands,
99 registers_t *registers, link_t *return_values); 99 registers_t *registers, link_t *return_values);
100 100
101 /* extracts some bits from the command */ 101 /* extracts some bits from the command */
102 uint32_t vm_getbits(command_t* command, int32_t start, int32_t count); 102 uint32_t vm_getbits(command_t* command, int32_t start, int32_t count);
103 103