FFmpeg
yuv4enc.c
Go to the documentation of this file.
1 /*
2  * libquicktime yuv4 encoder
3  *
4  * Copyright (c) 2011 Carl Eugen Hoyos
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include "avcodec.h"
24 #include "codec_internal.h"
25 #include "encode.h"
26 
28  const AVFrame *pic, int *got_packet)
29 {
30  uint8_t *dst;
31  const uint8_t *y, *u, *v;
32  int ret;
33 
34  ret = ff_get_encode_buffer(avctx, pkt, 6 * ((avctx->width + 1) / 2)
35  * ((avctx->height + 1) / 2), 0);
36  if (ret < 0)
37  return ret;
38  dst = pkt->data;
39 
40  y = pic->data[0];
41  u = pic->data[1];
42  v = pic->data[2];
43 
44  for (int i = 0; i < avctx->height / 2; i++) {
45  for (int j = 0; j < (avctx->width + 1) / 2; j++) {
46  *dst++ = u[j] ^ 0x80;
47  *dst++ = v[j] ^ 0x80;
48  *dst++ = y[ 2 * j ];
49  *dst++ = y[ 2 * j + 1];
50  *dst++ = y[pic->linesize[0] + 2 * j ];
51  *dst++ = y[pic->linesize[0] + 2 * j + 1];
52  }
53  y += 2 * pic->linesize[0];
54  u += pic->linesize[1];
55  v += pic->linesize[2];
56  }
57 
58  if (avctx->height & 1) {
59  for (int j = 0; j < (avctx->width + 1) / 2; j++) {
60  *dst++ = u[j] ^ 0x80;
61  *dst++ = v[j] ^ 0x80;
62  *dst++ = y[2 * j ];
63  *dst++ = y[2 * j + 1];
64  *dst++ = y[2 * j ];
65  *dst++ = y[2 * j + 1];
66  }
67  }
68 
69  *got_packet = 1;
70  return 0;
71 }
72 
74  .p.name = "yuv4",
75  CODEC_LONG_NAME("Uncompressed packed 4:2:0"),
76  .p.type = AVMEDIA_TYPE_VIDEO,
77  .p.id = AV_CODEC_ID_YUV4,
79  .p.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE },
81 };
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
u
#define u(width, name, range_min, range_max)
Definition: cbs_h2645.c:250
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:340
AVPacket::data
uint8_t * data
Definition: packet.h:522
encode.h
ff_yuv4_encoder
const FFCodec ff_yuv4_encoder
Definition: yuv4enc.c:73
FFCodec
Definition: codec_internal.h:127
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:361
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
AV_CODEC_ID_YUV4
@ AV_CODEC_ID_YUV4
Definition: codec_id.h:259
FF_CODEC_ENCODE_CB
#define FF_CODEC_ENCODE_CB(func)
Definition: codec_internal.h:296
pkt
AVPacket * pkt
Definition: movenc.c:59
yuv4_encode_frame
static int yuv4_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
Definition: yuv4enc.c:27
AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
Definition: codec.h:159
AV_PIX_FMT_YUV420P
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:73
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
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
codec_internal.h
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:255
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:194
AVCodecContext::height
int height
Definition: avcodec.h:618
avcodec.h
ret
ret
Definition: filter_design.txt:187
AVCodecContext
main external API structure.
Definition: avcodec.h:445
ff_get_encode_buffer
int ff_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int flags)
Get a buffer for a packet.
Definition: encode.c:105
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:72
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVPacket
This structure stores compressed data.
Definition: packet.h:499
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:618
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:385