diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-27 23:23:45 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-03-01 16:08:31 +0200 |
commit | bdc1220eebd0a57a85b423335d7a67888ed4ca07 (patch) | |
tree | dc584eb711218f89fd61baacdb8eb845a23d3ec2 /libavcodec/mpegvideo.h | |
parent | 442c1320e72a13d02c9c477aab7100ef910c33c7 (diff) | |
download | ffmpeg-bdc1220eebd0a57a85b423335d7a67888ed4ca07.tar.gz |
h263enc: Add an option for outputting info about MBs as side data
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index ad0bd3a164..9d9d8707c9 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -506,6 +506,10 @@ typedef struct MpegEncContext { int gob_index; int obmc; ///< overlapped block motion compensation int showed_packed_warning; ///< flag for having shown the warning about divxs invalid b frames + int mb_info; ///< interval for outputting info about mb offsets as side data + int prev_mb_info, last_mb_info; + uint8_t *mb_info_ptr; + int mb_info_size; /* H.263+ specific */ int umvplus; ///< == H263+ && unrestricted_mv |