Merge autoland to mozilla-central. a=merge
[gecko.git] / third_party / jpeg-xl / lib / jpegli / downsample.h
blob3ccf069e4e50cc5647599f517c84ffe0f93c3227
1 // Copyright (c) the JPEG XL Project Authors. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file.
6 #ifndef LIB_JPEGLI_DOWNSAMPLE_H_
7 #define LIB_JPEGLI_DOWNSAMPLE_H_
9 #include "lib/jpegli/common.h"
11 namespace jpegli {
13 void ChooseDownsampleMethods(j_compress_ptr cinfo);
15 void DownsampleInputBuffer(j_compress_ptr cinfo);
17 void ApplyInputSmoothing(j_compress_ptr cinfo);
19 } // namespace jpegli
21 #endif // LIB_JPEGLI_DOWNSAMPLE_H_