Mercurial > libavcodec.hg
comparison avcodec.h @ 8512:aa45029f5cd7 libavcodec
Change AVSubtitle.rects to an array of pointers so ABI does not break
when the size of AVSubtitleRect changes.
| author | michael |
|---|---|
| date | Sat, 03 Jan 2009 17:54:48 +0000 |
| parents | 531ddfe8a832 |
| children | 1d2c018a7ac7 |
comparison
equal
deleted
inserted
replaced
| 8511:531ddfe8a832 | 8512:aa45029f5cd7 |
|---|---|
| 2407 typedef struct AVSubtitle { | 2407 typedef struct AVSubtitle { |
| 2408 uint16_t format; /* 0 = graphics */ | 2408 uint16_t format; /* 0 = graphics */ |
| 2409 uint32_t start_display_time; /* relative to packet pts, in ms */ | 2409 uint32_t start_display_time; /* relative to packet pts, in ms */ |
| 2410 uint32_t end_display_time; /* relative to packet pts, in ms */ | 2410 uint32_t end_display_time; /* relative to packet pts, in ms */ |
| 2411 uint32_t num_rects; | 2411 uint32_t num_rects; |
| 2412 AVSubtitleRect *rects; | 2412 AVSubtitleRect **rects; |
| 2413 } AVSubtitle; | 2413 } AVSubtitle; |
| 2414 | 2414 |
| 2415 | 2415 |
| 2416 /* resample.c */ | 2416 /* resample.c */ |
| 2417 | 2417 |
