RetroArch/gfx/filter.c

139 lines
4.1 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "filter.h"
#include "../dynamic.h"
#include "../general.h"
2014-04-14 23:24:10 +02:00
#include "../performance.h"
#include <stdlib.h>
struct rarch_softfilter
{
dylib_t *lib;
const struct softfilter_implementation *impl;
void *impl_data;
unsigned max_width, max_height;
enum retro_pixel_format pix_fmt, out_pix_fmt;
2014-04-14 23:46:47 +02:00
struct softfilter_work_packet *packets;
unsigned threads;
};
rarch_softfilter_t *rarch_softfilter_new(const char *filter_path,
unsigned threads,
enum retro_pixel_format in_pixel_format,
unsigned max_width, unsigned max_height)
{
rarch_softfilter_t *filt = (rarch_softfilter_t*)calloc(1, sizeof(*filt));
if (!filt)
return NULL;
filt->lib = dylib_load(filter_path);
if (!filt->lib)
goto error;
softfilter_get_implementation_t cb = (softfilter_get_implementation_t)dylib_proc(filt->lib, "softfilter_get_implementation");
if (!cb)
{
RARCH_ERR("Couldn't find softfilter symbol.\n");
goto error;
}
2014-04-14 23:24:10 +02:00
unsigned cpu_features = rarch_get_cpu_features();
filt->impl = cb(cpu_features);
if (!filt->impl)
goto error;
2014-04-14 23:46:47 +02:00
// Simple assumptions.
2014-04-15 00:03:55 +02:00
filt->pix_fmt = in_pixel_format;
filt->out_pix_fmt = in_pixel_format;
2014-04-14 23:46:47 +02:00
unsigned input_fmt = in_pixel_format == RETRO_PIXEL_FORMAT_XRGB8888 ?
SOFTFILTER_FMT_XRGB8888 : SOFTFILTER_FMT_RGB565;
unsigned input_fmts = filt->impl->query_input_formats();
if (!(input_fmt & input_fmts))
goto error;
unsigned output_fmts = filt->impl->query_output_formats(input_fmt);
if (!(output_fmts & input_fmt))
goto error;
filt->max_width = max_width;
filt->max_height = max_height;
2014-04-14 23:24:10 +02:00
2014-04-14 23:46:47 +02:00
filt->impl_data = filt->impl->create(input_fmt, input_fmt, max_width, max_height,
threads != RARCH_SOFTFILTER_THREADS_AUTO ? threads : 1, cpu_features);
if (!filt->impl_data)
goto error;
threads = filt->impl->query_num_threads(filt->impl_data);
filt->packets = (struct softfilter_work_packet*)calloc(threads, sizeof(*filt->packets));
if (!filt->packets)
goto error;
filt->threads = threads;
return filt;
error:
rarch_softfilter_free(filt);
return NULL;
}
void rarch_softfilter_free(rarch_softfilter_t *filt)
{
if (!filt)
return;
2014-04-14 23:46:47 +02:00
free(filt->packets);
if (filt->impl && filt->impl_data)
filt->impl->destroy(filt->impl_data);
if (filt->lib)
dylib_close(filt->lib);
free(filt);
}
void rarch_softfilter_get_max_output_size(rarch_softfilter_t *filt,
unsigned *width, unsigned *height)
{
2014-04-14 23:24:10 +02:00
rarch_softfilter_get_output_size(filt, width, height, filt->max_width, filt->max_height);
}
void rarch_softfilter_get_output_size(rarch_softfilter_t *filt,
unsigned *out_width, unsigned *out_height,
unsigned width, unsigned height)
{
2014-04-14 23:24:10 +02:00
filt->impl->query_output_size(filt->impl_data, out_width, out_height, width, height);
}
enum retro_pixel_format rarch_softfilter_get_output_format(rarch_softfilter_t *filt)
{
return filt->out_pix_fmt;
}
void rarch_softfilter_process(rarch_softfilter_t *filt,
void *output, size_t output_stride,
const void *input, unsigned width, unsigned height, size_t input_stride)
{
2014-04-14 23:46:47 +02:00
unsigned i;
filt->impl->process(filt->impl_data, filt->packets,
output, output_stride, input, width, height, input_stride);
// TODO: Move to worker threads.
for (i = 0; i < filt->threads; i++)
filt->packets[i].work(filt->impl_data, filt->packets[i].thread_data);
}