/* * rharchive * * rharchive is a simple tcp connection proxy which combines the * features of rinetd and 6tunnel. rharchive supports IPv4 and * IPv6 and also supports connections from IPv6 to IPv4 * endpoints and vice versa. * * * Copyright (C) 2010-2011 Christian Pointner * * This file is part of rharchive. * * rharchive is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * rharchive is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with rharchive. If not, see . */ #include #include "writer.h" #include "datatypes.h" #include "log.h" int writer_init(writer_t* writer, const char* name_format, const char* output_dir, int length, int offset) { if(!writer) return -1; writer->sink_ = gst_element_factory_make("filesink", "writer"); if(!writer->sink_) { log_printf(ERROR, "the writer object could not be created. Exiting."); return -1; } g_object_set(G_OBJECT(writer->sink_), "location", "output.ogg", NULL); writer->name_format_ = name_format; writer->output_dir_ = output_dir; writer->length_ = length; writer->offset_ = offset; return 0; } void writer_start(writer_t* writer) { if(!writer) return; // nothing yet } void writer_stop(writer_t* writer) { if(!writer) return; // nothing yet }