summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornanahi <130121847+na-na-hi@users.noreply.github.com>2024-03-06 23:27:44 -0500
committersfan5 <sfan5@live.de>2024-03-11 21:01:01 +0100
commit7b784b9b760d642c4d8142cd573e7be5f36923fe (patch)
tree54ac672c06749e5f6ca43ee998b673bab2ebc96d
parent1bf821ebdc5c4775fe4bdbba994259c53463fc69 (diff)
downloadmpv-7b784b9b760d642c4d8142cd573e7be5f36923fe.tar.bz2
mpv-7b784b9b760d642c4d8142cd573e7be5f36923fe.tar.xz
DOCS/tech-overview.txt: fix function/member/header names
Just to be exact.
-rw-r--r--DOCS/tech-overview.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/DOCS/tech-overview.txt b/DOCS/tech-overview.txt
index 1e4002817f..50a156fd02 100644
--- a/DOCS/tech-overview.txt
+++ b/DOCS/tech-overview.txt
@@ -11,7 +11,7 @@ player/*.c:
* main():
* basic initializations (e.g. init_libav() and more)
* pre-parse command line (verbosity level, config file locations)
- * load config files (parse_cfgfiles())
+ * load config files (mp_parse_cfgfiles())
* parse command line, add files from the command line to playlist
(m_config_parse_mp_command_line())
* check help options etc. (call handle_help_options()), possibly exit
@@ -45,7 +45,7 @@ player/*.c:
Things worth saying about the playback core:
- most state is in MPContext (core.h), which is not available to the
subsystems (and should not be made available)
- - the currently played tracks are in mpctx->current_tracks, and decoder
+ - the currently played tracks are in mpctx->current_track, and decoder
state in track.dec/d_sub
- the other subsystems rarely call back into the frontend, and the frontend
polls them instead (probably a good thing)
@@ -174,7 +174,7 @@ stream/*:
demux/:
Demuxers split data streams into audio/video/sub streams, which in turn
- are split in packets. Packets (see demux_packet.h) are mostly byte chunks
+ are split in packets. Packets (see packet.h) are mostly byte chunks
tagged with a playback time (PTS). These packets are passed to the decoders.
Most demuxers have been removed from this fork, and the only important and