comparison anm.c @ 6330:c4ff37db69e1 libavformat

Fix doxy that refers to the wrong variable.
author michael
date Tue, 27 Jul 2010 15:54:26 +0000
parents 178de7695c6c
children
comparison
equal deleted inserted replaced
6329:614f8591566f 6330:c4ff37db69e1
32 unsigned int nb_records; 32 unsigned int nb_records;
33 int size; 33 int size;
34 } Page; 34 } Page;
35 35
36 typedef struct { 36 typedef struct {
37 unsigned int nb_pages; /** total pages in file */ 37 unsigned int nb_pages; /**< total pages in file */
38 unsigned int nb_records; /** total records in file */ 38 unsigned int nb_records; /**< total records in file */
39 int page_table_offset; 39 int page_table_offset;
40 #define MAX_PAGES 256 /** Deluxe Paint hardcoded value */ 40 #define MAX_PAGES 256 /**< Deluxe Paint hardcoded value */
41 Page pt[MAX_PAGES]; /** page table */ 41 Page pt[MAX_PAGES]; /**< page table */
42 int page; /** current page (or AVERROR_xxx code) */ 42 int page; /**< current page (or AVERROR_xxx code) */
43 int record; /** current record (with in page) */ 43 int record; /**< current record (with in page) */
44 } AnmDemuxContext; 44 } AnmDemuxContext;
45 45
46 #define LPF_TAG MKTAG('L','P','F',' ') 46 #define LPF_TAG MKTAG('L','P','F',' ')
47 #define ANIM_TAG MKTAG('A','N','I','M') 47 #define ANIM_TAG MKTAG('A','N','I','M')
48 48