[FFmpeg-cvslog] r23846 - in trunk/libavformat: internal.h rtpdec.h rtpdec_mpeg4.c
mstorsjo
subversion
Mon Jun 28 13:21:34 CEST 2010
Author: mstorsjo
Date: Mon Jun 28 13:21:34 2010
New Revision: 23846
Log:
rtpdec: Move space_chars from avformat/internal to rtpdec
Patch by Josh Allmann, joshua dot allmann at gmail
Modified:
trunk/libavformat/internal.h
trunk/libavformat/rtpdec.h
trunk/libavformat/rtpdec_mpeg4.c
Modified: trunk/libavformat/internal.h
==============================================================================
--- trunk/libavformat/internal.h Mon Jun 28 12:56:16 2010 (r23845)
+++ trunk/libavformat/internal.h Mon Jun 28 13:21:34 2010 (r23846)
@@ -157,6 +157,4 @@ void ff_sdp_write_media(char *buff, int
int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
AVFormatContext *src);
-#define SPACE_CHARS " \t\r\n"
-
#endif /* AVFORMAT_INTERNAL_H */
Modified: trunk/libavformat/rtpdec.h
==============================================================================
--- trunk/libavformat/rtpdec.h Mon Jun 28 12:56:16 2010 (r23845)
+++ trunk/libavformat/rtpdec.h Mon Jun 28 13:21:34 2010 (r23846)
@@ -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;
Modified: trunk/libavformat/rtpdec_mpeg4.c
==============================================================================
--- trunk/libavformat/rtpdec_mpeg4.c Mon Jun 28 12:56:16 2010 (r23845)
+++ trunk/libavformat/rtpdec_mpeg4.c Mon Jun 28 13:21:34 2010 (r23846)
@@ -28,7 +28,6 @@
*/
#include "rtpdec_mpeg4.h"
-#include "internal.h"
#include "libavutil/avstring.h"
#include "libavcodec/get_bits.h"
#include <strings.h>
More information about the ffmpeg-cvslog
mailing list