00001 /*------------------------------------------------------------------------ 00002 *--------------------- RT-WMP -------------------- 00003 *------------------------------------------------------------------------ 00004 * V7.0B 11/05/10 00005 * 00006 * 00007 * File: ./src/core/include/wmp_utils.h 00008 * Authors: Danilo Tardioli 00009 * ---------------------------------------------------------------------- 00010 * Copyright (C) 2000-2010, Universidad de Zaragoza, SPAIN 00011 * 00012 * Contact Addresses: Danilo Tardioli dantard@unizar.es 00013 * 00014 * RT-WMP is free software; you can redistribute it and/or modify it 00015 * under the terms of the GNU General Public License as published by the 00016 * Free Software Foundation; either version 2, or (at your option) any 00017 * later version. 00018 * 00019 * RT-WMP is distributed in the hope that it will be useful, but 00020 * WITHOUT ANY WARRANTY; without even the implied warranty of 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00022 * General Public License for more details. 00023 * 00024 * You should have received a copy of the GNU General Public License 00025 * distributed with RT-WMP; see file COPYING. If not, write to the 00026 * Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 00027 * 02111-1307, USA. 00028 * 00029 * As a special exception, if you link this unit with other files to 00030 * produce an executable, this unit does not by itself cause the 00031 * resulting executable to be covered by the GNU General Public License. 00032 * This exception does not however invalidate any other reasons why the 00033 * executable file might be covered by the GNU Public License. 00034 * 00035 *----------------------------------------------------------------------*/ 00036 00037 00038 00039 #ifndef WMP_UTILS_H_ 00040 #define WMP_UTILS_H_ 00041 00042 #include "../include/frames.h" 00043 00044 long long wmp_timespec_to_ns(struct timespec *ts); 00045 long long wmp_elapsed_ms (struct timespec *begin, struct timespec *end); 00046 void wmp_add_ms(struct timespec *ts, int ms); 00047 unsigned int wmp_calculate_frame_duration_ms(int rate, int size) ; 00048 unsigned int wmp_calculate_frame_duration_us(int rate, int size) ; 00049 00050 int wmpGetFrameHash(wmpFrame * p); 00051 int wmpGetFrameHashNoRetry(wmpFrame * p); 00052 00053 void lqmToString(char **lqm, char * s, int nnodes); 00054 void wmp_print_lqm(char ** lqm, char * s, int nnodes); 00055 void wmp_print(const char *format, ...); 00056 int wmp_print_get_size(void); 00057 void wmp_print_reset(void); 00058 int wmp_print_put(wmpFrame * p); 00059 void wmp_print_append(wmpFrame * p); 00060 void wmp_print_clean(wmpFrame * p) ; 00061 int ms_to_us(int n); 00062 int us_to_ms(int n); 00063 #endif /* WMP_UTILS_H_ */ 00064