Codebase list faad2 / ab9500c
Merge tag 'upstream/2.8.0_cvs20161113' Upstream version 2.8.0~cvs20161113 Fabian Greffrath 7 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
2424 ** Commercial non-GPL licensing of this software is possible.
2525 ** For more info contact Nero AG through Mpeg4AAClicense@nero.com.
2626 **
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 $
2828 **/
2929
3030 #include "common.h"
275275
276276 /* no SBR signalled, this could mean either implicit signalling or no SBR in this file */
277277 /* 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 */
279279 {
280280 if (mp4ASC->samplingFrequency <= 24000)
281281 {