Ignore:
Timestamp:
Nov 21, 2017 9:25:11 AM (6 years ago)
Author:
riza
Message:

Close #2065: Update libyuv to fix linker error when building libyuv as dll on Visual Studio 2015.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/third_party/yuv/source/mjpeg_validate.cc

    r5633 r5699  
    2525    while (it < end) { 
    2626      // TODO(fbarchard): scan for 0xd9 instead. 
    27       it = static_cast<const uint8*>(memchr(it, 0xff, end - it)); 
     27      it = (const uint8*)(memchr(it, 0xff, end - it)); 
    2828      if (it == NULL) { 
    2929        break; 
Note: See TracChangeset for help on using the changeset viewer.