/* Audio File Library Copyright (C) 1999-2000, Michael Pruett Copyright (C) 2000, Silicon Graphics, Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA. */ /* pcm.c This file declares default PCM mappings. */ #include "afinternal.h" #include "pcm.h" #include "util.h" _PCMInfo _af_default_signed_integer_pcm_mappings[] = { {0, 0, 0, 0}, {SLOPE_INT8, 0, MIN_INT8, MAX_INT8}, {SLOPE_INT16, 0, MIN_INT16, MAX_INT16}, {SLOPE_INT24, 0, MIN_INT24, MAX_INT24}, {SLOPE_INT32, 0, MIN_INT32, MAX_INT32} }; _PCMInfo _af_default_unsigned_integer_pcm_mappings[] = { {0, 0, 0, 0}, {SLOPE_INT8, INTERCEPT_U_INT8, 0, MAX_U_INT8}, {SLOPE_INT16, INTERCEPT_U_INT16, 0, MAX_U_INT16}, {SLOPE_INT24, INTERCEPT_U_INT24, 0, MAX_U_INT24}, {SLOPE_INT32, INTERCEPT_U_INT32, 0, MAX_U_INT32} }; _PCMInfo _af_default_float_pcm_mapping = {1, 0, 0, 0}; _PCMInfo _af_default_double_pcm_mapping = {1, 0, 0, 0}; int afSetVirtualPCMMapping (AFfilehandle file, int trackid, double slope, double intercept, double minClip, double maxClip) { _Track *track; if (!_af_filehandle_ok(file)) return -1; if ((track = _af_filehandle_get_track(file, trackid)) == NULL) return -1; track->v.pcm.slope = slope; track->v.pcm.intercept = intercept; track->v.pcm.minClip = minClip; track->v.pcm.maxClip = maxClip; track->ms.modulesdirty = AF_TRUE; return 0; } int afSetTrackPCMMapping (AFfilehandle file, int trackid, double slope, double intercept, double minClip, double maxClip) { _Track *track; if (!_af_filehandle_ok(file)) return -1; if ((track = _af_filehandle_get_track(file, trackid)) == NULL) return -1; track->f.pcm.slope = slope; track->f.pcm.intercept = intercept; track->f.pcm.minClip = minClip; track->f.pcm.maxClip = maxClip; track->ms.modulesdirty = AF_TRUE; return 0; }