Trying to compile gst-ffmpeg-0.10.2 with native compiler on HP-UX 11i
v1 I get the following error message:
cc: "mpegvideo. c", line 6727: error 1521: Incorrect initialization.
Same code compiles OK with gcc.
The offending code is below, .pix_fmts= etc
Any ideas on how to resolve?
Tx
AVCodec h263_encoder = {
"h263",
CODEC_TYPE_VIDE O,
CODEC_ID_H263,
sizeof(MpegEncC ontext),
MPV_encode_init ,
MPV_encode_pict ure,
MPV_encode_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV42 0P, -1},
};
v1 I get the following error message:
cc: "mpegvideo. c", line 6727: error 1521: Incorrect initialization.
Same code compiles OK with gcc.
The offending code is below, .pix_fmts= etc
Any ideas on how to resolve?
Tx
AVCodec h263_encoder = {
"h263",
CODEC_TYPE_VIDE O,
CODEC_ID_H263,
sizeof(MpegEncC ontext),
MPV_encode_init ,
MPV_encode_pict ure,
MPV_encode_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV42 0P, -1},
};
Comment