summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-15 21:25:05 +0100
committerwm4 <wm4@nowhere>2013-11-15 21:25:05 +0100
commit514c4547702a01adb6f9e6274c40a77c7c511339 (patch)
treec307d2d60094521cee703cbe9510f0ff9037e96b /DOCS
parent2289a479b174efa062fab84a66075b49f27c804d (diff)
downloadmpv-514c4547702a01adb6f9e6274c40a77c7c511339.tar.bz2
mpv-514c4547702a01adb6f9e6274c40a77c7c511339.tar.xz
audio: drop "_NE"/"ne" suffix from audio formats
You get the native format by not appending any suffix to the format. This change includes user-facing names, e.g. for the --format option.
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/en/af.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/DOCS/man/en/af.rst b/DOCS/man/en/af.rst
index 67110f9b47..ab1e7cab8c 100644
--- a/DOCS/man/en/af.rst
+++ b/DOCS/man/en/af.rst
@@ -35,7 +35,7 @@ Available filters are:
This filter is automatically enabled if the audio output does not support
the audio configuration of the file being played.
- It supports only the following sample formats: u8, s16ne, s32ne, floatne.
+ It supports only the following sample formats: u8, s16, s32, float.
``filter-size=<length>``
Length of the filter with respect to the lower sampling rate. (default:
@@ -223,11 +223,11 @@ Available filters are:
Force conversion to this format. Use ``--af=format=format=help`` to get
a list of valid formats. The general form is 'sbe', where 's' denotes
the sign (either 's' for signed or 'u' for unsigned), 'b' denotes the
- number of bits per sample (16, 24 or 32) and 'e' denotes the
- endianness ('le' means little-endian, 'be' big-endian and 'ne' the
+ number of bits per sample (16, 24 or 32) and 'e' denotes the endian
+ ('le' means little-endian, 'be' big-endian and leaving it away the
endianness of the computer mpv is running on). Valid values (amongst
- others) are: 's16le', 'u32be' and 'u24ne'. Exceptions to this rule that
- are also valid format specifiers: u8, s8, floatle, floatbe, floatne,
+ others) are: 's16le', 'u32be' and 'u24'. Exceptions to this rule that
+ are also valid format specifiers: u8, s8, floatle, floatbe, float,
mpeg2, and ac3.
``<srate>``
@@ -553,7 +553,7 @@ Available filters are:
``mpv --af=scaletempo=stride=30:overlap=.50:search=10 media.ogg``
Would tweak the quality and performace parameters.
- ``mpv --af=format=floatne,scaletempo media.ogg``
+ ``mpv --af=format=float,scaletempo media.ogg``
Would make scaletempo use float code. Maybe faster on some
platforms.