summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-10-15 21:41:58 +0200
committerwm4 <wm4@nowhere>2013-10-15 21:53:13 +0200
commit1b8eeeb8cc05563331ac2a76897eb168baa72e7c (patch)
tree58c1a4999bf09ea09118576872db43ac01063a03
parent97770473d0bd8f31f7fe6ff38259be1585c05e44 (diff)
downloadmpv-1b8eeeb8cc05563331ac2a76897eb168baa72e7c.tar.bz2
mpv-1b8eeeb8cc05563331ac2a76897eb168baa72e7c.tar.xz
tech-overview.txt: reflect talloc/TA changes
-rw-r--r--DOCS/tech-overview.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/DOCS/tech-overview.txt b/DOCS/tech-overview.txt
index d83b00c829..cc4c8ecaae 100644
--- a/DOCS/tech-overview.txt
+++ b/DOCS/tech-overview.txt
@@ -76,6 +76,12 @@ talloc.h & talloc.c:
replacement. It works on top of system malloc and provides additional
features that are supposed to make memory management easier.
+ Warning: actually, we're not using talloc anymore. talloc in mpv has been
+ replaced by a custom re-implementation (TA in ta/). It provides
+ some talloc emulation (just the parts needed by mpv). We will get
+ rid of the talloc emulation later and use TA natively.
+ (See ta/README for details.)
+
mpvcore/mp_core.h:
Data structures for mplayer.c and command.c. They are usually not accessed
by other parts of mpv for the sake of modularization.