annotate sparc/dsputil_vis.h @ 12506:747e5f278c4b libavcodec

The debug text output of macroblocks can indicate MB_TYPE_INTERLACED, but it used to do it only for h264 codec. Allow it for other codecs, as mpeg2 and mpeg4 also set this flag.
author iive
date Tue, 21 Sep 2010 22:44:27 +0000
parents 766ca433df3b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11457
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
1 /*
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
2 * This file is part of FFmpeg.
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
3 *
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
4 * FFmpeg is free software; you can redistribute it and/or
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
5 * modify it under the terms of the GNU Lesser General Public
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
6 * License as published by the Free Software Foundation; either
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
7 * version 2.1 of the License, or (at your option) any later version.
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
8 *
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
9 * FFmpeg is distributed in the hope that it will be useful,
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
12 * Lesser General Public License for more details.
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
13 *
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
14 * You should have received a copy of the GNU Lesser General Public
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
15 * License along with FFmpeg; if not, write to the Free Software
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
17 */
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
18
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
19 #ifndef AVCODEC_SPARC_DSPUTIL_VIS_H
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
20 #define AVCODEC_SPARC_DSPUTIL_VIS_H
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
21
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
22 #include <stdint.h>
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
23 #include "libavcodec/dsputil.h"
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
24
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
25 void ff_simple_idct_put_vis(uint8_t *dest, int line_size, DCTELEM *data);
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
26 void ff_simple_idct_add_vis(uint8_t *dest, int line_size, DCTELEM *data);
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
27 void ff_simple_idct_vis(DCTELEM *data);
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
28
766ca433df3b sparc: fix dsputil prototypes
mru
parents:
diff changeset
29 #endif