Remove unused Processor::process_begin; some docs.
[dcpomatic.git] / src / lib / filter_graph.h
index 5c0c83d165d56eb68fe87ae329f7c8ff90476c73..3842e9f7dbb15be137da617ef1e6c329a5791492 100644 (file)
 
 */
 
+/** @file src/lib/filter_graph.h
+ *  @brief A graph of FFmpeg filters.
+ */
+
 #ifndef DVDOMATIC_FILTER_GRAPH_H
 #define DVDOMATIC_FILTER_GRAPH_H
 
@@ -26,6 +30,9 @@ class Image;
 class VideoFilter;
 class FFmpegDecoder;
 
+/** @class FilterGraph
+ *  @brief A graph of FFmpeg filters.
+ */
 class FilterGraph
 {
 public:
@@ -37,8 +44,8 @@ public:
 private:
        AVFilterContext* _buffer_src_context;
        AVFilterContext* _buffer_sink_context;
-       Size _size;
-       AVPixelFormat _pixel_format;
+       Size _size; ///< size of the images that this chain can process
+       AVPixelFormat _pixel_format; ///< pixel format of the images that this chain can process
 };
 
 #endif