A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
at master 51 lines 1.5 kB view raw
1/*************************************************************************** 2 * __________ __ ___. 3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___ 4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / 5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 7 * \/ \/ \/ \/ \/ 8 * $Id$ 9 * 10 * Copyright (C) 2014 Franklin Wei, Benjamin Brown 11 * Copyright (C) 2004 Gregory Montoir 12 * 13 * This program is free software; you can redistribute it and/or 14 * modify it under the terms of the GNU General Public License 15 * as published by the Free Software Foundation; either version 2 16 * of the License, or (at your option) any later version. 17 * 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * KIND, either express or implied. 20 * 21 ***************************************************************************/ 22 23#ifndef __INTERN_H__ 24#define __INTERN_H__ 25 26#include "plugin.h" 27#include "string.h" 28#include "awendian.h" 29#include "util.h" 30 31#define assert(c) (c?(void)0:error("Assertion failed line %d, file %s", __LINE__, __FILE__)) 32 33struct Ptr { 34 uint8_t* pc; 35}; 36 37struct Point { 38 int16_t x, y; 39}; 40 41static inline uint8_t scriptPtr_fetchByte(struct Ptr* p) { 42 return *p->pc++; 43} 44 45static inline uint16_t scriptPtr_fetchWord(struct Ptr* p) { 46 uint16_t i = READ_BE_UINT16(p->pc); 47 p->pc += 2; 48 return i; 49} 50 51#endif