@@ -553,14 +553,14 @@ bool StreamTranscoder::processTranscode()
553
553
const int nbInputSamplesPerChannel = _decodedData.at (0 )->getAVFrame ().nb_samples ;
554
554
if (nbInputSamplesPerChannel > _filteredData->getAVFrame ().nb_samples )
555
555
{
556
- LOG_WARN (" The buffer of filtered datais too small: reallocate it." )
556
+ LOG_WARN (" The buffer of filtered datacorresponds to a frame of " << _filteredData-> getAVFrame (). nb_samples << " samples. The decoded buffer contains " << nbInputSamplesPerChannel << " samples. Reallocate it." )
557
557
_filteredData->freeData ();
558
558
_filteredData->getAVFrame ().nb_samples = nbInputSamplesPerChannel;
559
559
_filteredData->allocateData ();
560
560
}
561
561
if (nbInputSamplesPerChannel > _transformedData->getAVFrame ().nb_samples )
562
562
{
563
- LOG_WARN (" The buffer of transformed datais too small: reallocate it." )
563
+ LOG_WARN (" The buffer of transformed datacorresponds to a frame of " << _transformedData-> getAVFrame (). nb_samples << " samples. The decoded buffer contains " << nbInputSamplesPerChannel << " samples. Reallocate it." )
564
564
_transformedData->freeData ();
565
565
_transformedData->getAVFrame ().nb_samples = nbInputSamplesPerChannel;
566
566
_transformedData->allocateData ();