summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/en/mplayer.16
-rwxr-xr-xconfigure3
-rw-r--r--libvo/vo_matrixview.c1
3 files changed, 5 insertions, 5 deletions
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1
index e801048a64..be3498426d 100644
--- a/DOCS/man/en/mplayer.1
+++ b/DOCS/man/en/mplayer.1
@@ -3971,17 +3971,17 @@ Apart from this the values have the same meaning as for \-vo gl.
.
.TP
.B matrixview
-OpenGL based renderer creating a Matrix-like running-text effect.
+OpenGL-based renderer creating a Matrix-like running-text effect.
.PD 0
.RSs
.IPs cols=<n>
Number of text columns to display.
Very low values (< 16) will probably fail due to scaler limitations.
-Values not divisible be 16 may cause issues as well.
+Values not divisible by 16 may cause issues as well.
.IPs rows=<n>
Number of text rows to display.
Very low values (< 16) will probably fail due to scaler limitations.
-Values not divisible be 16 may cause issues as well.
+Values not divisible by 16 may cause issues as well.
.REss
.
.TP
diff --git a/configure b/configure
index 8669007697..406c5787b5 100755
--- a/configure
+++ b/configure
@@ -6108,7 +6108,8 @@ EOF
_inc_tmp=""
_ld_tmp="-lfribidi"
cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
- if test "$_fribidi" = no ; then
+ if $_fribidiconfig --version > /dev/null 2>&1 &&
+ test "$_fribidi" = no ; then
_inc_tmp="$($_fribidiconfig --cflags)"
_ld_tmp="$($_fribidiconfig --libs)"
cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
diff --git a/libvo/vo_matrixview.c b/libvo/vo_matrixview.c
index 06d599ca66..002494b0bd 100644
--- a/libvo/vo_matrixview.c
+++ b/libvo/vo_matrixview.c
@@ -211,7 +211,6 @@ static int query_format(uint32_t format)
case IMGFMT_BGR15:
case IMGFMT_RGB32:
case IMGFMT_RGB24:
- case IMGFMT_ARGB:
return caps;
default:
break;