annotate sh4/dsputil_sh4.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 9f2381fb271b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11400
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
1 /*
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
2 * This file is part of FFmpeg.
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
3 *
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
4 * FFmpeg is free software; you can redistribute it and/or
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
5 * modify it under the terms of the GNU Lesser General Public
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
6 * License as published by the Free Software Foundation; either
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
7 * version 2.1 of the License, or (at your option) any later version.
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
8 *
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
9 * FFmpeg is distributed in the hope that it will be useful,
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
12 * Lesser General Public License for more details.
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
13 *
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
14 * You should have received a copy of the GNU Lesser General Public
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
15 * License along with FFmpeg; if not, write to the Free Software
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
17 */
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
18
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
19 #ifndef AVCODEC_SH4_DSPUTIL_SH4_H
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
20 #define AVCODEC_SH4_DSPUTIL_SH4_H
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
21
11416
9f2381fb271b Add missing includes in bfin and sh4 files
mru
parents: 11400
diff changeset
22 #include "libavcodec/avcodec.h"
9f2381fb271b Add missing includes in bfin and sh4 files
mru
parents: 11400
diff changeset
23 #include "libavcodec/dsputil.h"
9f2381fb271b Add missing includes in bfin and sh4 files
mru
parents: 11400
diff changeset
24
11400
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
25 void idct_sh4(DCTELEM *block);
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
26 void dsputil_init_align(DSPContext* c, AVCodecContext *avctx);
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
27
c166792100a0 sh4: move dsputil prototypes to header file
mru
parents:
diff changeset
28 #endif