diff options
author | Valerii Zapodovnikov <val.zapod.vz@gmail.com> | 2021-05-19 18:33:40 +0300 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2021-05-20 09:25:15 +0530 |
commit | ab658db4d06fa5a3ef5b218e0b86970738e33016 (patch) | |
tree | dbea846c932c1ec7bddf6c072e167cdb7b29c858 /libavformat/hlsenc.c | |
parent | 1642d8188d6e475b12ef41ec9b5775e5abadeb0d (diff) | |
download | ffmpeg-ab658db4d06fa5a3ef5b218e0b86970738e33016.tar.gz |
libavformat/hlsenc: fix typos in comments
Diffstat (limited to 'libavformat/hlsenc.c')
-rw-r--r-- | libavformat/hlsenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 5db7a744b4..151ef6ec8f 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -178,7 +178,7 @@ typedef struct VariantStream { unsigned int nb_streams; int m3u8_created; /* status of media play-list creation */ int is_default; /* default status of audio group */ - const char *language; /* audio lauguage name */ + const char *language; /* audio language name */ const char *agroup; /* audio group name */ const char *sgroup; /* subtitle group name */ const char *ccgroup; /* closed caption group name */ @@ -188,7 +188,7 @@ typedef struct VariantStream { typedef struct ClosedCaptionsStream { const char *ccgroup; /* closed caption group name */ const char *instreamid; /* closed captions INSTREAM-ID */ - const char *language; /* closed captions langauge */ + const char *language; /* closed captions language */ } ClosedCaptionsStream; typedef struct HLSContext { |