libavcodec/rawenc.c
Go to the documentation of this file.
1 /*
2  * Raw Video Encoder
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * Raw Video Encoder
25  */
26 
27 #include "avcodec.h"
28 #include "raw.h"
29 #include "internal.h"
30 #include "libavutil/pixdesc.h"
31 #include "libavutil/intreadwrite.h"
32 #include "libavutil/internal.h"
33 
35 {
36  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
37 
38  avctx->coded_frame = avctx->priv_data;
42  if(!avctx->codec_tag)
44  return 0;
45 }
46 
47 static int raw_encode(AVCodecContext *avctx, AVPacket *pkt,
48  const AVFrame *frame, int *got_packet)
49 {
50  int ret = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
51 
52  if (ret < 0)
53  return ret;
54 
55  if ((ret = ff_alloc_packet2(avctx, pkt, ret)) < 0)
56  return ret;
57  if ((ret = avpicture_layout((const AVPicture *)frame, avctx->pix_fmt, avctx->width,
58  avctx->height, pkt->data, pkt->size)) < 0)
59  return ret;
60 
61  if(avctx->codec_tag == AV_RL32("yuv2") && ret > 0 &&
62  avctx->pix_fmt == AV_PIX_FMT_YUYV422) {
63  int x;
64  for(x = 1; x < avctx->height*avctx->width*2; x += 2)
65  pkt->data[x] ^= 0x80;
66  }
67  pkt->flags |= AV_PKT_FLAG_KEY;
68  *got_packet = 1;
69  return 0;
70 }
71 
73  .name = "rawvideo",
74  .type = AVMEDIA_TYPE_VIDEO,
76  .priv_data_size = sizeof(AVFrame),
78  .encode2 = raw_encode,
79  .long_name = NULL_IF_CONFIG_SMALL("raw video"),
80 };
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:1778
This structure describes decoded (raw) audio or video data.
Definition: frame.h:76
struct AVFrame AVFrame
This structure describes decoded (raw) audio or video data.
AVFrame * coded_frame
the picture in the bitstream
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
int av_get_bits_per_pixel(const AVPixFmtDescriptor *pixdesc)
Return the number of bits per pixel used by the pixel format described by pixdesc.
Definition: pixdesc.c:1731
static int raw_encode(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
int avpicture_layout(const AVPicture *src, enum AVPixelFormat pix_fmt, int width, int height, unsigned char *dest, int dest_size)
Copy pixel data from an AVPicture into a buffer, always assume a linesize alignment of 1...
Definition: avpicture.c:41
four components are given, that&#39;s all.
#define av_cold
Definition: attributes.h:78
unsigned int avcodec_pix_fmt_to_codec_tag(enum AVPixelFormat pix_fmt)
Return a value representing the fourCC code associated to the pixel format pix_fmt, or 0 if no associated fourCC code can be found.
Definition: raw.c:199
static AVPacket pkt
Definition: demuxing.c:56
uint8_t * data
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
static av_cold int raw_init_encoder(AVCodecContext *avctx)
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
frame
Definition: stft.m:14
Discrete Time axis x
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
const char * name
Name of the codec implementation.
external API header
AVCodec ff_rawvideo_encoder
int flags
A combination of AV_PKT_FLAG values.
common internal API header
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:144
Raw Video Codec.
ret
Definition: avfilter.c:821
int width
picture width / height.
#define AV_RL32
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int size)
Check AVPacket size and/or allocate data.
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:55
main external API structure.
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> (&#39;D&#39;<<24) + (&#39;C&#39;<<16) + (&#39;B&#39;<<8) + &#39;A&#39;).
packed YUV 4:2:2, 16bpp, Y0 Cb Y1 Cr
Definition: pixfmt.h:69
void avcodec_get_frame_defaults(AVFrame *frame)
Set the fields of the given AVFrame to default values.
common internal api header.
int avpicture_get_size(enum AVPixelFormat pix_fmt, int width, int height)
Calculate the size in bytes that a picture of the given width and height would occupy if stored in th...
Definition: avpicture.c:49
This structure stores compressed data.