www.pudn.com > g7x.rar > common_m4a.c
/********************************************************************** MPEG-4 Audio VM Common module This software module was originally developed by Heiko Purnhagen (University of Hannover / ACTS-MoMuSys) and edited by in the course of development of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 14496-1,2 and 3. This software module is an implementation of a part of one or more MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 Audio standard. ISO/IEC gives users of the MPEG-2 NBC/MPEG-4 Audio standards free license to this software module or modifications thereof for use in hardware or software products claiming conformance to the MPEG-2 NBC/ MPEG-4 Audio standards. Those intending to use this software module in hardware or software products are advised that this use may infringe existing patents. The original developer of this software module and his/her company, the subsequent editors and their companies, and ISO/IEC have no liability for use of this software module or modifications thereof in an implementation. Copyright is not released for non MPEG-2 NBC/MPEG-4 Audio conforming products. The original developer retains full right to use the code for his/her own purpose, assign or donate the code to a third party and to inhibit third party from using the code for non MPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must be included in all copies or derivative works. Copyright (c) 1996. Source file: common.c $Id: common_m4a.c,v 1.3 1999/07/22 17:55:35 purnhage Exp $ Authors: HP Heiko Purnhagen, Uni HannoverChanges: 06-jun-96 HP new module based on ErrorMsg() from cmdline module 25-jun-96 HP added CommonFreeAlloc() 26-aug-96 HP CVS 25-jun-97 HP added random() 16-oct-98 HP fflush(stderr) in warning/exit **********************************************************************/ #include #include #include #include "resilienceHandle.h" /* handler, defines, enums */ #include "buffersHandle.h" /* handler, defines, enums */ #include "concealmentHandle.h" /* handler, defines, enums */ #include "common_m4a.h" /* common module */ /* ---------- variables ---------- */ static char *CMprogName = " "; /* program name */ /* ---------- functions ---------- */ /* CommonFreeAlloc() */ /* Free previously allocated memory if present, then allocate new memory. */ void *CommonFreeAlloc ( void **ptr, /* in/out: addr of memory pointer */ size_t size) /* in: memory size */ /* returns: memory pointer */ /* or NULL if error*/ { if (*ptr != NULL) free(*ptr); return *ptr = malloc(size); } /* CommonProgName() */ /* Set program name for error/warning message. */ void CommonProgName ( char *progName) /* in: program name */ { CMprogName = progName; } /* CommonWarning() */ /* Print program name and warning message to stderr. */ void CommonWarning ( char *message, /* in: warning message */ ...) /* in: args as for printf */ { va_list args; va_start(args,message); fflush(stdout); fprintf(stderr,"%s: WARNING: ",CMprogName); vfprintf(stderr,message,args); fprintf(stderr,"\n"); fflush(stderr); va_end(args); } /* CommonExit() */ /* Print program name and error message to stderr and exit program. */ void CommonExit ( int errorCode, /* in: error code for exit() */ char *message, /* in: error message */ ...) /* in: args as for printf */ { va_list args; va_start(args,message); fflush(stdout); fprintf(stderr,"%s: ERROR[%d]: ",CMprogName,errorCode); vfprintf(stderr,message,args); fprintf(stderr,"\n"); fflush(stderr); va_end(args); exit (errorCode); } /* random1() */ /* Generate random long (uniform distribution 0..RND_MAX). */ long random1 (void) { static long randx = 1; randx = (randx * 1103515245) + 12345; return (randx & RND_MAX); } /* end of common.c */