Description: Fix typo in code
 Should be through, not throught.
 .
 ffmpegfs (1.98-1) unstable; urgency=low
 .
   * Cool, there's an online revivew on Linux Uprising, you can read it here:
     https://www.linuxuprising.com/2020/03/ffmpegfs-is-fuse-based-filesystem-for.html
   * Feature: HLS: Introducing direct segment access. If e.g. segment
             no. 333 is opened, ffmpegfs will seek to this position and start
             transcoding the segment immediately.
   * Support: No longer creating a user/group ffmpegfs while "make install".
             The user is not really required, just bloats the system's user
             database.
   * Support: Reduced quality of the test video to make the distribution
             archive slimmer. A full HD (1920x1280) video at 60 frames per
             second was a bit of an overkill anyway. 720x400 at 30 fps
             should be enough for everybody.
   * Feature: Cache dir changed to ${XDG_CACHE_HOME:-~/.cache}/ffmpegfs (as
              specified in the XDG Base Directory Specification). Falls back
              to ${HOME:-~/.cache}/ffmpegfs if not defined. Only if executed
              with root privileges, "/var/cache/ffmpegfs" will be used e.g.
              if invoked via /etc/fstab entry).
   * Feature: Changed PTS generation: For DVD/Bluray chapters they will not
              start at 0 for each chapter, but at the real time the chapter
              begins in its title. Fixes #51.
   * Feature: Issue #52 - Added --audiochannels option to select a different
              number of channels. Defaults to 2 (stereo), may be set to 1 to
              create mono files. Set to 0 to keep the original number of
              channels.
   * Bugfix: Issue #46 - Ensure the selected bitrate is used. Files could
             become much larger than expected. There's a strange FFmpeg API
             behaviour behind that, added the solution used in ffmpeg.c to
             fix.
   * Bugfix: Issue #48 - Properly handle incorrectly authored DVDs with
             missing SRI_END_OF_CELL marks after cells.
   * Bugfix: Issue #49 - Avoid creating HLS last segments shorter than
             200 ms, avoid stalls when the total playtime is a multiple of
             the segment size, e.g. 10 seconds.
   * Bugfix: Issue #54 - Made sure no duplicate filenames get created. This
             changes the output name scheme, e.g. if two files xyz.ts and
             xyz.wmv exist and the destination type is mp4, two output files
             named xyz.ts.mp4 and xyz.wmv.mp4 appear. An additional file
             xyz.mp4 will show up with its real name.
             To continue using the old names, add --oldnamescheme=1 to the
             command line.
   * Bugfix: Online help and docs state --autocopy=OFF would turn the
             function off, but this actually was NONE. Changed to match
             documentation.
   * Libav support has been dropped. There is not activity on
     https://git.libav.org/?p=libav.git since 21.08.2019, and some features
     that FFmpegfs required were already lagging behind FFmpeg API.
     Supporting Libav already bound a lot of my time that I could better
     spend on new features or fixes for FFmpegfs.
Author: Norbert Schlia <nschlia@oblivion-software.de>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2020-04-17

--- ffmpegfs-1.98.orig/src/fuseops.cc
+++ ffmpegfs-1.98/src/fuseops.cc
@@ -842,7 +842,7 @@ int make_hls(void * buf, fuse_fill_dir_t
                     "            });\n"
                     "        }\n"
                     "        // hls.js is not supported on platforms that do not have Media Source Extensions (MSE) enabled.\n"
-                    "        // When the browser has built-in HLS support (check using `canPlayType`), we can provide an HLS manifest (i.e. .m3u8 URL) directly to the video element throught the `src` property.\n"
+                    "        // When the browser has built-in HLS support (check using `canPlayType`), we can provide an HLS manifest (i.e. .m3u8 URL) directly to the video element through the `src` property.\n"
                     "        // This is using the built-in support of the plain video element, without using hls.js.\n"
                     "        else if (video.canPlayType(\"application/vnd.apple.mpegurl\")) {\n"
                     "            video.src = \"index_0_av.m3u8\";\n"
