1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

rtpdec: Move space_chars from avformat/internal to rtpdec

Patch by Josh Allmann, joshua dot allmann at gmail

Originally committed as revision 23846 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Josh Allmann 2010-06-28 11:21:34 +00:00 committed by Martin Storsjö
parent eca9e4035a
commit 8b114d85ba
3 changed files with 2 additions and 3 deletions

View File

@ -157,6 +157,4 @@ void ff_sdp_write_media(char *buff, int size, AVCodecContext *c,
int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt, int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
AVFormatContext *src); AVFormatContext *src);
#define SPACE_CHARS " \t\r\n"
#endif /* AVFORMAT_INTERNAL_H */ #endif /* AVFORMAT_INTERNAL_H */

View File

@ -26,6 +26,8 @@
#include "avformat.h" #include "avformat.h"
#include "rtp.h" #include "rtp.h"
#define SPACE_CHARS " \t\r\n"
typedef struct PayloadContext PayloadContext; typedef struct PayloadContext PayloadContext;
typedef struct RTPDynamicProtocolHandler_s RTPDynamicProtocolHandler; typedef struct RTPDynamicProtocolHandler_s RTPDynamicProtocolHandler;

View File

@ -28,7 +28,6 @@
*/ */
#include "rtpdec_mpeg4.h" #include "rtpdec_mpeg4.h"
#include "internal.h"
#include "libavutil/avstring.h" #include "libavutil/avstring.h"
#include "libavcodec/get_bits.h" #include "libavcodec/get_bits.h"
#include <strings.h> #include <strings.h>