diff options
author | luz.paz <[email protected]> | 2018-02-07 10:54:59 -0500 |
---|---|---|
committer | Scott <[email protected]> | 2018-02-20 18:10:44 +0000 |
commit | 2d1c8541460c2b63d46eb1a278adacee14a55556 (patch) | |
tree | baf9c409edfb51f1a2b649b1f6e2291ff0524b76 /libhb/stream.c | |
parent | 5ce54df39b61c5b104f83d7ce291e67eada56efc (diff) |
Misc. typos
Found via `codespell -q 3 --skip="./gtk/po`
Diffstat (limited to 'libhb/stream.c')
-rw-r--r-- | libhb/stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index 326cb0e4b..06e6c70ab 100644 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -394,7 +394,7 @@ static kind_t ts_stream_kind( hb_stream_t * stream, int idx ) { if ( stream->ts.list[idx].pes_list != -1 ) { - // Retuns kind for the first pes substream in the pes list + // Returns kind for the first pes substream in the pes list // All substreams in a TS stream are the same kind. return stream->pes.list[stream->ts.list[idx].pes_list].stream_kind; } @@ -408,7 +408,7 @@ static kind_t ts_stream_type( hb_stream_t * stream, int idx ) { if ( stream->ts.list[idx].pes_list != -1 ) { - // Retuns stream type for the first pes substream in the pes list + // Returns stream type for the first pes substream in the pes list // All substreams in a TS stream are the same stream type. return stream->pes.list[stream->ts.list[idx].pes_list].stream_type; } |