diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2008-03-01 01:58:25 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2008-03-01 01:58:25 +0000 |
commit | be0995b166df20c5ed631ac6c964913844c6823c (patch) | |
tree | 053f0c2d7b156dd6b1342c81af18b978d59c6a23 /libavcodec/h264data.h | |
parent | 40e8e497004cc82db1d566efe3b601b23b658d89 (diff) | |
download | ffmpeg-be0995b166df20c5ed631ac6c964913844c6823c.tar.gz |
more aspect ratios added in one of the ammendments
Originally committed as revision 12282 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264data.h')
-rw-r--r-- | libavcodec/h264data.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/h264data.h b/libavcodec/h264data.h index 79fc5da0ef..dce1666fc8 100644 --- a/libavcodec/h264data.h +++ b/libavcodec/h264data.h @@ -54,7 +54,7 @@ NAL_SPS_EXT, NAL_AUXILIARY_SLICE=19 }; -static const AVRational pixel_aspect[14]={ +static const AVRational pixel_aspect[17]={ {0, 1}, {1, 1}, {12, 11}, @@ -69,6 +69,9 @@ static const AVRational pixel_aspect[14]={ {15, 11}, {64, 33}, {160,99}, + {4, 3}, + {3, 2}, + {2, 1}, }; static const uint8_t golomb_to_pict_type[5]= |