hint.c
上传用户: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. 2000, 2001.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  * Dave Mackie dmackie@cisco.com
  20.  */
  21. #include "quicktime.h"
  22. int quicktime_hint_init(quicktime_hint_t *hint)
  23. {
  24. hint->numTracks = 0;
  25. hint->trackIds[0] = -1;
  26. hint->traks[0] = NULL;
  27. }
  28. int quicktime_hint_set(quicktime_hint_t *hint, quicktime_trak_t *refTrak)
  29. {
  30. hint->traks[hint->numTracks] = refTrak;
  31. hint->trackIds[hint->numTracks] = refTrak->tkhd.track_id;
  32. hint->numTracks++;
  33. }
  34. int quicktime_hint_delete(quicktime_hint_t *hint)
  35. {
  36. }
  37. int quicktime_read_hint(quicktime_t *file, quicktime_hint_t *hint, quicktime_atom_t *parent_atom)
  38. {
  39. quicktime_trak_t* refTrak = NULL;
  40. int i;
  41. while (quicktime_position(file) < parent_atom->end) {
  42. hint->trackIds[hint->numTracks] = quicktime_read_int32(file);
  43. hint->traks[hint->numTracks] = NULL; 
  44. hint->numTracks++;
  45. }
  46. }
  47. int quicktime_write_hint(quicktime_t *file, quicktime_hint_t *hint)
  48. {
  49. quicktime_atom_t atom;
  50. int i;
  51. quicktime_atom_write_header(file, &atom, "hint");
  52. for (i = 0; i < hint->numTracks; i++) {
  53. quicktime_write_int32(file, hint->trackIds[i]);
  54. }
  55. quicktime_atom_write_footer(file, &atom);
  56. }
  57. int quicktime_hint_dump(quicktime_hint_t *hint)
  58. {
  59. int i;
  60. printf("   hintn");
  61. for (i = 0; i < hint->numTracks; i++) {
  62. printf("    track %dn", hint->trackIds[i]);
  63. }
  64. }