Commit 24dfd6e7 authored by Andrey Utkin's avatar Andrey Utkin Committed by Michael Niedermayer

avformat/rtspcodes: introduce ff_rtsp_averror()

Currently this is another name for ff_http_averror()
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 315f9e92
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#define AVFORMAT_RTSPCODES_H #define AVFORMAT_RTSPCODES_H
#include "libavutil/common.h" #include "libavutil/common.h"
#include "libavformat/http.h"
/** RTSP handling */ /** RTSP handling */
enum RTSPStatusCode { enum RTSPStatusCode {
...@@ -139,4 +140,10 @@ enum RTSPMethod { ...@@ -139,4 +140,10 @@ enum RTSPMethod {
RECORD, RECORD,
UNKNOWN = -1, UNKNOWN = -1,
}; };
static inline int ff_rtsp_averror(enum RTSPStatusCode status_code, int default_averror)
{
return ff_http_averror(status_code, default_averror);
}
#endif /* AVFORMAT_RTSPCODES_H */ #endif /* AVFORMAT_RTSPCODES_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment