annotate iff.h @ 12530:63edd10ad4bc libavcodec tip

Try to fix crashes introduced by r25218 r25218 made assumptions about the existence of past reference frames that weren't necessarily true.
author darkshikari
date Tue, 28 Sep 2010 09:06:22 +0000
parents 5b9d41da4152
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11395
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
1 /*
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
2 * IFF PBM/ILBM bitmap decoder
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
3 * Copyright (c) 2010 Peter Ross <pross@xvid.org>
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
4 *
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
5 * This file is part of FFmpeg.
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
6 *
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
11 *
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
15 * Lesser General Public License for more details.
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
16 *
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
20 */
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
21
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
22 #ifndef AVCODEC_IFF_H
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
23 #define AVCODEC_IFF_H
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
24
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
25 #include <stdint.h>
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
26 #include "avcodec.h"
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
27
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
28 int ff_cmap_read_palette(AVCodecContext *avctx, uint32_t *pal);
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
29
5b9d41da4152 IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
diff changeset
30 #endif /* AVCODEC_IFF_H */