FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
v210x.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2009 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include "avcodec.h"
22 #include "internal.h"
23 #include "libavutil/bswap.h"
24 #include "libavutil/internal.h"
25 #include "libavutil/mem.h"
26 
28 {
29  if (avctx->width & 1) {
30  av_log(avctx, AV_LOG_ERROR, "v210x needs even width\n");
31  return AVERROR(EINVAL);
32  }
34  avctx->bits_per_raw_sample = 10;
35 
37  if (!avctx->coded_frame)
38  return AVERROR(ENOMEM);
39 
40  return 0;
41 }
42 
43 static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
44  AVPacket *avpkt)
45 {
46  const uint32_t *src = (const uint32_t *)avpkt->data;
47  AVFrame *pic = avctx->coded_frame;
48  int width = avctx->width;
49  int y = 0;
50  uint16_t *ydst, *udst, *vdst, *yend;
51  int ret;
52 
53  if (pic->data[0])
54  avctx->release_buffer(avctx, pic);
55 
56  if (avpkt->size < avctx->width * avctx->height * 8 / 3) {
57  av_log(avctx, AV_LOG_ERROR, "Packet too small\n");
58  return AVERROR_INVALIDDATA;
59  }
60 
61  if (avpkt->size > avctx->width * avctx->height * 8 / 3) {
62  av_log_ask_for_sample(avctx, "Probably padded data\n");
63  }
64 
65  pic->reference = 0;
66  if ((ret = ff_get_buffer(avctx, pic)) < 0)
67  return ret;
68 
69  ydst = (uint16_t *)pic->data[0];
70  udst = (uint16_t *)pic->data[1];
71  vdst = (uint16_t *)pic->data[2];
72  yend = ydst + width;
73  pic->pict_type = AV_PICTURE_TYPE_I;
74  pic->key_frame = 1;
75 
76  for (;;) {
77  uint32_t v = av_be2ne32(*src++);
78  *udst++ = (v >> 16) & 0xFFC0;
79  *ydst++ = (v >> 6 ) & 0xFFC0;
80  *vdst++ = (v << 4 ) & 0xFFC0;
81 
82  v = av_be2ne32(*src++);
83  *ydst++ = (v >> 16) & 0xFFC0;
84 
85  if (ydst >= yend) {
86  ydst += pic->linesize[0] / 2 - width;
87  udst += pic->linesize[1] / 2 - width / 2;
88  vdst += pic->linesize[2] / 2 - width / 2;
89  yend = ydst + width;
90  if (++y >= avctx->height)
91  break;
92  }
93 
94  *udst++ = (v >> 6 ) & 0xFFC0;
95  *ydst++ = (v << 4 ) & 0xFFC0;
96 
97  v = av_be2ne32(*src++);
98  *vdst++ = (v >> 16) & 0xFFC0;
99  *ydst++ = (v >> 6 ) & 0xFFC0;
100 
101  if (ydst >= yend) {
102  ydst += pic->linesize[0] / 2 - width;
103  udst += pic->linesize[1] / 2 - width / 2;
104  vdst += pic->linesize[2] / 2 - width / 2;
105  yend = ydst + width;
106  if (++y >= avctx->height)
107  break;
108  }
109 
110  *udst++ = (v << 4 ) & 0xFFC0;
111 
112  v = av_be2ne32(*src++);
113  *ydst++ = (v >> 16) & 0xFFC0;
114  *vdst++ = (v >> 6 ) & 0xFFC0;
115  *ydst++ = (v << 4 ) & 0xFFC0;
116  if (ydst >= yend) {
117  ydst += pic->linesize[0] / 2 - width;
118  udst += pic->linesize[1] / 2 - width / 2;
119  vdst += pic->linesize[2] / 2 - width / 2;
120  yend = ydst + width;
121  if (++y >= avctx->height)
122  break;
123  }
124  }
125 
126  *got_frame = 1;
127  *(AVFrame*)data= *avctx->coded_frame;
128 
129  return avpkt->size;
130 }
131 
133 {
134  AVFrame *pic = avctx->coded_frame;
135  if (pic->data[0])
136  avctx->release_buffer(avctx, pic);
137  av_freep(&avctx->coded_frame);
138 
139  return 0;
140 }
141 
143  .name = "v210x",
144  .type = AVMEDIA_TYPE_VIDEO,
145  .id = AV_CODEC_ID_V210X,
146  .init = decode_init,
147  .close = decode_close,
148  .decode = decode_frame,
149  .capabilities = CODEC_CAP_DR1,
150  .long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
151 };