comparison libaf/af_format.c @ 7571:8819fdf88b5d

Adding support for multiple audio streams and removing annoying message from resample and format
author anders
date Tue, 01 Oct 2002 12:53:30 +0000
parents d08513b9fed6
children c67328dd459a
comparison
equal deleted inserted replaced
7570:a0bba1b6c458 7571:8819fdf88b5d
95 mp_msg(MSGT_AFILTER,MSGL_ERR,"[format] The number of output bytes per sample must be 1, 2 or 4. Current value is%i \n",((af_data_t*)arg)->bps); 95 mp_msg(MSGT_AFILTER,MSGL_ERR,"[format] The number of output bytes per sample must be 1, 2 or 4. Current value is%i \n",((af_data_t*)arg)->bps);
96 return AF_ERROR; 96 return AF_ERROR;
97 } 97 }
98 af->data->bps=((af_data_t*)arg)->bps; 98 af->data->bps=((af_data_t*)arg)->bps;
99 99
100 mp_msg(MSGT_AFILTER,MSGL_STATUS,"[format] Changing number sample format to 0x%08X and/or bytes per sample to %i \n",af->data->format,af->data->bps); 100 mp_msg(MSGT_AFILTER,MSGL_V,"[format] Changing number sample format to 0x%08X and/or bytes per sample to %i \n",af->data->format,af->data->bps);
101 return AF_OK; 101 return AF_OK;
102 } 102 }
103 return AF_UNKNOWN; 103 return AF_UNKNOWN;
104 } 104 }
105 105