shithub: openh264

Download patch

ref: d1a6929516b314b042bfb6a745ed995be5f1d3f7
parent: f8b84b642d453e77699ba452d305424fc066d341
author: Martin Storsjö <martin@martin.st>
date: Tue Jan 21 09:37:39 EST 2014

Fix building of macos bundle loading code on 64 bit

--- a/codec/encoder/core/inc/bundleloader.h
+++ b/codec/encoder/core/inc/bundleloader.h
@@ -68,7 +68,7 @@
   }
 }
 std::string strPath (cCurrentPath);
-int pos = std::string::npos;
+std::string::size_type pos = std::string::npos;
 for (int i = 0; i < locateNumber; i++) {
   pos = strPath.rfind ('/');
   if (std::string::npos == pos) {