diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2002-08-26 20:45:01 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2002-08-26 20:45:01 +0000 |
commit | e769f0535e340b1263b6246f5666e653f6deeb7a (patch) | |
tree | 75c930dfc6152888eea226b991af6ca22da9cc73 /libavcodec/mpegvideo.h | |
parent | 1ffd8306ba35e55beb6428793b02bfb3bfd5ed33 (diff) | |
download | ffmpeg-e769f0535e340b1263b6246f5666e653f6deeb7a.tar.gz |
added aspected_width/height for EXTENDED_PAR
Originally committed as revision 869 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 4bbcdf77cc..ce9282c5f5 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -360,6 +360,8 @@ typedef struct MpegEncContext { int new_pred; int reduced_res_vop; int aspect_ratio_info; + int aspected_width; + int aspected_height; int sprite_warping_accuracy; int low_latency_sprite; int data_partitioning; @@ -415,7 +417,6 @@ typedef struct MpegEncContext { /* [mb_intra][isChroma][level][run][last] */ int ac_stats[2][2][MAX_LEVEL+1][MAX_RUN+1][2]; int inter_intra_pred; - /* decompression specific */ GetBitContext gb; |