# HG changeset patch # User ivo # Date 1152955124 0 # Node ID e84360ee61c9a75a7e90b9304090ba38a5a093f2 # Parent aca5ce3701e930370f9a22b56f07614618fdcf09 new black frame detection filter by Brian J. Murrell, Julian Hall and me. diff -r aca5ce3701e9 -r e84360ee61c9 AUTHORS --- a/AUTHORS Fri Jul 14 23:06:58 2006 +0000 +++ b/AUTHORS Sat Jul 15 09:18:44 2006 +0000 @@ -338,6 +338,9 @@ * unsharp video filter * XviD encoding support +Hall, Julian + * black frame detection filter (vf_blackframe) + Hammelmann, Jürgen * TOOLS/mencvcd author @@ -572,6 +575,9 @@ Mueller, Steven * first implementation of live changing playback speed +Murrel, Brian J. + * black frame detection filter (vf_blackframe) + Neundorf, Alexander * raw DV demuxer * demuxer packet refcounting @@ -642,6 +648,7 @@ * vo_pnm video output driver * vo_md5sum video output driver * af_ladspa LADSPA plugin loader + * vf_blackframe cleanup and simplification Ran, Lu * Chinese documentation translation diff -r aca5ce3701e9 -r e84360ee61c9 DOCS/man/en/mplayer.1 --- a/DOCS/man/en/mplayer.1 Fri Jul 14 23:06:58 2006 +0000 +++ b/DOCS/man/en/mplayer.1 Sat Jul 15 09:18:44 2006 +0000 @@ -6259,6 +6259,17 @@ Only useful with the \-ass option. .RE . +.TP +.B blackframe[=amount:threshold] +Detect frames that are (almost) completely black. +Can be useful to detect chapter transitions or commercials. +.RSs +.IPs +percentage of the pixels that have to be below the threshold (default: 98) +.IPs +threshold below which a pixel value is considered black (default: 32) +.RE +. . . .SH "GENERAL ENCODING OPTIONS (MENCODER ONLY)" diff -r aca5ce3701e9 -r e84360ee61c9 DOCS/tech/MAINTAINERS --- a/DOCS/tech/MAINTAINERS Fri Jul 14 23:06:58 2006 +0000 +++ b/DOCS/tech/MAINTAINERS Sat Jul 15 09:18:44 2006 +0000 @@ -125,6 +125,7 @@ video filters: * general: Richard Felker, Michael Niedermayer * vf_filmdint.c - Zoltan Hidvegi + * vf_blackframe.c - Ivo van Poorten audio filters: * general: Alex Beregszaszi diff -r aca5ce3701e9 -r e84360ee61c9 libmpcodecs/Makefile --- a/libmpcodecs/Makefile Fri Jul 14 23:06:58 2006 +0000 +++ b/libmpcodecs/Makefile Sat Jul 15 09:18:44 2006 +0000 @@ -120,6 +120,7 @@ pullup.c \ vf_1bpp.c \ vf_2xsai.c \ + vf_blackframe.c \ vf_bmovl.c \ vf_boxblur.c \ vf_crop.c \ diff -r aca5ce3701e9 -r e84360ee61c9 libmpcodecs/vf.c --- a/libmpcodecs/vf.c Fri Jul 14 23:06:58 2006 +0000 +++ b/libmpcodecs/vf.c Sat Jul 15 09:18:44 2006 +0000 @@ -103,6 +103,7 @@ extern vf_info_t vf_info_ass; extern vf_info_t vf_info_mcdeint; extern vf_info_t vf_info_yadif; +extern vf_info_t vf_info_blackframe; // list of available filters: static vf_info_t* filter_list[]={ @@ -199,6 +200,7 @@ &vf_info_ass, #endif &vf_info_yadif, + &vf_info_blackframe, NULL }; diff -r aca5ce3701e9 -r e84360ee61c9 libmpcodecs/vf_blackframe.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libmpcodecs/vf_blackframe.c Sat Jul 15 09:18:44 2006 +0000 @@ -0,0 +1,141 @@ +/* vf_blackframe.c - detect frames that are (almost) black + * + * $Id$ + * + * search for black frames to detect scene transitions + * (c) 2006 Julian Hall + * + * based on code designed for skipping commercials + * (c) 2002-2003 Brian J. Murrell + * + * cleanup, simplify, speedup (c) 2006 by Ivo van Poorten + * + * This program 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 Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include +#include +#include + +#include "config.h" +#include "mp_msg.h" + +#include "img_format.h" +#include "mp_image.h" +#include "vf.h" + +struct vf_priv_s { + unsigned int bamount, bthresh, frame; +}; + +static int config(struct vf_instance_s* 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 int query_format(struct vf_instance_s *vf, unsigned fmt) { + switch(fmt) { + case IMGFMT_YVU9: + case IMGFMT_IF09: + case IMGFMT_YV12: + case IMGFMT_I420: + case IMGFMT_IYUV: + case IMGFMT_CLPL: + case IMGFMT_Y800: + case IMGFMT_Y8: + case IMGFMT_NV12: + case IMGFMT_NV21: + case IMGFMT_444P: + case IMGFMT_422P: + case IMGFMT_411P: + case IMGFMT_HM12: + return vf_next_query_format(vf, fmt); + } + return 0; +} + +static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){ + mp_image_t *dmpi; + int x, y; + int nblack=0, pblack=0; + unsigned char *yplane = mpi->planes[0]; + unsigned int ystride = mpi->stride[0]; + int w = mpi->w, h = mpi->h; + int bthresh = vf->priv->bthresh; + int bamount = vf->priv->bamount; + + for (y=1; y<=h; y++) { + for (x=0; x= bamount) + mp_msg(MSGT_VFILTER, MSGL_INFO,"\nBlack frame: frame %u (%2d%%)\n", + vf->priv->frame, pblack); + + vf->priv->frame++; + + dmpi = vf_get_image(vf->next, mpi->imgfmt, MP_IMGTYPE_EXPORT, 0, + mpi->width, mpi->height); + dmpi->planes[0] = mpi->planes[0]; + dmpi->stride[0] = mpi->stride[0]; + dmpi->planes[1] = mpi->planes[1]; + dmpi->stride[1] = mpi->stride[1]; + dmpi->planes[2] = mpi->planes[2]; + dmpi->stride[2] = mpi->stride[2]; + + vf_clone_mpi_attributes(dmpi, mpi); + + return vf_next_put_image(vf, dmpi, pts); +} + +static int control(struct vf_instance_s* vf, int request, void* data){ + return vf_next_control(vf,request,data); +} + +static void uninit(struct vf_instance_s *vf) { + if (vf->priv) free(vf->priv); +} + +static int open(vf_instance_t *vf, char* args){ + vf->priv = malloc(sizeof(struct vf_priv_s)); + if (!vf->priv) return 0; + + vf->config = config; + vf->put_image = put_image; + vf->control = control; + vf->uninit = uninit; + vf->query_format = query_format; + + vf->priv->bamount = 98; + vf->priv->bthresh = 0x20; + vf->priv->frame = 0; + + if (args) + sscanf(args, "%u:%u", &vf->priv->bamount, &vf->priv->bthresh); + return 1; +} + +vf_info_t vf_info_blackframe = { + "detects black frames", + "blackframe", + "Brian J. Murrell, Julian Hall, Ivo van Poorten", + "Useful for detecting scene transitions", + open, + NULL +};