diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 04:01:19 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 04:01:19 +0000 |
commit | f867378771e60f5acb63d90a9c8020ea76e1500d (patch) | |
tree | 4b9a517da75f2bed21c356510f7d629fbd093f80 /libavcodec | |
parent | f016159416c0a5d480c7f9edf57fdb1d3c0effe6 (diff) | |
download | ffmpeg-streaming-f867378771e60f5acb63d90a9c8020ea76e1500d.zip ffmpeg-streaming-f867378771e60f5acb63d90a9c8020ea76e1500d.tar.gz |
Document aspect_to_info().
Originally committed as revision 21049 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h263.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c index 6ff0e90d..47e2897 100644 --- a/libavcodec/h263.c +++ b/libavcodec/h263.c @@ -151,6 +151,11 @@ static void show_pict_info(MpegEncContext *s){ #if CONFIG_ENCODERS +/** + * Returns the 4 bit value that specifies the given aspect ratio. + * This may be one of the standard aspect ratios or it specifies + * that the aspect will be stored explicitly later. + */ static av_const int aspect_to_info(AVRational aspect){ int i; |