summaryrefslogtreecommitdiffstats
path: root/video/filter/vf_noise.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-05 22:56:43 +0100
committerwm4 <wm4@nowhere>2013-12-05 22:58:54 +0100
commit2d0a9c7af081f90d21cc811871bd67bbb6dcfd94 (patch)
tree24cadd837876bccd6c477a17dc81288671ed0392 /video/filter/vf_noise.c
parent66e20ef8ad0c3e3ce420f08fa7849000a4cc060a (diff)
downloadmpv-2d0a9c7af081f90d21cc811871bd67bbb6dcfd94.tar.bz2
mpv-2d0a9c7af081f90d21cc811871bd67bbb6dcfd94.tar.xz
video/filter: remove unneeded config callbacks
They didn't do anything. vf_screenshot.c actually did release the previous image, but that's not really required. At worst you could take a screenshot and get an old frame when there's no new frame yet.
Diffstat (limited to 'video/filter/vf_noise.c')
-rw-r--r--video/filter/vf_noise.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/video/filter/vf_noise.c b/video/filter/vf_noise.c
index d6a845c31f..3160907e19 100644
--- a/video/filter/vf_noise.c
+++ b/video/filter/vf_noise.c
@@ -324,13 +324,6 @@ static void donoise(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, in
if (fp->shiftptr == 3) fp->shiftptr = 0;
}
-static int config(struct vf_instance *vf,
- int width, int height, int d_width, int d_height,
- unsigned int flags, unsigned int outfmt){
-
- return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt);
-}
-
static struct mp_image *filter(struct vf_instance *vf, struct mp_image *mpi)
{
struct mp_image *dmpi = mpi;
@@ -393,7 +386,6 @@ static const unsigned int fmt_list[]={
};
static int vf_open(vf_instance_t *vf){
- vf->config=config;
vf->filter=filter;
vf->query_format=query_format;
vf->uninit=uninit;