From 33713473b1051c2d9f487c66a92a5cbdf1277ce3 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 3 Jun 2007 23:58:44 +0200 Subject: [PATCH] ogg_afh.c: add documentation of struct ogg_datasource --- ogg_afh.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ogg_afh.c b/ogg_afh.c index d5c47262..6a66b8e3 100644 --- a/ogg_afh.c +++ b/ogg_afh.c @@ -30,9 +30,13 @@ #define CHUNK_SIZE 32768 static double chunk_time = 0.25; +/** describes a memory-mapped ogg vorbis file */ struct ogg_datasource { + /** the memory mapping */ char *map; + /** this size of the mapping */ off_t numbytes; + /** the current position in the mapping */ off_t fpos; }; -- 2.39.2