v408enc.c
Go to the documentation of this file.
1 /*
2  * v408 encoder
3  *
4  * Copyright (c) 2012 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 "libavutil/intreadwrite.h"
24 #include "avcodec.h"
25 #include "internal.h"
26 
28 {
30 
31  if (!avctx->coded_frame) {
32  av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");
33  return AVERROR(ENOMEM);
34  }
35 
36  return 0;
37 }
38 
40  const AVFrame *pic, int *got_packet)
41 {
42  uint8_t *dst;
43  uint8_t *y, *u, *v, *a;
44  int i, j, ret;
45 
46  if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width * avctx->height * 4)) < 0)
47  return ret;
48  dst = pkt->data;
49 
50  avctx->coded_frame->key_frame = 1;
52 
53  y = pic->data[0];
54  u = pic->data[1];
55  v = pic->data[2];
56  a = pic->data[3];
57 
58  for (i = 0; i < avctx->height; i++) {
59  for (j = 0; j < avctx->width; j++) {
60  if (avctx->codec_id==AV_CODEC_ID_AYUV) {
61  *dst++ = v[j];
62  *dst++ = u[j];
63  *dst++ = y[j];
64  *dst++ = a[j];
65  } else {
66  *dst++ = u[j];
67  *dst++ = y[j];
68  *dst++ = v[j];
69  *dst++ = a[j];
70  }
71  }
72  y += pic->linesize[0];
73  u += pic->linesize[1];
74  v += pic->linesize[2];
75  a += pic->linesize[3];
76  }
77 
78  pkt->flags |= AV_PKT_FLAG_KEY;
79  *got_packet = 1;
80  return 0;
81 }
82 
84 {
85  av_freep(&avctx->coded_frame);
86 
87  return 0;
88 }
89 
90 #if CONFIG_AYUV_ENCODER
91 AVCodec ff_ayuv_encoder = {
92  .name = "ayuv",
93  .type = AVMEDIA_TYPE_VIDEO,
94  .id = AV_CODEC_ID_AYUV,
95  .init = v408_encode_init,
96  .encode2 = v408_encode_frame,
97  .close = v408_encode_close,
98  .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUVA444P, AV_PIX_FMT_NONE },
99  .long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed MS 4:4:4:4"),
100 };
101 #endif
102 #if CONFIG_V408_ENCODER
103 AVCodec ff_v408_encoder = {
104  .name = "v408",
105  .type = AVMEDIA_TYPE_VIDEO,
106  .id = AV_CODEC_ID_V408,
107  .init = v408_encode_init,
108  .encode2 = v408_encode_frame,
109  .close = v408_encode_close,
110  .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUVA444P, AV_PIX_FMT_NONE },
111  .long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed QT 4:4:4:4"),
112 };
113 #endif
float v
This structure describes decoded (raw) audio or video data.
Definition: frame.h:76
static av_cold int v408_encode_init(AVCodecContext *avctx)
Definition: v408enc.c:27
AVFrame * coded_frame
the picture in the bitstream
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:198
uint8_t
#define av_cold
Definition: attributes.h:78
static AVPacket pkt
Definition: demuxing.c:56
uint8_t * data
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
const char * name
Name of the codec implementation.
external API header
int flags
A combination of AV_PKT_FLAG values.
AVFrame * avcodec_alloc_frame(void)
Allocate an AVFrame and set its fields to default values.
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:144
ret
Definition: avfilter.c:821
int width
picture width / height.
float u
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int size)
Check AVPacket size and/or allocate data.
enum AVCodecID codec_id
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:101
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:218
main external API structure.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
synthesis window for stochastic i
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:87
common internal api header.
static int v408_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
Definition: v408enc.c:39
function y
Definition: D.m:1
static av_cold int v408_encode_close(AVCodecContext *avctx)
Definition: v408enc.c:83
else dst[i][x+y *dst_stride[i]]
Definition: vf_mcdeint.c:160
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:139
AVPixelFormat
Pixel format.
Definition: pixfmt.h:66
This structure stores compressed data.