summaryrefslogtreecommitdiff
path: root/src/writer.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2011-04-20 14:31:37 (GMT)
committerChristian Pointner <equinox@helsinki.at>2011-04-20 14:31:37 (GMT)
commitc8bc6703879da5a96dbc1319a07fa307cf1892f1 (patch)
tree0609dcb236987385401664ffc3a3b5082c042f02 /src/writer.h
parent011afcdbf0614cc61dd4022448122fe40cfa39ff (diff)
added option for post processing
Diffstat (limited to 'src/writer.h')
-rw-r--r--src/writer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/writer.h b/src/writer.h
index e732b28..7e10e82 100644
--- a/src/writer.h
+++ b/src/writer.h
@@ -46,6 +46,7 @@ struct writer_struct {
mode_t mode_;
GstClockTime interval_;
GstClockTime offset_;
+ const char* post_process_;
file_list_t files_;
file_t* current_;
file_t* next_;
@@ -53,7 +54,7 @@ struct writer_struct {
};
typedef struct writer_struct writer_t;
-int writer_init(writer_t* writer, GMainLoop *loop, const char* name_format, mode_t mode, const char* output_dir, int interval, int offset);
+int writer_init(writer_t* writer, GMainLoop *loop, const char* name_format, mode_t mode, const char* output_dir, int interval, int offset, const char* post_process);
int writer_start(writer_t* writer);
void writer_stop(writer_t* writer);