annotate iff.h @ 12451:4c3e6ff1237e libavcodec

Rename h264_weight_sse2.asm to h264_weight.asm; add 16x8/8x16/8x4 non-square biweight code to sse2/ssse3; add sse2 weight code; and use that same code to create mmx2 functions also, so that the inline asm in h264dsp_mmx.c can be removed. OK'ed by Jason on IRC.
author rbultje
date Wed, 01 Sep 2010 20:56:16 +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 */