Move rtp_get_payload_type()'s unaltered comments to the header file.
authorPanagiotis Issaris <takis.issaris@uhasselt.be>
Sun, 4 Mar 2007 23:27:59 +0000 (23:27 +0000)
committerPanagiotis Issaris <takis.issaris@uhasselt.be>
Sun, 4 Mar 2007 23:27:59 +0000 (23:27 +0000)
Originally committed as revision 8233 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/rtp.c
libavformat/rtp.h

index 919a4b5..e2ad11f 100644 (file)
@@ -207,7 +207,6 @@ int rtp_get_codec_info(AVCodecContext *codec, int payload_type)
     return -1;
 }
 
-/* return < 0 if unknown payload type */
 int rtp_get_payload_type(AVCodecContext *codec)
 {
     int i, payload_type;
index d142fff..d89bf82 100644 (file)
@@ -26,6 +26,8 @@
 
 int rtp_init(void);
 int rtp_get_codec_info(AVCodecContext *codec, int payload_type);
+
+/* return < 0 if unknown payload type */
 int rtp_get_payload_type(AVCodecContext *codec);
 
 typedef struct RTPDemuxContext RTPDemuxContext;