changeset 6262:7b8b71ff9a76 libavformat

Move SPACE_CHARS back to libavformat/internal.h It will be used by other parts of lavf now. This reverts svn rev 23846.
author mstorsjo
date Fri, 16 Jul 2010 14:12:52 +0000
parents 7d8e6562ce1a
children 89adb1f9ff50
files internal.h rtpdec.h rtpdec_mpeg4.c
diffstat 3 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/internal.h	Thu Jul 15 11:43:09 2010 +0000
+++ b/internal.h	Fri Jul 16 14:12:52 2010 +0000
@@ -167,4 +167,6 @@
  */
 void ff_put_v(ByteIOContext *bc, uint64_t val);
 
+#define SPACE_CHARS " \t\r\n"
+
 #endif /* AVFORMAT_INTERNAL_H */
--- a/rtpdec.h	Thu Jul 15 11:43:09 2010 +0000
+++ b/rtpdec.h	Fri Jul 16 14:12:52 2010 +0000
@@ -26,8 +26,6 @@
 #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	Thu Jul 15 11:43:09 2010 +0000
+++ b/rtpdec_mpeg4.c	Fri Jul 16 14:12:52 2010 +0000
@@ -28,6 +28,7 @@
  */
 
 #include "rtpdec_mpeg4.h"
+#include "internal.h"
 #include "libavutil/avstring.h"
 #include "libavcodec/get_bits.h"
 #include <strings.h>