changeset 6186:83978c1b9739 libavformat

rtpdec: Move space_chars from avformat/internal to rtpdec Patch by Josh Allmann, joshua dot allmann at gmail
author mstorsjo
date Mon, 28 Jun 2010 11:21:34 +0000
parents 52bff8f1701f
children c4c35a9d4ab5
files internal.h rtpdec.h rtpdec_mpeg4.c
diffstat 3 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/internal.h	Mon Jun 28 08:04:52 2010 +0000
+++ b/internal.h	Mon Jun 28 11:21:34 2010 +0000
@@ -157,6 +157,4 @@
 int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
                      AVFormatContext *src);
 
-#define SPACE_CHARS " \t\r\n"
-
 #endif /* AVFORMAT_INTERNAL_H */
--- a/rtpdec.h	Mon Jun 28 08:04:52 2010 +0000
+++ b/rtpdec.h	Mon Jun 28 11:21:34 2010 +0000
@@ -26,6 +26,8 @@
 #include "avformat.h"
 #include "rtp.h"
 
+#define SPACE_CHARS " \t\r\n"
+
 typedef struct PayloadContext PayloadContext;
 typedef struct RTPDynamicProtocolHandler_s RTPDynamicProtocolHandler;
 
--- a/rtpdec_mpeg4.c	Mon Jun 28 08:04:52 2010 +0000
+++ b/rtpdec_mpeg4.c	Mon Jun 28 11:21:34 2010 +0000
@@ -28,7 +28,6 @@
  */
 
 #include "rtpdec_mpeg4.h"
-#include "internal.h"
 #include "libavutil/avstring.h"
 #include "libavcodec/get_bits.h"
 #include <strings.h>