/***************************************************************************** * timestamps.h: MPEG TS/PS Timestamps helpers ***************************************************************************** * Copyright (C) 2004-2016 VLC authors and VideoLAN * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . *****************************************************************************/ #ifndef VLC_MPEG_TIMESTAMPS_H #define VLC_MPEG_TIMESTAMPS_H #define FROM_SCALE_NZ(x) ((x) * 100 / 9) #define TO_SCALE_NZ(x) ((x) * 9 / 100) #define FROM_SCALE(x) (VLC_TICK_0 + FROM_SCALE_NZ(x)) #define TO_SCALE(x) TO_SCALE_NZ((x) - VLC_TICK_0) static inline int64_t TimeStampWrapAround( int64_t i_first_pcr, int64_t i_time ) { int64_t i_adjust = 0; if( i_first_pcr > 0x0FFFFFFFF && i_time < 0x0FFFFFFFF ) i_adjust = 0x1FFFFFFFF; return i_time + i_adjust; } #endif