katepanping / libyuv

Automatically exported from code.google.com/p/libyuv
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

ScalePlane_16 in scale.h is missing LIBYUV_API #358

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
void ScalePlane_16(const uint16* src, int src_stride,
                   int src_width, int src_height,
                   uint16* dst, int dst_stride,
                   int dst_width, int dst_height,
                   enum FilterMode filtering);

...should be:

LIBYUV_API
void ScalePlane_16(const uint16* src, int src_stride,
                   int src_width, int src_height,
                   uint16* dst, int dst_stride,
                   int dst_width, int dst_height,
                   enum FilterMode filtering);

Original issue reported on code.google.com by aven...@gmail.com on 14 Sep 2014 at 8:27

GoogleCodeExporter commented 9 years ago
fixed in r1082

Original comment by fbarch...@google.com on 15 Sep 2014 at 10:02