summaryrefslogtreecommitdiff
path: root/avconv.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-08-24 13:31:50 +0200
committerDiego Biurrun <diego@biurrun.de>2012-10-12 20:56:54 +0200
commitc1ef30a6ba2cdc15147c4e80766e9bda629ffc1d (patch)
treedacd008cb6db7e5d2794770f2469acf6fd5dc4af /avconv.h
parentd5c62122a7b26704bf867a1262df358623bf5edf (diff)
De-doxygenize some top-level files
Diffstat (limited to 'avconv.h')
-rw-r--r--avconv.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/avconv.h b/avconv.h
index d546594a8e..11e846261f 100644
--- a/avconv.h
+++ b/avconv.h
@@ -51,21 +51,19 @@
/* select an input stream for an output stream */
typedef struct StreamMap {
- int disabled; /** 1 is this mapping is disabled by a negative map */
+ int disabled; /* 1 is this mapping is disabled by a negative map */
int file_index;
int stream_index;
int sync_file_index;
int sync_stream_index;
- char *linklabel; /** name of an output link, for mapping lavfi outputs */
+ char *linklabel; /* name of an output link, for mapping lavfi outputs */
} StreamMap;
-/**
- * select an input file for an output file
- */
+/* select an input file for an output file */
typedef struct MetadataMap {
- int file; ///< file index
- char type; ///< type of metadata to copy -- (g)lobal, (s)tream, (c)hapter or (p)rogram
- int index; ///< stream/chapter/program number
+ int file; // file index
+ char type; // type of metadata to copy -- (g)lobal, (s)tream, (c)hapter or (p)rogram
+ int index; // stream/chapter/program number
} MetadataMap;
typedef struct OptionsContext {