raw.c 6.6 KB
Newer Older
1 2 3 4
/*
 * Raw Video Codec
 * Copyright (c) 2001 Fabrice Bellard.
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
13 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with FFmpeg; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
 */
21

22 23 24 25
/**
 * @file raw.c
 * Raw Video Codec
 */
26

27 28
#include "avcodec.h"

29 30 31 32 33
typedef struct RawVideoContext {
    unsigned char * buffer;  /* block of memory for holding one frame */
    int             length;  /* number of bytes in buffer */
    AVFrame pic;             ///< AVCodecContext.coded_frame
} RawVideoContext;
34

D
Diego Biurrun 已提交
35
typedef struct PixelFormatTag {
36 37 38 39
    int pix_fmt;
    unsigned int fourcc;
} PixelFormatTag;

M
Måns Rullgård 已提交
40
static const PixelFormatTag pixelFormatTags[] = {
41 42
    { PIX_FMT_YUV420P, MKTAG('I', '4', '2', '0') }, /* Planar formats */
    { PIX_FMT_YUV420P, MKTAG('I', 'Y', 'U', 'V') },
43
    { PIX_FMT_YUV420P, MKTAG('Y', 'V', '1', '2') },
44 45 46 47 48 49 50
    { PIX_FMT_YUV410P, MKTAG('Y', 'U', 'V', '9') },
    { PIX_FMT_YUV411P, MKTAG('Y', '4', '1', 'B') },
    { PIX_FMT_YUV422P, MKTAG('Y', '4', '2', 'B') },
    { PIX_FMT_GRAY8,   MKTAG('Y', '8', '0', '0') },
    { PIX_FMT_GRAY8,   MKTAG(' ', ' ', 'Y', '8') },


51 52
    { PIX_FMT_YUYV422, MKTAG('Y', 'U', 'Y', '2') }, /* Packed formats */
    { PIX_FMT_YUYV422, MKTAG('Y', '4', '2', '2') },
53
    { PIX_FMT_UYVY422, MKTAG('U', 'Y', 'V', 'Y') },
54
    { PIX_FMT_GRAY8,   MKTAG('G', 'R', 'E', 'Y') },
55 56
    { PIX_FMT_RGB555,  MKTAG('R', 'G', 'B', 15) },
    { PIX_FMT_BGR555,  MKTAG('B', 'G', 'R', 15) },
57 58
    { PIX_FMT_RGB565,  MKTAG('R', 'G', 'B', 16) },
    { PIX_FMT_BGR565,  MKTAG('B', 'G', 'R', 16) },
59

60 61 62
    /* quicktime */
    { PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') },

63 64 65
    { -1, 0 },
};

B
Baptiste Coudurier 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
static const PixelFormatTag pixelFormatBpsAVI[] = {
    { PIX_FMT_PAL8,    8 },
    { PIX_FMT_RGB555, 15 },
    { PIX_FMT_RGB555, 16 },
    { PIX_FMT_BGR24,  24 },
    { PIX_FMT_RGB32,  32 },
    { -1, 0 },
};

static const PixelFormatTag pixelFormatBpsMOV[] = {
    /* FIXME fix swscaler to support those */
    /* http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/chapter_4_section_2.html */
    { PIX_FMT_PAL8,      8 },
    { PIX_FMT_BGR555,   16 },
    { PIX_FMT_RGB24,    24 },
    { PIX_FMT_BGR32_1,  32 },
    { -1, 0 },
};

static int findPixelFormat(const PixelFormatTag *tags, unsigned int fourcc)
86 87 88 89 90 91 92 93 94
{
    while (tags->pix_fmt >= 0) {
        if (tags->fourcc == fourcc)
            return tags->pix_fmt;
        tags++;
    }
    return PIX_FMT_YUV420P;
}

M
Michael Niedermayer 已提交
95
unsigned int avcodec_pix_fmt_to_codec_tag(enum PixelFormat fmt)
96 97 98 99
{
    const PixelFormatTag * tags = pixelFormatTags;
    while (tags->pix_fmt >= 0) {
        if (tags->pix_fmt == fmt)
100 101
            return tags->fourcc;
        tags++;
102 103 104
    }
    return 0;
}
105

106
/* RAW Decoder Implementation */
107

108
static int raw_init_decoder(AVCodecContext *avctx)
109 110 111
{
    RawVideoContext *context = avctx->priv_data;

B
Baptiste Coudurier 已提交
112 113 114 115 116 117
    if (avctx->codec_tag == MKTAG('r','a','w',' '))
        avctx->pix_fmt = findPixelFormat(pixelFormatBpsMOV, avctx->bits_per_sample);
    else if (avctx->codec_tag)
        avctx->pix_fmt = findPixelFormat(pixelFormatTags,   avctx->codec_tag);
    else if (avctx->bits_per_sample)
        avctx->pix_fmt = findPixelFormat(pixelFormatBpsAVI, avctx->bits_per_sample);
118

119 120 121 122
    context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
    context->buffer = av_malloc(context->length);
    context->pic.pict_type = FF_I_TYPE;
    context->pic.key_frame = 1;
123

M
Michael Niedermayer 已提交
124
    avctx->coded_frame= &context->pic;
125

126
    if (!context->buffer)
127
        return -1;
128

129 130 131
    return 0;
}

M
Michael Niedermayer 已提交
132
static void flip(AVCodecContext *avctx, AVPicture * picture){
133
    if(!avctx->codec_tag && avctx->bits_per_sample && picture->linesize[2]==0){
M
Michael Niedermayer 已提交
134 135 136 137 138
        picture->data[0] += picture->linesize[0] * (avctx->height-1);
        picture->linesize[0] *= -1;
    }
}

139
static int raw_decode(AVCodecContext *avctx,
140 141
                            void *data, int *data_size,
                            uint8_t *buf, int buf_size)
142 143 144
{
    RawVideoContext *context = avctx->priv_data;

145
    AVFrame * frame = (AVFrame *) data;
146 147
    AVPicture * picture = (AVPicture *) data;

148 149 150
    frame->interlaced_frame = avctx->coded_frame->interlaced_frame;
    frame->top_field_first = avctx->coded_frame->top_field_first;

151 152
    if(buf_size < context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0))
        return -1;
153

154 155 156 157 158 159 160
    avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height);
    if(avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length){
        frame->data[1]= context->buffer;
    }
    if (avctx->palctrl && avctx->palctrl->palette_changed) {
        memcpy(frame->data[1], avctx->palctrl->palette, AVPALETTE_SIZE);
        avctx->palctrl->palette_changed = 0;
161 162
    }

