diff options
author | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2007-06-17 18:59:28 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2007-06-17 18:59:28 +0000 |
commit | efb775777f815f3140f79f58d3f756a3a4831235 (patch) | |
tree | 37b7226a701aae3bd21e2df3c2a709f16f5b02c7 /libavformat | |
parent | 9cafbd6c490624315c5713db9ba960a408d3e73b (diff) | |
download | ffmpeg-efb775777f815f3140f79f58d3f756a3a4831235.tar.gz |
add a comment to indicate which #endif belong to which #define
Originally committed as revision 9356 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/asf.h | 2 | ||||
-rw-r--r-- | libavformat/dv.h | 2 | ||||
-rw-r--r-- | libavformat/mpegts.h | 2 | ||||
-rw-r--r-- | libavformat/nut.h | 2 | ||||
-rw-r--r-- | libavformat/rtspcodes.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/asf.h b/libavformat/asf.h index 6df02c24f1..8387aa50f9 100644 --- a/libavformat/asf.h +++ b/libavformat/asf.h @@ -286,4 +286,4 @@ static const GUID my_guid = { #define ASF_PL_FLAG_KEY_FRAME 0x80 //1000 0000 -#endif +#endif // AVFORMAT_ASF_H diff --git a/libavformat/dv.h b/libavformat/dv.h index e7ad3d53b5..0e33a2f21a 100644 --- a/libavformat/dv.h +++ b/libavformat/dv.h @@ -41,4 +41,4 @@ DVMuxContext* dv_init_mux(AVFormatContext* s); int dv_assemble_frame(DVMuxContext *c, AVStream*, const uint8_t*, int, uint8_t**); void dv_delete_mux(DVMuxContext*); -#endif +#endif // AVFORMAT_DV_H diff --git a/libavformat/mpegts.h b/libavformat/mpegts.h index 178988a994..b2a3299aaf 100644 --- a/libavformat/mpegts.h +++ b/libavformat/mpegts.h @@ -67,4 +67,4 @@ int mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt, const uint8_t *buf, int len); void mpegts_parse_close(MpegTSContext *ts); -#endif +#endif AVFORMAT_MPEGTS_H diff --git a/libavformat/nut.h b/libavformat/nut.h index b18ac2dc0d..d8686524b2 100644 --- a/libavformat/nut.h +++ b/libavformat/nut.h @@ -99,4 +99,4 @@ static unsigned long av_crc04C11DB7_update(unsigned long checksum, const uint8_t return av_crc(av_crc04C11DB7, checksum, buf, len); } -#endif +#endif AVFORMAT_NUT_H diff --git a/libavformat/rtspcodes.h b/libavformat/rtspcodes.h index 8e3b326059..9e4d87bae6 100644 --- a/libavformat/rtspcodes.h +++ b/libavformat/rtspcodes.h @@ -37,4 +37,4 @@ RTSP_STATUS_SERVICE =503, /**< Service Unavailable */ RTSP_STATUS_VERSION =505, /**< RTSP Version not supported */ }; -#endif +#endif // AVFORMAT_RTSPCODES_H |