# HG changeset patch # User diego # Date 1234136098 0 # Node ID dd42a94023eb50c766941fdb81fd1e817ec60190 # Parent a6849222fccc659948f95e934c3b6058989d0b6a cosmetics: typo/grammar fixes in doxygen and other comments diff -r a6849222fccc -r dd42a94023eb audiointerleave.h --- a/audiointerleave.h Sun Feb 08 22:06:55 2009 +0000 +++ b/audiointerleave.h Sun Feb 08 23:34:58 2009 +0000 @@ -1,5 +1,5 @@ /* - * Audio Interleaving prototypes and declarations + * audio interleaving prototypes and declarations * * Copyright (c) 2009 Baptiste Coudurier * @@ -28,10 +28,10 @@ typedef struct { AVFifoBuffer fifo; - unsigned fifo_size; ///< current fifo size allocated + unsigned fifo_size; ///< size of currently allocated FIFO uint64_t dts; ///< current dts int sample_size; ///< size of one sample all channels included - const int *samples_per_frame; ///< must be 0 terminated + const int *samples_per_frame; ///< must be 0-terminated const int *samples; ///< current samples per frame, pointer to samples_per_frame AVRational time_base; ///< time base of output audio packets } AudioInterleaveContext; @@ -41,9 +41,9 @@ int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt); /** - * Rechunk audio pcm packets per AudioInterleaveContext->samples_per_frame + * Rechunk audio PCM packets per AudioInterleaveContext->samples_per_frame * and interleave them correctly. - * AVStream->priv_data first element must be AudioInterleaveContext + * The first element of AVStream->priv_data must be AudioInterleaveContext * when using this function. * * @param get_packet function will output a packet when streams are correctly interleaved. @@ -53,4 +53,4 @@ int (*get_packet)(AVFormatContext *, AVPacket *, AVPacket *, int), int (*compare_ts)(AVFormatContext *, AVPacket *, AVPacket *)); -#endif // AVFORMAT_AUDIOINTERLEAVE_H +#endif /* AVFORMAT_AUDIOINTERLEAVE_H */