[FFmpeg-cvslog] r24265 - in trunk/libavformat: internal.h rtpdec.h rtpdec_mpeg4.c
mstorsjo
subversion
Fri Jul 16 16:12:52 CEST 2010
Author: mstorsjo
Date: Fri Jul 16 16:12:52 2010
New Revision: 24265
Log:
Move SPACE_CHARS back to libavformat/internal.h
It will be used by other parts of lavf now. This reverts svn rev 23846.
Modified:
trunk/libavformat/internal.h
trunk/libavformat/rtpdec.h
trunk/libavformat/rtpdec_mpeg4.c
Modified: trunk/libavformat/internal.h
==============================================================================
--- trunk/libavformat/internal.h Fri Jul 16 15:02:48 2010 (r24264)
+++ trunk/libavformat/internal.h Fri Jul 16 16:12:52 2010 (r24265)
@@ -167,4 +167,6 @@ int ff_get_v_length(uint64_t val);
*/
void ff_put_v(ByteIOContext *bc, uint64_t val);
+#define SPACE_CHARS " \t\r\n"
+
#endif /* AVFORMAT_INTERNAL_H */
Modified: trunk/libavformat/rtpdec.h
==============================================================================
--- trunk/libavformat/rtpdec.h Fri Jul 16 15:02:48 2010 (r24264)
+++ trunk/libavformat/rtpdec.h Fri Jul 16 16:12:52 2010 (r24265)
@@ -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;
Modified: trunk/libavformat/rtpdec_mpeg4.c
==============================================================================
--- trunk/libavformat/rtpdec_mpeg4.c Fri Jul 16 15:02:48 2010 (r24264)
+++ trunk/libavformat/rtpdec_mpeg4.c Fri Jul 16 16:12:52 2010 (r24265)
@@ -28,6 +28,7 @@
*/
#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