Skip to content

Commit

Permalink
Convert to struct init from gcc specific to C99 version (clang)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Dec 10, 2012
1 parent 92af4cb commit 6579887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/blend.c
Expand Up @@ -21,7 +21,7 @@ void blendregion_mmx (uint8_t * ysrc, uint8_t * usrc, uint8_t * vsrc,
int16_t rec_lut[256], uint8_t pow_lut[256][256])
{
int x, y, i, alpha, newalpha;
mmx_t amod = { uw: {alphamod, alphamod, alphamod, alphamod} };
mmx_t amod = { .uw = {alphamod, alphamod, alphamod, alphamod} };
int16_t wbuf[8];

(void) pow_lut;
Expand Down

0 comments on commit 6579887

Please sign in to comment.