summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.h
diff options
context:
space:
mode:
authorPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-05 13:52:14 +0000
committerPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-05 13:52:14 +0000
commit391fbb656c1b9d73d128e05014da6cb278727350 (patch)
treee07556b816ffb8063f9b7aebdacb38507d22b4f9 /libavformat/rtsp.h
parentd7f654692a14395af7b52c56dd7b35849fc44c5d (diff)
Convert macro+enum into a simple enum: Currently the enum was filled using a
macro that also contained a description for every field, but, that description was not being used anywhere. This changes it, to make the description available as a Doxygen comment. Furthermore, it is now easily parsable by Doxygen, while before it messed up the documentation. Originally committed as revision 8254 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r--libavformat/rtsp.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h
index c08aaa6aca..6dc231366e 100644
--- a/libavformat/rtsp.h
+++ b/libavformat/rtsp.h
@@ -21,12 +21,7 @@
#ifndef RTSP_H
#define RTSP_H
-/* RTSP handling */
-enum RTSPStatusCode {
-#define DEF(n, c, s) c = n,
#include "rtspcodes.h"
-#undef DEF
-};
enum RTSPProtocol {
RTSP_PROTOCOL_RTP_UDP = 0,