shithub: openh264

Download patch

ref: 57a292b10635f6afd8a5fceedc972c7a531c9066
parent: c4609af29ce2f0b5be3fc9d3226e04e7e8ecf885
parent: d1a6929516b314b042bfb6a745ed995be5f1d3f7
author: Ethan Hugg <[email protected]>
date: Tue Jan 21 04:46:40 EST 2014

Merge pull request #179 from mstorsjo/fix-bundleloader-64bit

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) {