comparison avcodec.h @ 282:5c7fdbecfa97 libavcodec

more aspect stuff
author michaelni
date Fri, 22 Mar 2002 23:28:11 +0000
parents 1fc96b02142e
children 91f7c38f5f37
comparison
equal deleted inserted replaced
281:1fc96b02142e 282:5c7fdbecfa97
80 stored there */ 80 stored there */
81 /* video only */ 81 /* video only */
82 int frame_rate; /* frames per sec multiplied by FRAME_RATE_BASE */ 82 int frame_rate; /* frames per sec multiplied by FRAME_RATE_BASE */
83 int width, height; 83 int width, height;
84 int aspect_ratio_info; 84 int aspect_ratio_info;
85 #define FF_ASPECT_SQUARE 1
86 #define FF_ASPECT_4_3_625 2
87 #define FF_ASPECT_4_3_525 3
88 #define FF_ASPECT_16_9_625 4
89 #define FF_ASPECT_16_9_525 5
85 int gop_size; /* 0 = intra only */ 90 int gop_size; /* 0 = intra only */
86 int pix_fmt; /* pixel format, see PIX_FMT_xxx */ 91 int pix_fmt; /* pixel format, see PIX_FMT_xxx */
87 92
88 /* if non NULL, 'draw_horiz_band' is called by the libavcodec 93 /* if non NULL, 'draw_horiz_band' is called by the libavcodec
89 decoder to draw an horizontal band. It improve cache usage. Not 94 decoder to draw an horizontal band. It improve cache usage. Not