Commit 66acccf0 authored by Panagiotis Issaris's avatar Panagiotis Issaris

Make OFFSET() reuse offsetof

Originally committed as revision 6251 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5894991f
...@@ -438,7 +438,7 @@ static const char* context_to_name(void* ptr) { ...@@ -438,7 +438,7 @@ static const char* context_to_name(void* ptr) {
return "NULL"; return "NULL";
} }
#define OFFSET(x) (int)&((AVCodecContext*)0)->x #define OFFSET(x) offsetof(AVCodecContext,x)
#define DEFAULT 0 //should be NAN but it doesnt work as its not a constant in glibc as required by ANSI/ISO C #define DEFAULT 0 //should be NAN but it doesnt work as its not a constant in glibc as required by ANSI/ISO C
//these names are too long to be readable //these names are too long to be readable
#define V AV_OPT_FLAG_VIDEO_PARAM #define V AV_OPT_FLAG_VIDEO_PARAM
......
...@@ -458,7 +458,7 @@ static const char* format_to_name(void* ptr) ...@@ -458,7 +458,7 @@ static const char* format_to_name(void* ptr)
else return "NULL"; else return "NULL";
} }
#define OFFSET(x) (int)&((AVFormatContext*)0)->x #define OFFSET(x) offsetof(AVFormatContext,x)
#define DEFAULT 0 //should be NAN but it doesnt work as its not a constant in glibc as required by ANSI/ISO C #define DEFAULT 0 //should be NAN but it doesnt work as its not a constant in glibc as required by ANSI/ISO C
//these names are too long to be readable //these names are too long to be readable
#define E AV_OPT_FLAG_ENCODING_PARAM #define E AV_OPT_FLAG_ENCODING_PARAM
......
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