mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-13 14:34:33 +02:00
examples,cosmetics: rm struct member '_' suffix
This is a follow up to:
ee8e8c62
Fix member naming for VP8LHistogram
This better matches Google style and clears some clang-tidy warnings.
Change-Id: If6a77a316e36a6d87abaa69692a34374ba6aed4f
This commit is contained in:
@ -28,10 +28,10 @@
|
||||
void WebPInfoTest(std::string_view data) {
|
||||
WebPInfo webp_info;
|
||||
WebPInfoInit(&webp_info);
|
||||
webp_info.quiet_ = 1;
|
||||
webp_info.show_summary_ = 0;
|
||||
webp_info.show_diagnosis_ = 0;
|
||||
webp_info.parse_bitstream_ = 1;
|
||||
webp_info.quiet = 1;
|
||||
webp_info.show_summary = 0;
|
||||
webp_info.show_diagnosis = 0;
|
||||
webp_info.parse_bitstream = 1;
|
||||
WebPData webp_data = {reinterpret_cast<const uint8_t *>(data.data()),
|
||||
data.size()};
|
||||
AnalyzeWebP(&webp_info, &webp_data);
|
||||
|
Reference in New Issue
Block a user