FFmpeg
v210dec.c
Go to the documentation of this file.
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 "codec_internal.h"
26 #include "v210dec.h"
27 #include "v210dec_init.h"
28 #include "libavutil/bswap.h"
29 #include "libavutil/imgutils.h"
30 #include "libavutil/internal.h"
31 #include "libavutil/intreadwrite.h"
32 #include "thread.h"
33 
34 typedef struct ThreadData {
35  AVFrame *frame;
36  uint8_t *buf;
37  int stride;
38 } ThreadData;
39 
41 {
42  V210DecContext *s = avctx->priv_data;
43 
45  avctx->bits_per_raw_sample = 10;
46 
47  s->thread_count = av_clip(avctx->thread_count, 1, avctx->height/4);
48  s->aligned_input = 0;
50 
51  return 0;
52 }
53 
54 static void decode_row(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, const int width,
55  void (*unpack_frame)(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width))
56 {
57  uint32_t val;
58  int w = (FFMAX(0, width - 12) / 12) * 12;
59 
60  unpack_frame(src, y, u, v, w);
61 
62  y += w;
63  u += w >> 1;
64  v += w >> 1;
65  src += (w << 1) / 3;
66 
67  while (w < width - 5) {
68  READ_PIXELS(u, y, v);
69  READ_PIXELS(y, u, y);
70  READ_PIXELS(v, y, u);
71  READ_PIXELS(y, v, y);
72  w += 6;
73  }
74 
75  if (w++ < width) {
76  READ_PIXELS(u, y, v);
77 
78  if (w++ < width) {
79  val = av_le2ne32(*src++);
80  *y++ = val & 0x3FF;
81 
82  if (w++ < width) {
83  *u++ = (val >> 10) & 0x3FF;
84  *y++ = (val >> 20) & 0x3FF;
85  val = av_le2ne32(*src++);
86  *v++ = val & 0x3FF;
87 
88  if (w++ < width) {
89  *y++ = (val >> 10) & 0x3FF;
90 
91  if (w++ < width) {
92  *u++ = (val >> 20) & 0x3FF;
93  val = av_le2ne32(*src++);
94  *y++ = val & 0x3FF;
95  *v++ = (val >> 10) & 0x3FF;
96 
97  if (w++ < width)
98  *y++ = (val >> 20) & 0x3FF;
99  }
100  }
101  }
102  }
103  }
104 }
105 
106 static int v210_decode_slice(AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
107 {
108  V210DecContext *s = avctx->priv_data;
109  ThreadData *td = arg;
110  AVFrame *frame = td->frame;
111  int stride = td->stride;
112  int slice_start = (avctx->height * jobnr) / s->thread_count;
113  int slice_end = (avctx->height * (jobnr+1)) / s->thread_count;
114  uint8_t *psrc = td->buf + stride * slice_start;
115  int16_t *py = (uint16_t*)frame->data[0] + slice_start * frame->linesize[0] / 2;
116  int16_t *pu = (uint16_t*)frame->data[1] + slice_start * frame->linesize[1] / 2;
117  int16_t *pv = (uint16_t*)frame->data[2] + slice_start * frame->linesize[2] / 2;
118 
119  for (int h = slice_start; h < slice_end; h++) {
120  decode_row((const uint32_t *)psrc, py, pu, pv, avctx->width, s->unpack_frame);
121  psrc += stride;
122  py += frame->linesize[0] / 2;
123  pu += frame->linesize[1] / 2;
124  pv += frame->linesize[2] / 2;
125  }
126 
127  return 0;
128 }
129 
130 static int v210_stride(int width, int align) {
131  int aligned_width = ((width + align - 1) / align) * align;
132  return aligned_width * 8 / 3;
133 }
134 
135 static int decode_frame(AVCodecContext *avctx, AVFrame *pic,
136  int *got_frame, AVPacket *avpkt)
137 {
138  V210DecContext *s = avctx->priv_data;
139  ThreadData td;
140  int ret, stride, aligned_input;
141  const uint8_t *psrc = avpkt->data;
142 
143  if (s->custom_stride )
144  stride = s->custom_stride > 0 ? s->custom_stride : 0;
145  else {
146  stride = v210_stride(avctx->width, 48);
147  if (avpkt->size < stride * avctx->height) {
148  int align;
149  for (align = 24; align >= 6; align >>= 1) {
150  int small_stride = v210_stride(avctx->width, align);
151  if (avpkt->size == small_stride * avctx->height) {
152  stride = small_stride;
153  if (!s->stride_warning_shown)
154  av_log(avctx, AV_LOG_WARNING, "Broken v210 with too small padding (%d byte) detected\n", align * 8 / 3);
155  s->stride_warning_shown = 1;
156  break;
157  }
158  }
159  if (align < 6 && avctx->codec_tag == MKTAG('b', 'x', 'y', '2'))
160  stride = 0;
161  }
162  }
163 
164  if (stride == 0 && ((avctx->width & 1) || (int64_t)avctx->width * avctx->height > INT_MAX / 6)) {
165  av_log(avctx, AV_LOG_ERROR, "Strideless v210 is not supported for size %dx%d\n", avctx->width, avctx->height);
166  return AVERROR_INVALIDDATA;
167  }
168 
169  if (stride > 0 && avpkt->size < (int64_t)stride * avctx->height ||
170  stride == 0 && avpkt->size < v210_stride(avctx->width * avctx->height, 6)) {
171  av_log(avctx, AV_LOG_ERROR, "packet too small\n");
172  return AVERROR_INVALIDDATA;
173  }
174  if ( avctx->codec_tag == MKTAG('C', '2', '1', '0')
175  && avpkt->size > 64
176  && AV_RN32(psrc) == AV_RN32("INFO")
177  && avpkt->size - 64 >= stride * avctx->height)
178  psrc += 64;
179 
180  aligned_input = !((uintptr_t)psrc & 0x1f) && !(stride & 0x1f);
181  if (aligned_input != s->aligned_input) {
182  s->aligned_input = aligned_input;
184  }
185 
186  if ((ret = ff_thread_get_buffer(avctx, pic, 0)) < 0)
187  return ret;
188 
190  pic->key_frame = 1;
191 
192  if (stride) {
193  td.stride = stride;
194  td.buf = (uint8_t*)psrc;
195  td.frame = pic;
196  avctx->execute2(avctx, v210_decode_slice, &td, NULL, s->thread_count);
197  } else {
198  uint8_t *pointers[4];
199  int linesizes[4];
200  int ret = av_image_alloc(pointers, linesizes, avctx->width, avctx->height, avctx->pix_fmt, 1);
201  if (ret < 0)
202  return ret;
203  decode_row((const uint32_t *)psrc, (uint16_t *)pointers[0], (uint16_t *)pointers[1], (uint16_t *)pointers[2], avctx->width * avctx->height, s->unpack_frame);
204  av_image_copy(pic->data, pic->linesize, (const uint8_t **)pointers, linesizes, avctx->pix_fmt, avctx->width, avctx->height);
205  av_freep(&pointers[0]);
206  }
207 
208  if (avctx->field_order > AV_FIELD_PROGRESSIVE) {
209  /* we have interlaced material flagged in container */
210  pic->interlaced_frame = 1;
211  if (avctx->field_order == AV_FIELD_TT || avctx->field_order == AV_FIELD_TB)
212  pic->top_field_first = 1;
213  }
214 
215  *got_frame = 1;
216 
217  return avpkt->size;
218 }
219 
220 #define V210DEC_FLAGS AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
221 static const AVOption v210dec_options[] = {
222  {"custom_stride", "Custom V210 stride", offsetof(V210DecContext, custom_stride), AV_OPT_TYPE_INT,
223  {.i64 = 0}, -1, INT_MAX, V210DEC_FLAGS},
224  {NULL}
225 };
226 
227 static const AVClass v210dec_class = {
228  .class_name = "V210 Decoder",
229  .item_name = av_default_item_name,
230  .option = v210dec_options,
231  .version = LIBAVUTIL_VERSION_INT,
232 };
233 
235  .p.name = "v210",
236  CODEC_LONG_NAME("Uncompressed 4:2:2 10-bit"),
237  .p.type = AVMEDIA_TYPE_VIDEO,
238  .p.id = AV_CODEC_ID_V210,
239  .priv_data_size = sizeof(V210DecContext),
240  .init = decode_init,
242  .p.capabilities = AV_CODEC_CAP_DR1 |
245  .p.priv_class = &v210dec_class,
246 };
v210dec_options
static const AVOption v210dec_options[]
Definition: v210dec.c:221
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:186
td
#define td
Definition: regdef.h:70
AV_FIELD_PROGRESSIVE
@ AV_FIELD_PROGRESSIVE
Definition: codec_par.h:40
v210_stride
static int v210_stride(int width, int align)
Definition: v210dec.c:130
av_clip
#define av_clip
Definition: common.h:95
u
#define u(width, name, range_min, range_max)
Definition: cbs_h2645.c:262
decode_init
static av_cold int decode_init(AVCodecContext *avctx)
Definition: v210dec.c:40
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:330
ThreadData::stride
int stride
Definition: v210dec.c:37
w
uint8_t w
Definition: llviddspenc.c:38
AVPacket::data
uint8_t * data
Definition: packet.h:374
AVCodecContext::field_order
enum AVFieldOrder field_order
Field order.
Definition: avcodec.h:1031
READ_PIXELS
#define READ_PIXELS(a, b, c)
Definition: v210dec_init.h:34
AVFrame::top_field_first
int top_field_first
If the content is interlaced, is top field displayed first.
Definition: frame.h:491
AVOption
AVOption.
Definition: opt.h:251
decode_frame
static int decode_frame(AVCodecContext *avctx, AVFrame *pic, int *got_frame, AVPacket *avpkt)
Definition: v210dec.c:135
FFCodec
Definition: codec_internal.h:127
ThreadData::frame
AVFrame * frame
Definition: dsddec.c:70
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
v210dec_init.h
thread.h
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:351
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
AVCodecContext::thread_count
int thread_count
thread count is used to decide how many independent tasks should be passed to execute()
Definition: avcodec.h:1502
ff_thread_get_buffer
the pkt_dts and pkt_pts fields in AVFrame will work as usual Restrictions on codec whose streams don t reset across will not work because their bitstreams cannot be decoded in parallel *The contents of buffers must not be read before as well as code calling up to before the decode process starts Call have so the codec calls ff_thread_report set FF_CODEC_CAP_ALLOCATE_PROGRESS in AVCodec caps_internal and use ff_thread_get_buffer() to allocate frames. The frames must then be freed with ff_thread_release_buffer(). Otherwise decode directly into the user-supplied frames. Call ff_thread_report_progress() after some part of the current picture has decoded. A good place to put this is where draw_horiz_band() is called - add this if it isn 't called anywhere
unpack_frame
static void unpack_frame(EVRCContext *e)
Frame unpacking for RATE_FULL, RATE_HALF and RATE_QUANT.
Definition: evrcdec.c:110
AVFrame::key_frame
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:422
val
static double val(void *priv, double ch)
Definition: aeval.c:77
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
av_cold
#define av_cold
Definition: attributes.h:90
width
#define width
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:306
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:256
ff_v210dec_init
static av_unused av_cold void ff_v210dec_init(V210DecContext *s)
Definition: v210dec_init.h:54
slice_end
static int slice_end(AVCodecContext *avctx, AVFrame *pict)
Handle slice ends.
Definition: mpeg12dec.c:2006
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts_bsf.c:365
AVCodecContext::bits_per_raw_sample
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:1487
pointers
Undefined Behavior In the C some operations are like signed integer dereferencing freed pointers
Definition: undefined.txt:4
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
V210DecContext
Definition: v210dec.h:26
arg
const char * arg
Definition: jacosubdec.c:67
AV_CODEC_CAP_FRAME_THREADS
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: codec.h:107
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:274
AV_RN32
#define AV_RN32(p)
Definition: intreadwrite.h:364
AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:460
av_image_alloc
int av_image_alloc(uint8_t *pointers[4], int linesizes[4], int w, int h, enum AVPixelFormat pix_fmt, int align)
Allocate an image with size w and h and pixel format pix_fmt, and fill pointers and linesizes accordi...
Definition: imgutils.c:218
AVFrame::pict_type
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:427
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
AVPacket::size
int size
Definition: packet.h:375
codec_internal.h
AV_CODEC_ID_V210
@ AV_CODEC_ID_V210
Definition: codec_id.h:179
align
static const uint8_t *BS_FUNC() align(BSCTX *bc)
Skip bits to a byte boundary.
Definition: bitstream_template.h:411
AV_FIELD_TT
@ AV_FIELD_TT
Top coded_first, top displayed first.
Definition: codec_par.h:41
AV_CODEC_CAP_SLICE_THREADS
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: codec.h:111
ff_v210_decoder
const FFCodec ff_v210_decoder
Definition: v210dec.c:234
v210dec_class
static const AVClass v210dec_class
Definition: v210dec.c:227
AVFrame::interlaced_frame
int interlaced_frame
The content of the picture is interlaced.
Definition: frame.h:486
internal.h
ThreadData
Used for passing data between threads.
Definition: dsddec.c:69
av_le2ne32
#define av_le2ne32(x)
Definition: bswap.h:98
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:191
ThreadData::buf
uint8_t * buf
Definition: v210dec.c:36
AVCodecContext::height
int height
Definition: avcodec.h:598
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:635
avcodec.h
stride
#define stride
Definition: h264pred_template.c:537
pv
#define pv
Definition: regdef.h:60
ret
ret
Definition: filter_design.txt:187
bswap.h
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:71
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
AVCodecContext
main external API structure.
Definition: avcodec.h:426
decode_row
static void decode_row(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, const int width, void(*unpack_frame)(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width))
Definition: v210dec.c:54
av_image_copy
void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4], const uint8_t *src_data[4], const int src_linesizes[4], enum AVPixelFormat pix_fmt, int width, int height)
Copy image in src_data to dst_data.
Definition: imgutils.c:422
V210DEC_FLAGS
#define V210DEC_FLAGS
Definition: v210dec.c:220
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:225
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVCodecContext::codec_tag
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:451
AVPacket
This structure stores compressed data.
Definition: packet.h:351
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:453
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
v210_decode_slice
static int v210_decode_slice(AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
Definition: v210dec.c:106
src
INIT_CLIP pixel * src
Definition: h264pred_template.c:418
AV_FIELD_TB
@ AV_FIELD_TB
Top coded first, bottom displayed first.
Definition: codec_par.h:43
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:598
imgutils.h
AVFrame::linesize
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition: frame.h:375
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
MKTAG
#define MKTAG(a, b, c, d)
Definition: macros.h:55
h
h
Definition: vp9dsp_template.c:2038
AVCodecContext::execute2
int(* execute2)(struct AVCodecContext *c, int(*func)(struct AVCodecContext *c2, void *arg, int jobnr, int threadnr), void *arg2, int *ret, int count)
The codec may call this to execute several independent things.
Definition: avcodec.h:1551
v210dec.h