[FFmpeg-soc] [soc]: r5198 - in concat/libavformat: concat.c m3u.c playlist.c playlist.h pls.c xspf.c
gkovacs
subversion at mplayerhq.hu
Thu Aug 20 16:28:15 CEST 2009
Author: gkovacs
Date: Thu Aug 20 16:28:14 2009
New Revision: 5198
Log:
move non-public headers out of playlist.h
Modified:
concat/libavformat/concat.c
concat/libavformat/m3u.c
concat/libavformat/playlist.c
concat/libavformat/playlist.h
concat/libavformat/pls.c
concat/libavformat/xspf.c
Modified: concat/libavformat/concat.c
==============================================================================
--- concat/libavformat/concat.c Thu Aug 20 16:18:17 2009 (r5197)
+++ concat/libavformat/concat.c Thu Aug 20 16:28:14 2009 (r5198)
@@ -31,6 +31,9 @@
*/
#include "concat.h"
+#include "avformat.h"
+#include "riff.h"
+#include "libavutil/avstring.h"
// The FFmpeg codecs we support, and the IDs they have in the file
static const AVCodecTag codec_concat_tags[] = {
Modified: concat/libavformat/m3u.c
==============================================================================
--- concat/libavformat/m3u.c Thu Aug 20 16:18:17 2009 (r5197)
+++ concat/libavformat/m3u.c Thu Aug 20 16:28:14 2009 (r5198)
@@ -26,6 +26,9 @@
*/
#include "concatgen.h"
+#include "riff.h"
+#include "libavutil/avstring.h"
+#include "internal.h"
/* The ffmpeg codecs we support, and the IDs they have in the file */
static const AVCodecTag codec_m3u_tags[] = {
Modified: concat/libavformat/playlist.c
==============================================================================
--- concat/libavformat/playlist.c Thu Aug 20 16:18:17 2009 (r5197)
+++ concat/libavformat/playlist.c Thu Aug 20 16:28:14 2009 (r5198)
@@ -31,6 +31,10 @@
*/
#include "playlist.h"
+#include "riff.h"
+#include "libavutil/avstring.h"
+#include "internal.h"
+#include "concat.h"
AVFormatContext *ff_playlist_alloc_formatcontext(char *filename)
{
Modified: concat/libavformat/playlist.h
==============================================================================
--- concat/libavformat/playlist.h Thu Aug 20 16:18:17 2009 (r5197)
+++ concat/libavformat/playlist.h Thu Aug 20 16:28:14 2009 (r5198)
@@ -35,10 +35,6 @@
#include <libgen.h>
#include "avformat.h"
-#include "riff.h"
-#include "libavutil/avstring.h"
-#include "internal.h"
-#include "concat.h"
/** @struct PlaylistContext
* @brief Represents the playlist and contains PlayElem for each playlist item.
Modified: concat/libavformat/pls.c
==============================================================================
--- concat/libavformat/pls.c Thu Aug 20 16:18:17 2009 (r5197)
+++ concat/libavformat/pls.c Thu Aug 20 16:28:14 2009 (r5198)
@@ -26,6 +26,9 @@
*/
#include "concatgen.h"
+#include "riff.h"
+#include "libavutil/avstring.h"
+#include "internal.h"
/* The ffmpeg codecs we support, and the IDs they have in the file */
static const AVCodecTag codec_pls_tags[] = {
Modified: concat/libavformat/xspf.c
==============================================================================
--- concat/libavformat/xspf.c Thu Aug 20 16:18:17 2009 (r5197)
+++ concat/libavformat/xspf.c Thu Aug 20 16:28:14 2009 (r5198)
@@ -26,6 +26,9 @@
*/
#include "concatgen.h"
+#include "riff.h"
+#include "libavutil/avstring.h"
+#include "internal.h"
/* The ffmpeg codecs we support, and the IDs they have in the file */
static const AVCodecTag codec_xspf_tags[] = {
More information about the FFmpeg-soc
mailing list