diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-30 14:40:22 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-30 14:40:22 +0100 |
commit | e79c3858b35fcc77c68c33b627958e736686957e (patch) | |
tree | 5f933517c2909def4e2930a409b0a460eb4f41fd /doc/filters.texi | |
parent | cd37963684d8ee9819af15ccebe09d84839101dd (diff) | |
parent | 14f031d7ecfabba0ef02776d4516aa3dcb7c40d8 (diff) | |
download | ffmpeg-e79c3858b35fcc77c68c33b627958e736686957e.tar.gz |
Merge commit '14f031d7ecfabba0ef02776d4516aa3dcb7c40d8'
* commit '14f031d7ecfabba0ef02776d4516aa3dcb7c40d8':
dv: use AVStream.index instead of abusing AVStream.id
lavfi: add ashowinfo filter
avcodec: Add a RFC 3389 comfort noise codec
lpc: Add a function for calculating reflection coefficients from samples
lpc: Add a function for calculating reflection coefficients from autocorrelation coefficients
lavr: document upper bound on number of output samples.
lavr: add general API usage doxy
indeo3: remove duplicate capabilities line.
fate: ac3: Add dependencies
Conflicts:
Changelog
doc/filters.texi
libavcodec/Makefile
libavcodec/allcodecs.c
libavcodec/avcodec.h
libavcodec/codec_desc.c
libavcodec/version.h
libavfilter/Makefile
libavfilter/af_ashowinfo.c
libavfilter/allfilters.c
libavfilter/version.h
libavutil/avutil.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 0e77914a6e..a264606d54 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -414,37 +414,34 @@ A description of each shown parameter follows: sequential number of the input frame, starting from 0 @item pts -presentation TimeStamp of the input frame, expressed as a number of -time base units. The time base unit depends on the filter input pad, and -is usually 1/@var{sample_rate}. +Presentation timestamp of the input frame, in time base units; the time base +depends on the filter input pad, and is usually 1/@var{sample_rate}. @item pts_time -presentation TimeStamp of the input frame, expressed as a number of -seconds +presentation timestamp of the input frame in seconds @item pos position of the frame in the input stream, -1 if this information in unavailable and/or meaningless (for example in case of synthetic audio) @item fmt -sample format name +sample format @item chlayout -channel layout description - -@item nb_samples -number of samples (per each channel) contained in the filtered frame +channel layout @item rate sample rate for the audio frame +@item nb_samples +number of samples (per channel) in the frame + @item checksum -Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame +Adler-32 checksum (printed in hexadecimal) of the audio data. For planar audio +the data is treated as if all the planes were concatenated. -@item plane_checksum -Adler-32 checksum (printed in hexadecimal) for each input frame plane, -expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3} @var{c4} @var{c5} -@var{c6} @var{c7}]" +@item plane_checksums +A list of Adler-32 checksums for each data plane. @end table @section asplit |