Add FFMPEG_ prefix to all multiple inclusion guards.

Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2007-10-17 09:37:46 +00:00
parent 6a03549e8a
commit 5b21bdabe4
175 changed files with 528 additions and 529 deletions
+3 -3
View File
@@ -21,8 +21,8 @@
* A very simple circular buffer FIFO implementation.
*/
#ifndef FIFO_H
#define FIFO_H
#ifndef FFMPEG_FIFO_H
#define FFMPEG_FIFO_H
#include <stdint.h>
@@ -99,4 +99,4 @@ static inline uint8_t av_fifo_peek(AVFifoBuffer *f, int offs)
ptr -= f->end - f->buffer;
return *ptr;
}
#endif /* FIFO_H */
#endif /* FFMPEG_FIFO_H */