163
    flip(avctx, picture);
164 165 166 167 168 169 170 171 172

    if (avctx->codec_tag == MKTAG('Y', 'V', '1', '2'))
    {
        // swap fields
        unsigned char *tmp = picture->data[1];
        picture->data[1] = picture->data[2];
        picture->data[2] = tmp;
    }

173
    *data_size = sizeof(AVPicture);
174
    return buf_size;
175 176
}

177
static int raw_close_decoder(AVCodecContext *avctx)
178 179
{
    RawVideoContext *context = avctx->priv_data;
180

181 182 183
    av_freep(&context->buffer);
    return 0;
}
184

185
/* RAW Encoder Implementation */
186
#ifdef CONFIG_RAWVIDEO_ENCODER
187 188
static int raw_init_encoder(AVCodecContext *avctx)
{
F
Falk Hüffner 已提交
189
    avctx->coded_frame = (AVFrame *)avctx->priv_data;
190 191
    avctx->coded_frame->pict_type = FF_I_TYPE;
    avctx->coded_frame->key_frame = 1;
192
    if(!avctx->codec_tag)
M
Michael Niedermayer 已提交
193
        avctx->codec_tag = avcodec_pix_fmt_to_codec_tag(avctx->pix_fmt);
194 195 196 197
    return 0;
}

static int raw_encode(AVCodecContext *avctx,
198
                            unsigned char *frame, int buf_size, void *data)
199
{
200 201
    return avpicture_layout((AVPicture *)data, avctx->pix_fmt, avctx->width,
                                               avctx->height, frame, buf_size);
202 203
}

204 205 206 207 208 209 210 211
AVCodec rawvideo_encoder = {
    "rawvideo",
    CODEC_TYPE_VIDEO,
    CODEC_ID_RAWVIDEO,
    sizeof(AVFrame),
    raw_init_encoder,
    raw_encode,
};
212
#endif // CONFIG_RAWVIDEO_ENCODER
213

214
AVCodec rawvideo_decoder = {
215 216 217 218
    "rawvideo",
    CODEC_TYPE_VIDEO,
    CODEC_ID_RAWVIDEO,
    sizeof(RawVideoContext),
219 220 221
    raw_init_decoder,
    NULL,
    raw_close_decoder,
222 223
    raw_decode,
};