FFmpeg  2.1.1
v210enc.c
Go to the documentation of this file.
1 /*
2  * V210 encoder
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 "bytestream.h"
26 #include "internal.h"
27 
29 {
30  if (avctx->width & 1) {
31  av_log(avctx, AV_LOG_ERROR, "v210 needs even width\n");
32  return AVERROR(EINVAL);
33  }
34 
35  if (avctx->bits_per_raw_sample != 10)
36  av_log(avctx, AV_LOG_WARNING, "bits per raw sample: %d != 10-bit\n",
37  avctx->bits_per_raw_sample);
38 
40  if (!avctx->coded_frame)
41  return AVERROR(ENOMEM);
42 
44 
45  return 0;
46 }
47 
49  const AVFrame *pic, int *got_packet)
50 {
51  int aligned_width = ((avctx->width + 47) / 48) * 48;
52  int stride = aligned_width * 8 / 3;
53  int line_padding = stride - ((avctx->width * 8 + 11) / 12) * 4;
54  int h, w, ret;
55  const uint16_t *y = (const uint16_t*)pic->data[0];
56  const uint16_t *u = (const uint16_t*)pic->data[1];
57  const uint16_t *v = (const uint16_t*)pic->data[2];
59 
60  if ((ret = ff_alloc_packet2(avctx, pkt, avctx->height * stride)) < 0)
61  return ret;
62 
63  bytestream2_init_writer(&p, pkt->data, pkt->size);
64 
65 #define CLIP(v) av_clip(v, 4, 1019)
66 
67 #define WRITE_PIXELS(a, b, c) \
68  do { \
69  val = CLIP(*a++); \
70  val |= (CLIP(*b++) << 10) | \
71  (CLIP(*c++) << 20); \
72  bytestream2_put_le32u(&p, val); \
73  } while (0)
74 
75  for (h = 0; h < avctx->height; h++) {
76  uint32_t val;
77  for (w = 0; w < avctx->width - 5; w += 6) {
78  WRITE_PIXELS(u, y, v);
79  WRITE_PIXELS(y, u, y);
80  WRITE_PIXELS(v, y, u);
81  WRITE_PIXELS(y, v, y);
82  }
83  if (w < avctx->width - 1) {
84  WRITE_PIXELS(u, y, v);
85 
86  val = CLIP(*y++);
87  if (w == avctx->width - 2)
88  bytestream2_put_le32u(&p, val);
89  if (w < avctx->width - 3) {
90  val |= (CLIP(*u++) << 10) | (CLIP(*y++) << 20);
91  bytestream2_put_le32u(&p, val);
92 
93  val = CLIP(*v++) | (CLIP(*y++) << 10);
94  bytestream2_put_le32u(&p, val);
95  }
96  }
97 
98  bytestream2_set_buffer(&p, 0, line_padding);
99 
100  y += pic->linesize[0] / 2 - avctx->width;
101  u += pic->linesize[1] / 2 - avctx->width / 2;
102  v += pic->linesize[2] / 2 - avctx->width / 2;
103  }
104 
105  pkt->flags |= AV_PKT_FLAG_KEY;
106  *got_packet = 1;
107  return 0;
108 }
109 
111 {
112  av_freep(&avctx->coded_frame);
113 
114  return 0;
115 }
116 
118  .name = "v210",
119  .long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
120  .type = AVMEDIA_TYPE_VIDEO,
121  .id = AV_CODEC_ID_V210,
122  .init = encode_init,
123  .encode2 = encode_frame,
124  .close = encode_close,
125  .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV422P10, AV_PIX_FMT_NONE },
126 };
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1500
const char const char void * val
Definition: avisynth_c.h:671
float v
static av_always_inline void bytestream2_set_buffer(PutByteContext *p, const uint8_t c, unsigned int size)
Definition: bytestream.h:304
This structure describes decoded (raw) audio or video data.
Definition: frame.h:96
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: avcodec.h:4153
AVFrame * avcodec_alloc_frame(void)
Allocate an AVFrame and set its fields to default values.
Definition: utils.c:1071
int size
Definition: avcodec.h:1064
static av_always_inline void bytestream2_init_writer(PutByteContext *p, uint8_t *buf, int buf_size)
Definition: bytestream.h:141
void av_log(void *avcl, int level, const char *fmt,...) av_printf_format(3
Send the specified message to the log if the level is less than or equal to the current av_log_level...
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:2570
Pixel format.
Definition: avcodec.h:4533
int stride
Definition: mace.c:144
AVCodec.
Definition: avcodec.h:2922
#define av_cold
Definition: avcodec.h:653
void av_freep(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:234
if((e=av_dict_get(options,"", NULL, AV_DICT_IGNORE_SUFFIX)))
Definition: avfilter.c:965
#define WRITE_PIXELS(a, b, c)
#define CLIP(v)
const char * name
Name of the codec implementation.
Definition: avcodec.h:2929
static av_cold int encode_init(AVCodecContext *avctx)
Definition: v210enc.c:28
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1113
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: avcodec.h:4147
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:151
Libavcodec external API header.
AVPixelFormat
Pixel format.
Definition: pixfmt.h:66
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1069
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:167
float y
ret
Definition: avfilter.c:961
int width
picture width / height.
Definition: avcodec.h:1314
float u
static av_cold int encode_close(AVCodecContext *avctx)
Definition: v210enc.c:110
int AC3_NAME() encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
static int width
Definition: utils.c:158
main external API structure.
Definition: avcodec.h:1146
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2588
uint8_t * data
Definition: avcodec.h:1063
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:124
common internal api header.
AVCodec ff_v210_encoder
Definition: v210enc.c:117
#define AVERROR(e)
#define AV_PIX_FMT_YUV422P10
Definition: avcodec.h:4949
static AVPacket pkt
Definition: demuxing.c:52
This structure stores compressed data.
Definition: avcodec.h:1040
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:107