# HG changeset patch # User mstorsjo # Date 1279289572 0 # Node ID 7b8b71ff9a76e80a4353c5eab18d1d3e8dcff484 # Parent 7d8e6562ce1a4280fee707861806f1f7db941ee9 Move SPACE_CHARS back to libavformat/internal.h It will be used by other parts of lavf now. This reverts svn rev 23846. diff -r 7d8e6562ce1a -r 7b8b71ff9a76 internal.h --- 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 */ diff -r 7d8e6562ce1a -r 7b8b71ff9a76 rtpdec.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; diff -r 7d8e6562ce1a -r 7b8b71ff9a76 rtpdec_mpeg4.c --- 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