diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-24 13:31:50 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-12 20:56:54 +0200 |
commit | c1ef30a6ba2cdc15147c4e80766e9bda629ffc1d (patch) | |
tree | dacd008cb6db7e5d2794770f2469acf6fd5dc4af /avconv.h | |
parent | d5c62122a7b26704bf867a1262df358623bf5edf (diff) | |
download | ffmpeg-c1ef30a6ba2cdc15147c4e80766e9bda629ffc1d.tar.gz |
De-doxygenize some top-level files
Diffstat (limited to 'avconv.h')
-rw-r--r-- | avconv.h | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -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 { |