comparison avcodec.h @ 8513:1d2c018a7ac7 libavcodec

Future doxy for a few fields of AVSubtitleRect.
author michael
date Sat, 03 Jan 2009 17:58:25 +0000
parents aa45029f5cd7
children 45506d633cdc
comparison
equal deleted inserted replaced
8512:aa45029f5cd7 8513:1d2c018a7ac7
2392 */ 2392 */
2393 SUBTITLE_ASS, 2393 SUBTITLE_ASS,
2394 }; 2394 };
2395 2395
2396 typedef struct AVSubtitleRect { 2396 typedef struct AVSubtitleRect {
2397 uint16_t x; 2397 uint16_t x; ///< top left corner of pict, undefined when pict is not set
2398 uint16_t y; 2398 uint16_t y; ///< top left corner of pict, undefined when pict is not set
2399 uint16_t w; 2399 uint16_t w; ///< width of pict, undefined when pict is not set
2400 uint16_t h; 2400 uint16_t h; ///< height of pict, undefined when pict is not set
2401 uint16_t nb_colors; 2401 uint16_t nb_colors; ///< number of colors in pict, undefined when pict is not set
2402 int linesize; 2402 int linesize;
2403 uint32_t *rgba_palette; 2403 uint32_t *rgba_palette;
2404 uint8_t *bitmap; 2404 uint8_t *bitmap;
2405 } AVSubtitleRect; 2405 } AVSubtitleRect;
2406 2406