Libav
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 Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
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;
40  avctx->coded_frame->key_frame = 1;
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_packet(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  .long_name = NULL_IF_CONFIG_SMALL("raw video"),
75  .type = AVMEDIA_TYPE_VIDEO,
77  .priv_data_size = sizeof(AVFrame),
79  .encode2 = raw_encode,
80 };
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:1599
This structure describes decoded (raw) audio or video data.
Definition: frame.h:135
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2526
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:1571
static int raw_encode(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: rawenc.c:47
int size
Definition: avcodec.h:968
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1248
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.
Definition: avpicture.c:49
four components are given, that's all.
Definition: avcodec.h:3020
AVCodec.
Definition: avcodec.h:2790
#define av_cold
Definition: attributes.h:66
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:175
uint8_t * data
Definition: avcodec.h:967
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition: avcodec.h:2501
static av_cold int raw_encode_init(AVCodecContext *avctx)
Definition: rawenc.c:34
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1013
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:150
const char * name
Name of the codec implementation.
Definition: avcodec.h:2797
AVCodec ff_rawvideo_encoder
Definition: rawenc.c:72
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:973
common internal API header
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:196
Raw Video Codec.
int width
picture width / height.
Definition: avcodec.h:1218
int ff_alloc_packet(AVPacket *avpkt, int size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1236
#define AV_RL32
Definition: intreadwrite.h:146
Libavcodec external API header.
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
main external API structure.
Definition: avcodec.h:1044
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1076
packed YUV 4:2:2, 16bpp, Y0 Cb Y1 Cr
Definition: pixfmt.h:66
common internal api header.
static av_cold int init(AVCodecParserContext *s)
Definition: h264_parser.c:499
void * priv_data
Definition: avcodec.h:1086
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:85
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:191
This structure stores compressed data.
Definition: avcodec.h:944