Author: gkovacs Date: Wed Aug 26 02:40:18 2009 New Revision: 5276 Log: created playlist.c and playlist.h to store non-pulic portions of playlist API
Added: concat/libavformat/playlist.c concat/libavformat/playlist.h Added: concat/libavformat/playlist.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ concat/libavformat/playlist.c Wed Aug 26 02:40:18 2009 (r5276) @@ -0,0 +1,30 @@ +/* + * Internal functions used to manipulate playlists + * Copyright (c) 2009 Geza Kovacs + * + * This file is part of FFmpeg. + * + * FFmpeg 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. + * + * FFmpeg 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +/** @file libavformat/playlist.c + * @author Geza Kovacs ( gkovacs mit edu ) + * + * @brief Internal functions used to manipulate playlists + * + * @details These functions are used internally for manipulating playlists. + * The public playlist API can be found in avplaylist.h + */ + Added: concat/libavformat/playlist.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ concat/libavformat/playlist.h Wed Aug 26 02:40:18 2009 (r5276) @@ -0,0 +1,37 @@ +/* + * Internal functions used to manipulate playlists + * Copyright (c) 2009 Geza Kovacs + * + * This file is part of FFmpeg. + * + * FFmpeg 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. + * + * FFmpeg 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +/** @file libavformat/playlist.h + * @author Geza Kovacs ( gkovacs mit edu ) + * + * @brief Internal functions used to manipulate playlists + * + * @details These functions are used internally for manipulating playlists. + * The public playlist API can be found in avplaylist.h + */ + +#ifndef AVFORMAT_PLAYLIST_H +#define AVFORMAT_PLAYLIST_H + + + +#endif /* AVFORMAT_PLAYLIST_H */ + _______________________________________________ FFmpeg-soc mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
