IChapterInfo.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2005 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  *  Note: This interface was defined for the matroska container format 
  21.  *  originally, but can be implemented for other formats as well.
  22.  *
  23.  */
  24. #pragma once
  25. typedef enum ChapterType {
  26.     AtomicChapter = 0, // only contain one element
  27.     SubChapter    = 1, // contain a list of elements
  28. };
  29. #pragma pack(push, 1)
  30. struct ChapterElement {
  31.     WORD Size; // size of this structure
  32.     BYTE Type; // see ChapterType
  33.     UINT ChapterId; // unique identifier for this element
  34.     REFERENCE_TIME rtStart; // REFERENCE_TIME in 100ns
  35.     REFERENCE_TIME rtStop; // REFERENCE_TIME in 100ns
  36. struct ChapterElement() {Size = sizeof(*this);}
  37. };
  38. struct ChapterElement2 : ChapterElement {
  39. BOOL bDisabled;
  40. struct ChapterElement2() {Size = sizeof(*this);}
  41. };
  42. #pragma pack(pop)
  43. [uuid("8E128709-3DC8-4e49-B632-380FCF496B6D")]
  44. interface IChapterInfo : public IUnknown
  45. {
  46. #define CHAPTER_BAD_ID   0xFFFFFFFF
  47. #define CHAPTER_ROOT_ID   0
  48. // param aChapterID is 0 for the top level one
  49. STDMETHOD_(UINT, GetChapterCount) (UINT aChapterID) = 0;
  50. // param aIndex start from 1 to GetChapterCount( aParentChapterId )
  51. STDMETHOD_(UINT, GetChapterId) (UINT aParentChapterId, UINT aIndex) = 0;
  52. STDMETHOD_(UINT, GetChapterCurrentId) () = 0;
  53. STDMETHOD_(BOOL, GetChapterInfo) (UINT aChapterID, struct ChapterElement* pStructureToFill) = 0;
  54. // param PreferredLanguage Language code as in ISO-639-2 (3 chars)
  55. // param CountryCode       Country code as in internet domains
  56. STDMETHOD_(BSTR, GetChapterStringInfo) (UINT aChapterID, CHAR PreferredLanguage[3], CHAR CountryCode[2]) = 0;
  57. };