mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-12-24 11:52:06 +08:00
user specified motion estimation range limit
h263 me range fixed (was smaller then needed) Originally committed as revision 1610 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -16,8 +16,8 @@ extern "C" {
|
||||
|
||||
#define LIBAVCODEC_VERSION_INT 0x000406
|
||||
#define LIBAVCODEC_VERSION "0.4.6"
|
||||
#define LIBAVCODEC_BUILD 4658
|
||||
#define LIBAVCODEC_BUILD_STR "4658"
|
||||
#define LIBAVCODEC_BUILD 4659
|
||||
#define LIBAVCODEC_BUILD_STR "4659"
|
||||
|
||||
enum CodecID {
|
||||
CODEC_ID_NONE,
|
||||
@@ -971,6 +971,15 @@ typedef struct AVCodecContext {
|
||||
#define FF_DTG_AFD_16_9_SP_14_9 14
|
||||
#define FF_DTG_AFD_SP_4_3 15
|
||||
|
||||
int me_range;
|
||||
/**
|
||||
* Maximum motion estimation search range in subpel units.
|
||||
* if 0 then no limit
|
||||
*
|
||||
* encoding: set by user.
|
||||
* decoding: unused.
|
||||
*/
|
||||
|
||||
} AVCodecContext;
|
||||
|
||||
//void avcodec_getopt(AVCodecContext* avctx, const char* str, avc_config_t** config);
|
||||
|
||||
Reference in New Issue
Block a user