1*49278c1bSTaylor Simpson /* 2*49278c1bSTaylor Simpson * Copyright(c) 2021 Qualcomm Innovation Center, Inc. All Rights Reserved. 3*49278c1bSTaylor Simpson * 4*49278c1bSTaylor Simpson * This program is free software; you can redistribute it and/or modify 5*49278c1bSTaylor Simpson * it under the terms of the GNU General Public License as published by 6*49278c1bSTaylor Simpson * the Free Software Foundation; either version 2 of the License, or 7*49278c1bSTaylor Simpson * (at your option) any later version. 8*49278c1bSTaylor Simpson * 9*49278c1bSTaylor Simpson * This program is distributed in the hope that it will be useful, 10*49278c1bSTaylor Simpson * but WITHOUT ANY WARRANTY; without even the implied warranty of 11*49278c1bSTaylor Simpson * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12*49278c1bSTaylor Simpson * GNU General Public License for more details. 13*49278c1bSTaylor Simpson * 14*49278c1bSTaylor Simpson * You should have received a copy of the GNU General Public License 15*49278c1bSTaylor Simpson * along with this program; if not, see <http://www.gnu.org/licenses/>. 16*49278c1bSTaylor Simpson */ 17*49278c1bSTaylor Simpson 18*49278c1bSTaylor Simpson #ifndef HVX_HISTOGRAM_ROW_H 19*49278c1bSTaylor Simpson #define HVX_HISTOGRAM_ROW_H 20*49278c1bSTaylor Simpson 21*49278c1bSTaylor Simpson void hvx_histogram_row(uint8_t *src, int stride, int width, int height, 22*49278c1bSTaylor Simpson int *hist); 23*49278c1bSTaylor Simpson 24*49278c1bSTaylor Simpson #endif 25