Commit 12d32a79 authored by michaelni's avatar michaelni

binary compatibility fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1700 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 78a308d3
...@@ -388,14 +388,6 @@ typedef struct AVCodecContext { ...@@ -388,14 +388,6 @@ typedef struct AVCodecContext {
*/ */
int frame_rate; int frame_rate;
/**
* frame_rate_base.
* for variable fps this is 1
* - encoding: set by user.
* - decoding: set by lavc.
*/
int frame_rate_base;
/** /**
* width / height. * width / height.
* - encoding: MUST be set by user. * - encoding: MUST be set by user.
...@@ -1039,6 +1031,15 @@ typedef struct AVCodecContext { ...@@ -1039,6 +1031,15 @@ typedef struct AVCodecContext {
*/ */
int me_range; int me_range;
/**
* frame_rate_base.
* for variable fps this is 1
* - encoding: set by user.
* - decoding: set by lavc.
* @todo move this after frame_rate
*/
int frame_rate_base;
} AVCodecContext; } AVCodecContext;
......
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