[MPlayer-dev-eng] [PATCH] Enable teletext for v4lv1 in configure

Diego Biurrun diego at biurrun.de
Wed Aug 1 10:52:20 CEST 2007


On Wed, Aug 01, 2007 at 08:20:06AM +0700, Vladimir Voroshilov wrote:
> 
> This patch enables teletext support for V4Lv1 in configure (required
> changes in tvi_v4l.c are already done).
> 
> I've split one "if" into two, because i want to add also bt848 support later.

Commit.

> --- configure	(revision 23952)
> +++ configure	(working copy)
> @@ -6740,10 +6740,11 @@
>  
>  echocheck "TV teletext interface"
>  if test "$_tv_teletext" = auto ; then
> - if test "$_tv_v4l2" = yes && test "$_freetype" = yes ; then
> -  _tv_teletext=yes
> - else
> -  _tv_teletext=no
> + _tv_teletext=no
> + if "$_freetype" = yes ; then
> +  if test "$_tv_v4l2" = yes || test "$_v4l" = yes ; then
> +   _tv_teletext=yes
> +  fi
>   fi
>  fi

While you're at it, please fix the crap one space indentation.

Diego



More information about the MPlayer-dev-eng mailing list