annotate libschroedinger.h @ 6920:d02af7474bff libavcodec

Prevent 128*1<<trellis from becoming 0 and creating 0 sized arrays. fixes CID84 RUN2 CID85 RUN2 CID86 RUN2 CID87 RUN2 CID88 RUN2 CID89 RUN2 CID90 RUN2 CID91 RUN2 CID92 RUN2 CID93 RUN2 CID94 RUN2 CID95 RUN2 CID96 RUN2 CID97 RUN2 CID98 RUN2 CID99 RUN2 CID100 RUN2 CID101 RUN2 CID102 RUN2 CID103 RUN2 CID104 RUN2 CID105 RUN2 CID106 RUN2
author michael
date Wed, 28 May 2008 11:59:41 +0000
parents bdacae101076
children c4a4495715dd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6738
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
1 /*
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
2 * Copyright (c) 2008 BBC, Anuradha Suraparaju <asuraparaju at gmail dot com >
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
3 *
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
4 * This file is part of FFmpeg.
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
5 *
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
8 * License as published by the Free Software Foundation; either
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
10 *
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
14 * Lesser General Public License for more details.
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
15 *
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
19 */
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
20
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
21 /**
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
22 * @file libschroedinger.h
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
23 * data structures common to libschroedingerdec.c and libschroedingerenc.c
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
24 */
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
25
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
26 #ifndef FFMPEG_LIBSCHROEDINGER_H
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
27 #define FFMPEG_LIBSCHROEDINGER_H
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
28
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
29 #include "config.h"
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
30
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
31 #ifdef CONFIG_LIBSCHROEDINGER
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
32
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
33 #include <schroedinger/schrobitstream.h>
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
34 #include <schroedinger/schroframe.h>
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
35 #include "avcodec.h"
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
36
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
37 static const struct {
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
38 enum PixelFormat ff_pix_fmt;
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
39 SchroChromaFormat schro_pix_fmt;
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
40 SchroFrameFormat schro_frame_fmt;
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
41 } ffmpeg_schro_pixel_format_map[] = {
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
42 { PIX_FMT_YUV420P, SCHRO_CHROMA_420, SCHRO_FRAME_FORMAT_U8_420 },
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
43 { PIX_FMT_YUV422P, SCHRO_CHROMA_422, SCHRO_FRAME_FORMAT_U8_422 },
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
44 { PIX_FMT_YUV444P, SCHRO_CHROMA_444, SCHRO_FRAME_FORMAT_U8_444 },
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
45 };
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
46
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
47 /**
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
48 * Returns the video format preset matching the input video dimensions and
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
49 * time base.
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
50 */
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
51 SchroVideoFormatEnum ff_get_schro_video_format_preset (AVCodecContext *avccontext);
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
52
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
53 /**
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
54 * Sets the Schroedinger frame format corresponding to the Schro chroma format
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
55 * passed. Returns 0 on success, -1 on failure.
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
56 */
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
57 int ff_get_schro_frame_format (SchroChromaFormat schro_chroma_fmt,
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
58 SchroFrameFormat *schro_frame_fmt);
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
59
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
60 #endif /* CONFIG_LIBSCHROEDINGER */
bdacae101076 Add Dirac support through libschroedinger.
diego
parents:
diff changeset
61 #endif /* FFMPEG_LIBSCHROEDINGER_H */