GNOME Bugzilla – Bug 683859
codecparsers: h264: don't use anonymous unions
Last modified: 2012-09-12 09:49:35 UTC
Created attachment 224085 [details] [review] codecparsers: h264: don't use anonymous unions Hi, anonymous union is an ISO C (2011) feature that is not exposed in compilers strictly conforming to the previous standard, or even GCC when people insist on using -std=c99 -pedantic altogether.
Created attachment 224086 [details] [review] h264parse: cope with latest codecparsers change
Pushed to master, but not 0.10 (don't think it's worth breaking API over this at this stage): commit 2c3eaf527b3224b9be9ec7fe9d7f26fef9e5eb87 Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com> Date: Wed Sep 12 11:01:34 2012 +0200 codecparsers: h264parse: don't use anonymous unions. Anonymous union is an ISO C (2011) feature that is not exposed in compilers strictly conforming to the previous standard. Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
Comment on attachment 224086 [details] [review] h264parse: cope with latest codecparsers change squashed with the other patch