1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

Remove two anonymous arrays.

Fixes compilation of pngenc.c and flvdec.c with PGC 13.4-0.
This commit is contained in:
Carl Eugen Hoyos 2013-04-17 00:37:05 +02:00
parent 9802f56684
commit fe1de12faf
2 changed files with 4 additions and 2 deletions

View File

@ -57,8 +57,9 @@ static void png_get_interlaced_row(uint8_t *dst, int row_size,
int x, mask, dst_x, j, b, bpp;
uint8_t *d;
const uint8_t *s;
static const int masks[] = {0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff};
mask = (int[]){0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff}[pass];
mask = masks[pass];
switch(bits_per_pixel) {
case 1:
memset(dst, 0, row_size);

View File

@ -742,9 +742,10 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
}
}
if(i == s->nb_streams){
static const enum AVMediaType stream_types[] = {AVMEDIA_TYPE_VIDEO, AVMEDIA_TYPE_AUDIO, AVMEDIA_TYPE_DATA};
av_log(s, AV_LOG_WARNING, "Stream discovered after head already parsed\n");
st = create_stream(s,
(int[]){AVMEDIA_TYPE_VIDEO, AVMEDIA_TYPE_AUDIO, AVMEDIA_TYPE_DATA}[stream_type]);
stream_types[stream_type]);
if (!st)
return AVERROR(ENOMEM);