2010-12-12 17:59:10 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 Nolan Lum <nol888@gmail.com>
|
2013-10-21 20:35:02 +00:00
|
|
|
* Copyright (c) 2009 Loren Merritt <lorenm@u.washington.edu>
|
2010-12-12 17:59:10 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2010-12-12 17:59:10 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2010-12-12 17:59:10 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2010-12-12 17:59:10 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2010-12-12 17:59:10 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVFILTER_GRADFUN_H
|
|
|
|
#define AVFILTER_GRADFUN_H
|
|
|
|
|
|
|
|
#include "avfilter.h"
|
|
|
|
|
|
|
|
/// Holds instance-specific information for gradfun.
|
2012-09-27 08:19:53 +00:00
|
|
|
typedef struct GradFunContext {
|
2013-02-25 20:21:29 +00:00
|
|
|
const AVClass *class;
|
|
|
|
float strength;
|
2010-12-12 17:59:10 +00:00
|
|
|
int thresh; ///< threshold for gradient algorithm
|
|
|
|
int radius; ///< blur radius
|
|
|
|
int chroma_w; ///< width of the chroma planes
|
|
|
|
int chroma_h; ///< weight of the chroma planes
|
|
|
|
int chroma_r; ///< blur radius for the chroma planes
|
|
|
|
uint16_t *buf; ///< holds image data for blur algorithm passed into filter.
|
|
|
|
/// DSP functions.
|
|
|
|
void (*filter_line) (uint8_t *dst, uint8_t *src, uint16_t *dc, int width, int thresh, const uint16_t *dithers);
|
|
|
|
void (*blur_line) (uint16_t *dc, uint16_t *buf, uint16_t *buf1, uint8_t *src, int src_linesize, int width);
|
|
|
|
} GradFunContext;
|
|
|
|
|
2012-07-01 11:51:30 +00:00
|
|
|
void ff_gradfun_init_x86(GradFunContext *gf);
|
|
|
|
|
2010-12-12 17:59:10 +00:00
|
|
|
void ff_gradfun_filter_line_c(uint8_t *dst, uint8_t *src, uint16_t *dc, int width, int thresh, const uint16_t *dithers);
|
|
|
|
void ff_gradfun_blur_line_c(uint16_t *dc, uint16_t *buf, uint16_t *buf1, uint8_t *src, int src_linesize, int width);
|
|
|
|
|
|
|
|
#endif /* AVFILTER_GRADFUN_H */
|