New upstream version 2.8.0~cvs20161113
Fabian Greffrath
7 years ago
24 | 24 | ** Commercial non-GPL licensing of this software is possible. |
25 | 25 | ** For more info contact Nero AG through Mpeg4AAClicense@nero.com. |
26 | 26 | ** |
27 | ** $Id: mp4.c,v 1.40 2009/02/06 03:39:58 menno Exp $ | |
27 | ** $Id: mp4.c,v 1.41 2016/11/11 11:25:58 knik Exp $ | |
28 | 28 | **/ |
29 | 29 | |
30 | 30 | #include "common.h" |
275 | 275 | |
276 | 276 | /* no SBR signalled, this could mean either implicit signalling or no SBR in this file */ |
277 | 277 | /* MPEG specification states: assume SBR on files with samplerate <= 24000 Hz */ |
278 | if (mp4ASC->sbr_present_flag == -1) | |
278 | if (mp4ASC->sbr_present_flag == (char)-1) /* cannot be -1 on systems with unsigned char */ | |
279 | 279 | { |
280 | 280 | if (mp4ASC->samplingFrequency <= 24000) |
281 | 281 | { |