diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2025-08-01 22:43:23 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2025-08-03 13:48:47 +0200 |
commit | 262d41c8042acfa7ff1da6f256c367be86ecddb2 (patch) | |
tree | a9fb6b7aec94868375cf94f139dcd265158dbf7c /libavformat/segment.c | |
parent | 8d439b24839d486d1fcc858a2a5eb7ecd700e3a9 (diff) | |
download | ffmpeg-262d41c8042acfa7ff1da6f256c367be86ecddb2.tar.gz |
all: fix typos found by codespell
Diffstat (limited to 'libavformat/segment.c')
-rw-r--r-- | libavformat/segment.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/segment.c b/libavformat/segment.c index 65323ec678..05383de841 100644 --- a/libavformat/segment.c +++ b/libavformat/segment.c @@ -72,7 +72,7 @@ typedef struct SegmentContext { const AVClass *class; /**< Class for private options. */ int segment_idx; ///< index of the segment file to write, starting from 0 int segment_idx_wrap; ///< number after which the index wraps - int segment_idx_wrap_nb; ///< number of time the index has wraped + int segment_idx_wrap_nb; ///< number of time the index has wrapped int segment_count; ///< number of segment files already written const AVOutputFormat *oformat; AVFormatContext *avf; @@ -100,11 +100,11 @@ typedef struct SegmentContext { char *times_str; ///< segment times specification string int64_t *times; ///< list of segment interval specification - int nb_times; ///< number of elments in the times array + int nb_times; ///< number of elements in the times array char *frames_str; ///< segment frame numbers specification string int *frames; ///< list of frame number specification - int nb_frames; ///< number of elments in the frames array + int nb_frames; ///< number of elements in the frames array int frame_count; ///< total number of reference frames int segment_frame_count; ///< number of reference frames in the segment |