mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-04 06:11:17 +00:00
10 lines
205 B
C
10 lines
205 B
C
|
|
#ifndef _NTSC_FILTER_H
|
|
#define _NTSC_FILTER_H
|
|
#include <stdint.h>
|
|
#include "snes_ntsc/snes_ntsc.h"
|
|
|
|
void ntsc_filter(uint16_t * restrict out, const uint16_t * restrict in, int width, int height);
|
|
|
|
#endif
|