X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_service.h;h=b1bad7e981a71d3be4824f126a44a57a0c4a757f;hb=bf3264b9e340ba5c11cbf59835a8af3db94e0cc2;hp=0d4e56119d5b54c327c28f9e5df05d56c99292db;hpb=f00476101550ec7d8e863f6516aa83bc1b524570;p=melted diff --git a/src/framework/mlt_service.h b/src/framework/mlt_service.h index 0d4e561..b1bad7e 100644 --- a/src/framework/mlt_service.h +++ b/src/framework/mlt_service.h @@ -3,19 +3,19 @@ * Copyright (C) 2003-2004 Ushodaya Enterprises Limited * Author: Charles Yates * - * This program 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 2 of the License, or - * (at your option) any later version. + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * This library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with self program; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef _MLT_SERVICE_H_ @@ -28,15 +28,15 @@ struct mlt_service_s { - // We're extending properties here + /* We're extending properties here */ struct mlt_properties_s parent; - // Protected virtual + /* Protected virtual */ int ( *get_frame )( mlt_service self, mlt_frame_ptr frame, int index ); mlt_destructor close; void *close_object; - // Private data + /* Private data */ void *local; void *child; }; @@ -62,7 +62,7 @@ extern mlt_filter mlt_service_filter( mlt_service self, int index ); extern void mlt_service_close( mlt_service self ); -// I'm not sure about self one - leaving it out of docs for now (only used in consumer_westley) +/* I'm not sure about self one - leaving it out of docs for now (only used in consumer_westley) */ extern mlt_service mlt_service_get_producer( mlt_service self ); #endif