diff 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
line wrap: on
line diff
--- a/avcodec.h	Sat Jan 03 15:15:03 2009 +0000
+++ b/avcodec.h	Sat Jan 03 17:54:48 2009 +0000
@@ -2409,7 +2409,7 @@
     uint32_t start_display_time; /* relative to packet pts, in ms */
     uint32_t end_display_time; /* relative to packet pts, in ms */
     uint32_t num_rects;
-    AVSubtitleRect *rects;
+    AVSubtitleRect **rects;
 } AVSubtitle;