# HG changeset patch # User mstorsjo # Date 1277724094 0 # Node ID 83978c1b97397ec575ecf4e0d4a3c227540e0eda # Parent 52bff8f1701f8525d9e4e7782b7076d0795e87d1 rtpdec: Move space_chars from avformat/internal to rtpdec Patch by Josh Allmann, joshua dot allmann at gmail diff -r 52bff8f1701f -r 83978c1b9739 internal.h --- 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 */ diff -r 52bff8f1701f -r 83978c1b9739 rtpdec.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; diff -r 52bff8f1701f -r 83978c1b9739 rtpdec_mpeg4.c --- 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