Mercurial > libavcodec.hg
annotate v210dec.c @ 10396:2bb3882075b6 libavcodec
Call release_buffer on close for v210dec and v210x
| author | reimar |
|---|---|
| date | Tue, 13 Oct 2009 18:31:22 +0000 |
| parents | a48c43551737 |
| children | d7ed9dcc78e3 |
| rev | line source |
|---|---|
| 9628 | 1 /* |
| 2 * V210 decoder | |
| 3 * | |
| 4 * Copyright (C) 2009 Michael Niedermayer <michaelni@gmx.at> | |
| 5 * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com> | |
| 6 * | |
| 7 * This file is part of FFmpeg. | |
| 8 * | |
| 9 * FFmpeg is free software; you can redistribute it and/or | |
| 10 * modify it under the terms of the GNU Lesser General Public | |
| 11 * License as published by the Free Software Foundation; either | |
| 12 * version 2.1 of the License, or (at your option) any later version. | |
| 13 * | |
| 14 * FFmpeg is distributed in the hope that it will be useful, | |
| 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 17 * Lesser General Public License for more details. | |
| 18 * | |
| 19 * You should have received a copy of the GNU Lesser General Public | |
| 20 * License along with FFmpeg; if not, write to the Free Software | |
| 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
| 22 */ | |
| 23 | |
| 24 #include "avcodec.h" | |
| 25 #include "libavutil/bswap.h" | |
| 26 | |
| 27 static av_cold int decode_init(AVCodecContext *avctx) | |
| 28 { | |
| 29 if (avctx->width & 1) { | |
| 30 av_log(avctx, AV_LOG_ERROR, "v210 needs even width\n"); | |
| 31 return -1; | |
| 32 } | |
| 33 if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) | |
| 34 return -1; | |
| 10131 | 35 avctx->pix_fmt = PIX_FMT_YUV422P16; |
| 9628 | 36 avctx->bits_per_raw_sample = 10; |
| 37 | |
| 10131 | 38 avctx->coded_frame = avcodec_alloc_frame(); |
| 9628 | 39 |
| 40 return 0; | |
| 41 } | |
| 42 | |
| 10131 | 43 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, |
| 44 AVPacket *avpkt) | |
| 9628 | 45 { |
| 46 int h, w; | |
| 47 AVFrame *pic = avctx->coded_frame; | |
| 48 const uint8_t *psrc = avpkt->data; | |
| 49 uint16_t *y, *u, *v; | |
| 50 int aligned_width = ((avctx->width + 47) / 48) * 48; | |
| 51 int stride = aligned_width * 8 / 3; | |
| 52 | |
| 53 if (pic->data[0]) | |
| 54 avctx->release_buffer(avctx, pic); | |
| 55 | |
| 56 if (avpkt->size < stride * avctx->height) { | |
| 57 av_log(avctx, AV_LOG_ERROR, "packet too small\n"); | |
| 58 return -1; | |
| 59 } | |
| 60 | |
| 61 pic->reference = 0; | |
| 62 if (avctx->get_buffer(avctx, pic) < 0) | |
| 63 return -1; | |
| 64 | |
| 9630 | 65 y = (uint16_t*)pic->data[0]; |
| 66 u = (uint16_t*)pic->data[1]; | |
| 67 v = (uint16_t*)pic->data[2]; | |
| 9628 | 68 pic->pict_type = FF_I_TYPE; |
| 69 pic->key_frame = 1; | |
| 70 | |
| 10131 | 71 #define READ_PIXELS(a, b, c) \ |
| 72 do { \ | |
| 73 val = le2me_32(*src++); \ | |
| 9628 | 74 *a++ = val << 6; \ |
| 75 *b++ = (val >> 4) & 0xFFC0; \ | |
| 76 *c++ = (val >> 14) & 0xFFC0; \ | |
| 10169 | 77 } while (0) |
| 9628 | 78 |
| 79 for (h = 0; h < avctx->height; h++) { | |
| 9630 | 80 const uint32_t *src = (const uint32_t*)psrc; |
| 9628 | 81 uint32_t val; |
| 82 for (w = 0; w < avctx->width - 5; w += 6) { | |
| 83 READ_PIXELS(u, y, v); | |
| 84 READ_PIXELS(y, u, y); | |
| 85 READ_PIXELS(v, y, u); | |
| 86 READ_PIXELS(y, v, y); | |
| 87 } | |
| 88 if (w < avctx->width - 1) { | |
| 89 READ_PIXELS(u, y, v); | |
| 90 | |
| 91 val = le2me_32(*src++); | |
| 92 *y++ = val << 6; | |
| 93 } | |
| 94 if (w < avctx->width - 3) { | |
| 95 *u++ = (val >> 4) & 0xFFC0; | |
| 96 *y++ = (val >> 14) & 0xFFC0; | |
| 97 | |
| 98 val = le2me_32(*src++); | |
| 99 *v++ = val << 6; | |
| 100 *y++ = (val >> 4) & 0xFFC0; | |
| 101 } | |
| 102 | |
| 103 psrc += stride; | |
| 10131 | 104 y += pic->linesize[0] / 2 - avctx->width; |
| 105 u += pic->linesize[1] / 2 - avctx->width / 2; | |
| 106 v += pic->linesize[2] / 2 - avctx->width / 2; | |
| 9628 | 107 } |
| 108 | |
| 109 *data_size = sizeof(AVFrame); | |
| 110 *(AVFrame*)data = *avctx->coded_frame; | |
| 111 | |
| 112 return avpkt->size; | |
| 113 } | |
| 114 | |
| 115 static av_cold int decode_close(AVCodecContext *avctx) | |
| 116 { | |
|
10396
2bb3882075b6
Call release_buffer on close for v210dec and v210x
reimar
parents:
10169
diff
changeset
|
117 AVFrame *pic = avctx->coded_frame; |
|
2bb3882075b6
Call release_buffer on close for v210dec and v210x
reimar
parents:
10169
diff
changeset
|
118 if (pic->data[0]) |
|
2bb3882075b6
Call release_buffer on close for v210dec and v210x
reimar
parents:
10169
diff
changeset
|
119 avctx->release_buffer(avctx, pic); |
| 9628 | 120 av_freep(&avctx->coded_frame); |
| 121 | |
| 122 return 0; | |
| 123 } | |
| 124 | |
| 125 AVCodec v210_decoder = { | |
| 126 "v210", | |
| 127 CODEC_TYPE_VIDEO, | |
| 128 CODEC_ID_V210, | |
| 129 0, | |
| 130 decode_init, | |
| 131 NULL, | |
| 132 decode_close, | |
| 133 decode_frame, | |
| 134 CODEC_CAP_DR1, | |
| 135 .long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"), | |
| 136 }; |
