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

多媒体编程

开发平台:

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.  */
  21. #pragma once
  22. #include <afx.h>
  23. #include <afxtempl.h>
  24. #include <atlcoll.h>
  25. typedef CArray<CPoint> CPointArray;
  26. typedef CArray<int> CDirArray;
  27. typedef struct 
  28. {
  29. CPointArray pa;
  30. CDirArray da;
  31. void RemoveAll() {pa.RemoveAll(); da.RemoveAll();}
  32. void Add(CPoint p, int d) {pa.Add(p); da.Add(d);}
  33. } COutline;
  34. typedef CAutoPtrList<COutline> COutlineList;
  35. class CVobSubImage
  36. {
  37. friend class CVobSubFile;
  38. private:
  39. CSize org;
  40. RGBQUAD* lpTemp1;
  41. RGBQUAD* lpTemp2;
  42. WORD nOffset[2], nPlane;
  43. bool fCustomPal;
  44. char fAligned; // we are also using this for calculations, that's why it is char instead of bool...
  45. int tridx;
  46. RGBQUAD* orgpal /*[16]*/,* cuspal /*[4]*/;
  47. bool Alloc(int w, int h);
  48. void Free();
  49. BYTE GetNibble(BYTE* lpData);
  50. void DrawPixels(CPoint p, int length, int colorid);
  51. void TrimSubImage();
  52. public:
  53. int iLang, iIdx;
  54. bool fForced;
  55. __int64 start, delay;
  56. CRect rect;
  57. typedef struct {BYTE pal:4, tr:4;} SubPal;
  58. SubPal pal[4];
  59. RGBQUAD* lpPixels;
  60. CVobSubImage();
  61. virtual ~CVobSubImage();
  62. void Invalidate() {iLang = iIdx = -1;}
  63. void GetPacketInfo(BYTE* lpData, int packetsize, int datasize);
  64. bool Decode(BYTE* lpData, int packetsize, int datasize,
  65. bool fCustomPal, 
  66. int tridx, 
  67. RGBQUAD* orgpal /*[16]*/, RGBQUAD* cuspal /*[4]*/, 
  68. bool fTrim);
  69. /////////
  70. private:
  71. COutlineList* GetOutlineList(CPoint& topleft);
  72. int GrabSegment(int start, COutline& o, COutline& ret);
  73. void SplitOutline(COutline& o, COutline& o1, COutline& o2);
  74. void AddSegment(COutline& o, CByteArray& pathTypes, CPointArray& pathPoints);
  75. public:
  76. bool Polygonize(CByteArray& pathTypes, CPointArray& pathPoints, bool fSmooth, int scale);
  77. bool Polygonize(CStringW& assstr, bool fSmooth = true, int scale = 3);
  78.     void Scale2x();
  79. };