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 "internal.h"
26 #include "v210dec.h"
27 #include "libavutil/bswap.h"
28 #include "libavutil/internal.h"
29 #include "libavutil/intreadwrite.h"
30 #include "thread.h"
31 
32 #define READ_PIXELS(a, b, c) \
33  do { \
34  val = av_le2ne32(*src++); \
35  *a++ = val & 0x3FF; \
36  *b++ = (val >> 10) & 0x3FF; \
37  *c++ = (val >> 20) & 0x3FF; \
38  } while (0)
39 
40 typedef struct ThreadData {
41  AVFrame *frame;
42  uint8_t *buf;
43  int stride;
44 } ThreadData;
45 
46 static void v210_planar_unpack_c(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
47 {
48  uint32_t val;
49  int i;
50 
51  for( i = 0; i < width-5; i += 6 ){
52  READ_PIXELS(u, y, v);
53  READ_PIXELS(y, u, y);
54  READ_PIXELS(v, y, u);
55  READ_PIXELS(y, v, y);
56  }
57 }
58 
60 {
61  s->unpack_frame = v210_planar_unpack_c;
62  if (ARCH_X86)
64 }
65 
67 {
68  V210DecContext *s = avctx->priv_data;
69 
71  avctx->bits_per_raw_sample = 10;
72 
73  s->thread_count = av_clip(avctx->thread_count, 1, avctx->height/4);
74  s->aligned_input = 0;
76 
77  return 0;
78 }
79 
80 static int v210_decode_slice(AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
81 {
82  V210DecContext *s = avctx->priv_data;
83  int h, w;
84  ThreadData *td = arg;
85  AVFrame *frame = td->frame;
86  int stride = td->stride;
87  int slice_start = (avctx->height * jobnr) / s->thread_count;
88  int slice_end = (avctx->height * (jobnr+1)) / s->thread_count;
89  uint8_t *psrc = td->buf + stride * slice_start;
90  uint16_t *y, *u, *v;
91 
92  y = (uint16_t*)frame->data[0] + slice_start * frame->linesize[0] / 2;
93  u = (uint16_t*)frame->data[1] + slice_start * frame->linesize[1] / 2;
94  v = (uint16_t*)frame->data[2] + slice_start * frame->linesize[2] / 2;
95  for (h = slice_start; h < slice_end; h++) {
96  const uint32_t *src = (const uint32_t*)psrc;
97  uint32_t val;
98 
99  w = (avctx->width / 12) * 12;
100  s->unpack_frame(src, y, u, v, w);
101 
102  y += w;
103  u += w >> 1;
104  v += w >> 1;
105  src += (w << 1) / 3;
106 
107  if (w < avctx->width - 5) {
108  READ_PIXELS(u, y, v);
109  READ_PIXELS(y, u, y);
110  READ_PIXELS(v, y, u);
111  READ_PIXELS(y, v, y);
112  w += 6;
113  }
114 
115  if (w < avctx->width - 1) {
116  READ_PIXELS(u, y, v);
117 
118  val = av_le2ne32(*src++);
119  *y++ = val & 0x3FF;
120  if (w < avctx->width - 3) {
121  *u++ = (val >> 10) & 0x3FF;
122  *y++ = (val >> 20) & 0x3FF;
123 
124  val = av_le2ne32(*src++);
125  *v++ = val & 0x3FF;
126  *y++ = (val >> 10) & 0x3FF;
127  }
128  }
129 
130  psrc += stride;
131  y += frame->linesize[0] / 2 - avctx->width + (avctx->width & 1);
132  u += frame->linesize[1] / 2 - avctx->width / 2;
133  v += frame->linesize[2] / 2 - avctx->width / 2;
134  }
135 
136  return 0;
137 }
138 
139 static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
140  AVPacket *avpkt)
141 {
142  V210DecContext *s = avctx->priv_data;
143  ThreadData td;
144  int ret, stride, aligned_input;
145  ThreadFrame frame = { .f = data };
146  AVFrame *pic = data;
147  const uint8_t *psrc = avpkt->data;
148 
149  if (s->custom_stride )
150  stride = s->custom_stride;
151  else {
152  int aligned_width = ((avctx->width + 47) / 48) * 48;
153  stride = aligned_width * 8 / 3;
154  }
155 
156  if (avpkt->size < stride * avctx->height) {
157  if ((((avctx->width + 23) / 24) * 24 * 8) / 3 * avctx->height == avpkt->size) {
158  stride = avpkt->size / avctx->height;
159  if (!s->stride_warning_shown)
160  av_log(avctx, AV_LOG_WARNING, "Broken v210 with too small padding (64 byte) detected\n");
161  s->stride_warning_shown = 1;
162  } else {
163  av_log(avctx, AV_LOG_ERROR, "packet too small\n");
164  return AVERROR_INVALIDDATA;
165  }
166  }
167  td.stride = stride;
168  if ( avctx->codec_tag == MKTAG('C', '2', '1', '0')
169  && avpkt->size > 64
170  && AV_RN32(psrc) == AV_RN32("INFO")
171  && avpkt->size - 64 >= stride * avctx->height)
172  psrc += 64;
173 
174  aligned_input = !((uintptr_t)psrc & 0x1f) && !(stride & 0x1f);
175  if (aligned_input != s->aligned_input) {
176  s->aligned_input = aligned_input;
178  }
179 
180  if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
181  return ret;
182 
184  pic->key_frame = 1;
185 
186  td.buf = (uint8_t*)psrc;
187  td.frame = pic;
188  avctx->execute2(avctx, v210_decode_slice, &td, NULL, s->thread_count);
189 
190  if (avctx->field_order > AV_FIELD_PROGRESSIVE) {
191  /* we have interlaced material flagged in container */
192  pic->interlaced_frame = 1;
193  if (avctx->field_order == AV_FIELD_TT || avctx->field_order == AV_FIELD_TB)
194  pic->top_field_first = 1;
195  }
196 
197  *got_frame = 1;
198 
199  return avpkt->size;
200 }
201 
202 #define V210DEC_FLAGS AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
203 static const AVOption v210dec_options[] = {
204  {"custom_stride", "Custom V210 stride", offsetof(V210DecContext, custom_stride), AV_OPT_TYPE_INT,
205  {.i64 = 0}, INT_MIN, INT_MAX, V210DEC_FLAGS},
206  {NULL}
207 };
208 
209 static const AVClass v210dec_class = {
210  .class_name = "V210 Decoder",
211  .item_name = av_default_item_name,
212  .option = v210dec_options,
213  .version = LIBAVUTIL_VERSION_INT,
214 };
215 
217  .name = "v210",
218  .long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
219  .type = AVMEDIA_TYPE_VIDEO,
220  .id = AV_CODEC_ID_V210,
221  .priv_data_size = sizeof(V210DecContext),
222  .init = decode_init,
223  .decode = decode_frame,
224  .capabilities = AV_CODEC_CAP_DR1 |
227  .priv_class = &v210dec_class,
228  .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
229 };
AVCodec
AVCodec.
Definition: codec.h:202
v210dec_options
static const AVOption v210dec_options[]
Definition: v210dec.c:203
stride
int stride
Definition: mace.c:144
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:186
FF_CODEC_CAP_INIT_THREADSAFE
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:42
td
#define td
Definition: regdef.h:70
av_clip
#define av_clip
Definition: common.h:96
v210_planar_unpack_c
static void v210_planar_unpack_c(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
Definition: v210dec.c:46
u
#define u(width, name, range_min, range_max)
Definition: cbs_h2645.c:264
decode_init
static av_cold int decode_init(AVCodecContext *avctx)
Definition: v210dec.c:66
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:317
ThreadData::stride
int stride
Definition: v210dec.c:43
w
uint8_t w
Definition: llviddspenc.c:38
internal.h
AVPacket::data
uint8_t * data
Definition: packet.h:373
AVCodecContext::field_order
enum AVFieldOrder field_order
Field order.
Definition: avcodec.h:989
AVFrame::top_field_first
int top_field_first
If the content is interlaced, is top field displayed first.
Definition: frame.h:474
AVOption
AVOption.
Definition: opt.h:247
READ_PIXELS
#define READ_PIXELS(a, b, c)
Definition: v210dec.c:32
data
const char data[16]
Definition: mxf.c:143
ThreadData::frame
AVFrame * frame
Definition: dsddec.c:68
thread.h
ff_v210dec_init
av_cold void ff_v210dec_init(V210DecContext *s)
Definition: v210dec.c:59
init
static int init
Definition: av_tx.c:47
AV_FIELD_TT
@ AV_FIELD_TT
Definition: codec_par.h:39
AVCodecContext::thread_count
int thread_count
thread count is used to decide how many independent tasks should be passed to execute()
Definition: avcodec.h:1440
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
AVFrame::key_frame
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:409
val
static double val(void *priv, double ch)
Definition: aeval.c:76
AV_FIELD_TB
@ AV_FIELD_TB
Definition: codec_par.h:41
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
decode
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:71
width
#define width
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:257
slice_end
static int slice_end(AVCodecContext *avctx, AVFrame *pict)
Handle slice ends.
Definition: mpeg12dec.c:2042
AVCodecContext::bits_per_raw_sample
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:1425
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:113
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:235
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:274
AV_RN32
#define AV_RN32(p)
Definition: intreadwrite.h:364
src
#define src
Definition: vp8dsp.c:255
AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:405
decode_frame
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: v210dec.c:139
AVFrame::pict_type
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:414
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:374
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
AV_CODEC_ID_V210
@ AV_CODEC_ID_V210
Definition: codec_id.h:177
ff_v210_decoder
const AVCodec ff_v210_decoder
Definition: v210dec.c:216
AV_CODEC_CAP_SLICE_THREADS
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: codec.h:117
v210dec_class
static const AVClass v210dec_class
Definition: v210dec.c:209
AVFrame::interlaced_frame
int interlaced_frame
The content of the picture is interlaced.
Definition: frame.h:469
ThreadData::buf
uint8_t * buf
Definition: v210dec.c:42
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
internal.h
ThreadData
Used for passing data between threads.
Definition: dsddec.c:67
av_le2ne32
#define av_le2ne32(x)
Definition: bswap.h:96
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:209
AVCodecContext::height
int height
Definition: avcodec.h:556
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:593
avcodec.h
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:383
ThreadFrame
Definition: thread.h:34
V210DEC_FLAGS
#define V210DEC_FLAGS
Definition: v210dec.c:202
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:224
ff_v210_x86_init
void ff_v210_x86_init(V210DecContext *s)
Definition: v210-init.c:31
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AV_FIELD_PROGRESSIVE
@ AV_FIELD_PROGRESSIVE
Definition: codec_par.h:38
AVCodecContext::codec_tag
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:408
AVPacket
This structure stores compressed data.
Definition: packet.h:350
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:410
v210_decode_slice
static int v210_decode_slice(AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
Definition: v210dec.c:80
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:556
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
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:1511
v210dec.h