nullcreate.cpp
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is MPEG4IP.
  13.  * 
  14.  * The Initial Developer of the Original Code is Cisco Systems Inc.
  15.  * Portions created by Cisco Systems Inc. are
  16.  * Copyright (C) Cisco Systems Inc. 2001.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  * Dave Mackie dmackie@cisco.com
  20.  */
  21. #include "mp4.h"
  22. main(int argc, char** argv)
  23. {
  24. if (argc < 2) {
  25. fprintf(stderr, "Usage: %s <file>n", argv[0]);
  26. exit(1);
  27. }
  28. u_int32_t verbosity = MP4_DETAILS_ALL;
  29. MP4FileHandle mp4File = MP4Create(argv[1], verbosity);
  30. if (!mp4File) {
  31. exit(1);
  32. }
  33. printf("Created skeletonn");
  34. MP4Dump(mp4File);
  35. MP4SetODProfileLevel(mp4File, 1);
  36. MP4SetSceneProfileLevel(mp4File, 1);
  37. MP4SetVideoProfileLevel(mp4File, 1);
  38. MP4SetAudioProfileLevel(mp4File, 1);
  39. MP4SetGraphicsProfileLevel(mp4File, 1);
  40. MP4TrackId odTrackId = 
  41. MP4AddODTrack(mp4File);
  42. MP4TrackId bifsTrackId = 
  43. MP4AddSceneTrack(mp4File);
  44. MP4TrackId videoTrackId = 
  45. MP4AddVideoTrack(mp4File, 90000, 3000, 320, 240);
  46. MP4TrackId videoHintTrackId = 
  47. MP4AddHintTrack(mp4File, videoTrackId);
  48. MP4TrackId audioTrackId = 
  49. MP4AddAudioTrack(mp4File, 44100, 1152);
  50. MP4TrackId audioHintTrackId = 
  51. MP4AddHintTrack(mp4File, audioTrackId);
  52. printf("Added tracksn");
  53. MP4Dump(mp4File);
  54. MP4Close(mp4File);
  55. MP4MakeIsmaCompliant(argv[1], verbosity);
  56. exit(0);
  57. }