diff options
author | James Zern <jzern@google.com> | 2015-06-15 23:04:45 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-16 12:13:43 +0200 |
commit | 202188a26c1a860355894020fe7a29598b5bb9c9 (patch) | |
tree | 278b5c59eb7ab4063fcf3905979afd6ec241cfc9 /doc | |
parent | 907ac20aa29341e49a4f89ff3d4240d92f9a0cb9 (diff) | |
download | ffmpeg-202188a26c1a860355894020fe7a29598b5bb9c9.tar.gz |
doc/muxers.texi: properly insert {}s in example
use '@{' / '@}', fixes compile errors:
*** '{' without macro. Before: 1:-'.'}
*** '}' without opening '{' before:
since:
907ac20 avformat/hlsenc: added HLS encryption
Signed-off-by: James Zern <jzern@google.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/muxers.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi index 1dd7d06761..22a8eb7601 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -310,7 +310,7 @@ http://server/file.key Example shell script: @example #!/bin/sh -BASE_URL=${1:-'.'} +BASE_URL=$@{1:-'.'@} openssl rand 16 > file.key echo $BASE_URL/file.key > file.keyinfo echo file.key >> file.keyinfo |