Move SPACE_CHARS back to libavformat/internal.h

It will be used by other parts of lavf now. This reverts svn rev 23846.

Originally committed as revision 24265 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Martin Storsjö 2010-07-16 14:12:52 +00:00
parent a5b588bcad
commit 1537817e38
3 changed files with 3 additions and 2 deletions

View File

@ -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 */

View File

@ -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;

View File

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