diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-07-16 19:10:28 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-07-17 00:51:43 +0200 |
commit | 0092bcdf06f240deed890c0d29a95b86f82fe2ee (patch) | |
tree | b0a89f3940fbe999ffd3f459e449a25aa8e20e56 | |
parent | 5ceffb1bf648543785f19380090b4e74827bd377 (diff) | |
download | ffmpeg-0092bcdf06f240deed890c0d29a95b86f82fe2ee.tar.gz |
lavc/avcodec.h: fix various typos in av_bitstream_filter_filter() docs
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 71bb7d977f..4b462fa5f8 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -4705,10 +4705,10 @@ AVBitStreamFilterContext *av_bitstream_filter_init(const char *name); * If the return value is positive, an output buffer is allocated and * is availble in *poutbuf, and is distinct from the input buffer. * - * If the return value is 0, the output output buffer is not allocated - * and the output buffer should be considered identical to the input - * buffer, or in case *poutbuf was set it points to the input buffer - * (not necessarily to its starting address). + * If the return value is 0, the output buffer is not allocated and + * should be considered identical to the input buffer, or in case + * *poutbuf was set it points to the input buffer (not necessarily to + * its starting address). */ int av_bitstream_filter_filter(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args, |