summaryrefslogtreecommitdiffstats
path: root/contrib/patch-mpeg4ip-pascal-str.patch
diff options
context:
space:
mode:
authoreddyg <[email protected]>2008-11-26 22:04:10 +0000
committereddyg <[email protected]>2008-11-26 22:04:10 +0000
commitf9b799e8a1a4bbf8cec4a5887d4c7241785c99c5 (patch)
tree316c998ef1e35f62599e3cd714f5ba1599fb55fc /contrib/patch-mpeg4ip-pascal-str.patch
parentb78331a269ee8b8ee3bcc3a9754b50407de83964 (diff)
Remove the old mpeg4i patches that are now redundant.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1961 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/patch-mpeg4ip-pascal-str.patch')
-rw-r--r--contrib/patch-mpeg4ip-pascal-str.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/contrib/patch-mpeg4ip-pascal-str.patch b/contrib/patch-mpeg4ip-pascal-str.patch
deleted file mode 100644
index 4add6de51..000000000
--- a/contrib/patch-mpeg4ip-pascal-str.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- lib/mp4v2/atom_avc1.cpp.orig 2007-07-24 02:19:41.000000000 -0400
-+++ lib/mp4v2/atom_avc1.cpp 2007-07-24 02:19:44.000000000 -0400
-@@ -41,6 +41,7 @@
- MP4StringProperty* pProp =
- new MP4StringProperty("compressorName");
- pProp->SetFixedLength(32);
-+ pProp->SetCountedFormat(true);
- pProp->SetValue("AVC Coding");
- AddProperty(pProp); /* 6 */
-
---- lib/mp4v2/mp4property.cpp.orig 2007-07-24 02:20:32.000000000 -0400
-+++ lib/mp4v2/mp4property.cpp 2007-07-24 02:21:52.000000000 -0400
-@@ -391,6 +391,10 @@
- if (m_useCountedFormat) {
- pFile->WriteCountedString(m_values[index],
- (m_useUnicode ? 2 : 1), m_useExpandedCount);
-+ if (m_fixedLength) {
-+ pFile->WriteBytes((u_int8_t*)m_values[index],
-+ m_fixedLength - strlen(m_values[index]) - 1);
-+ }
- } else if (m_fixedLength) {
- pFile->WriteBytes((u_int8_t*)m_values[index], m_fixedLength);
- } else {
-