~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavcodec/mpegvideoencdsp.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-08-10 09:45:02 UTC
  • mfrom: (1.1.28) (2.1.45 sid)
  • Revision ID: package-import@ubuntu.com-20140810094502-p8pds4kq0zpig5oq
Tags: 6:11~alpha1-1
* New upstream Release v11
  - Fixes Unchecked conversion from double to enum (Closes: #749164)
* Add some post v11_alpha1 patches from upstream
* All SONAMEs bumped because of internal changes, but external API is
  promised to have not changed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of Libav.
 
3
 *
 
4
 * Libav is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2.1 of the License, or (at your option) any later version.
 
8
 *
 
9
 * Libav is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with Libav; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
17
 */
 
18
 
 
19
#ifndef AVCODEC_MPEGVIDEOENCDSP_H
 
20
#define AVCODEC_MPEGVIDEOENCDSP_H
 
21
 
 
22
#include <stdint.h>
 
23
 
 
24
#include "avcodec.h"
 
25
 
 
26
#define BASIS_SHIFT 16
 
27
#define RECON_SHIFT 6
 
28
 
 
29
#define EDGE_TOP    1
 
30
#define EDGE_BOTTOM 2
 
31
 
 
32
typedef struct MpegvideoEncDSPContext {
 
33
    int (*try_8x8basis)(int16_t rem[64], int16_t weight[64],
 
34
                        int16_t basis[64], int scale);
 
35
    void (*add_8x8basis)(int16_t rem[64], int16_t basis[64], int scale);
 
36
 
 
37
    int (*pix_sum)(uint8_t *pix, int line_size);
 
38
    int (*pix_norm1)(uint8_t *pix, int line_size);
 
39
 
 
40
    void (*shrink[4])(uint8_t *dst, int dst_wrap, const uint8_t *src,
 
41
                      int src_wrap, int width, int height);
 
42
 
 
43
    void (*draw_edges)(uint8_t *buf, int wrap, int width, int height,
 
44
                       int w, int h, int sides);
 
45
} MpegvideoEncDSPContext;
 
46
 
 
47
void ff_mpegvideoencdsp_init(MpegvideoEncDSPContext *c,
 
48
                             AVCodecContext *avctx);
 
49
void ff_mpegvideoencdsp_init_arm(MpegvideoEncDSPContext *c,
 
50
                                 AVCodecContext *avctx);
 
51
void ff_mpegvideoencdsp_init_ppc(MpegvideoEncDSPContext *c,
 
52
                                 AVCodecContext *avctx);
 
53
void ff_mpegvideoencdsp_init_x86(MpegvideoEncDSPContext *c,
 
54
                                 AVCodecContext *avctx);
 
55
 
 
56
#endif /* AVCODEC_MPEGVIDEOENCDSP_H */