X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_picture_pool.h;h=d4574dc5a1dfd2d873c6f286ee612462f886bb33;hb=37ae9134495d3aa3e2665a4c3cf90a1443e331ae;hp=d22dbed8e9a6fc05bc5cd8400ade70e258fea03b;hpb=502a2fa8050ae47d34c5635dd0f6ee6fd4ce8242;p=vlc diff --git a/include/vlc_picture_pool.h b/include/vlc_picture_pool.h index d22dbed8e9..d4574dc5a1 100644 --- a/include/vlc_picture_pool.h +++ b/include/vlc_picture_pool.h @@ -1,24 +1,24 @@ /***************************************************************************** * vlc_picture_pool.h: picture pool definitions ***************************************************************************** - * Copyright (C) 2009 the VideoLAN team + * Copyright (C) 2009 VLC authors and VideoLAN * $Id$ * * Authors: Laurent Aimar * - * 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 + * This program 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, * 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 this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #ifndef VLC_PICTURE_POOL_H @@ -62,21 +62,21 @@ typedef struct { * as soon as a picture is unused. They are allowed to modify picture_t::p and * access picture_t::p_sys. */ -VLC_EXPORT( picture_pool_t *, picture_pool_NewExtended, ( const picture_pool_configuration_t * ) LIBVLC_USED ); +VLC_API picture_pool_t * picture_pool_NewExtended( const picture_pool_configuration_t * ) VLC_USED; /** * It creates a picture_pool_t wrapping the given arrays of picture. * * It is provided as convenience. */ -VLC_EXPORT( picture_pool_t *, picture_pool_New, ( int picture_count, picture_t *picture[] ) LIBVLC_USED ); +VLC_API picture_pool_t * picture_pool_New( int picture_count, picture_t *picture[] ) VLC_USED; /** * It creates a picture_pool_t creating images using the given format. * * Provided for convenience. */ -VLC_EXPORT( picture_pool_t *, picture_pool_NewFromFormat, ( const video_format_t *, int picture_count ) LIBVLC_USED ); +VLC_API picture_pool_t * picture_pool_NewFromFormat( const video_format_t *, int picture_count ) VLC_USED; /** * It destroys a pool created by picture_pool_New. @@ -84,14 +84,14 @@ VLC_EXPORT( picture_pool_t *, picture_pool_NewFromFormat, ( const video_format_t * All pictures must already be released to the pool. The pool will then * released them. */ -VLC_EXPORT( void, picture_pool_Delete, ( picture_pool_t * ) ); +VLC_API void picture_pool_Delete( picture_pool_t * ); /** * It retreives a picture_t from a pool. * * The picture must be release by using picture_Release. */ -VLC_EXPORT( picture_t *, picture_pool_Get, ( picture_pool_t * ) LIBVLC_USED ); +VLC_API picture_t * picture_pool_Get( picture_pool_t * ) VLC_USED; /** * It forces the next picture_pool_Get to return a picture even if no @@ -104,7 +104,7 @@ VLC_EXPORT( picture_t *, picture_pool_Get, ( picture_pool_t * ) LIBVLC_USED ); * XXX it should be used with great care, the only reason you may need * it is to workaround a bug. */ -VLC_EXPORT( void, picture_pool_NonEmpty, ( picture_pool_t *, bool reset ) ); +VLC_API void picture_pool_NonEmpty( picture_pool_t *, bool reset ); /** * It reserves picture_count pictures from the given pool and returns @@ -114,12 +114,12 @@ VLC_EXPORT( void, picture_pool_NonEmpty, ( picture_pool_t *, bool reset ) ); * The returned pool must be deleted before the master pool. * When deleted, all pictures return to the master pool. */ -VLC_EXPORT( picture_pool_t *, picture_pool_Reserve, (picture_pool_t *, int picture_count) LIBVLC_USED ); +VLC_API picture_pool_t * picture_pool_Reserve(picture_pool_t *, int picture_count) VLC_USED; /** * It returns the size of the given pool. */ -VLC_EXPORT( int, picture_pool_GetSize, (picture_pool_t *) ); +VLC_API int picture_pool_GetSize(picture_pool_t *); #endif /* VLC_PICTURE_POOL_H */