comparison Plugins/Input/aac/libmp4v2/mp4util.cpp @ 201:f2dc045d2327 trunk

[svn] libmp4v2 goes back to the future
author chainsaw
date Thu, 17 Nov 2005 14:01:18 -0800
parents 0a2ad94e8607
children
comparison
equal deleted inserted replaced
200:094ef8a0a9fd 201:f2dc045d2327
11 * 11 *
12 * The Original Code is MPEG4IP. 12 * The Original Code is MPEG4IP.
13 * 13 *
14 * The Initial Developer of the Original Code is Cisco Systems Inc. 14 * The Initial Developer of the Original Code is Cisco Systems Inc.
15 * Portions created by Cisco Systems Inc. are 15 * Portions created by Cisco Systems Inc. are
16 * Copyright (C) Cisco Systems Inc. 2001. All Rights Reserved. 16 * Copyright (C) Cisco Systems Inc. 2001-2005. All Rights Reserved.
17 * 17 *
18 * Contributor(s): 18 * Contributor(s):
19 * Dave Mackie dmackie@cisco.com 19 * Dave Mackie dmackie@cisco.com
20 * Bill May wmay@cisco.com
20 */ 21 */
21 22
22 #include "mp4common.h" 23 #include "mp4common.h"
23 24
24 void MP4Error::Print(FILE* pFile) 25 void MP4Error::Print(FILE* pFile)
332 333
333 if (!strcasecmp(type, "odsm") 334 if (!strcasecmp(type, "odsm")
334 || !strcasecmp(type, "od")) { 335 || !strcasecmp(type, "od")) {
335 return MP4_OD_TRACK_TYPE; 336 return MP4_OD_TRACK_TYPE;
336 } 337 }
338 if (strcasecmp(type, "cntl") == 0) {
339 return MP4_CNTL_TRACK_TYPE;
340 }
337 VERBOSE_WARNING(verbosity, 341 VERBOSE_WARNING(verbosity,
338 printf("Attempt to normalize %s did not match\n", 342 printf("Attempt to normalize %s did not match\n",
339 type)); 343 type));
340 return type; 344 return type;
341 } 345 }