FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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 = av_frame_alloc();
39  if (!avctx->coded_frame)
40  return AVERROR(ENOMEM);
41 
44  if(!avctx->codec_tag)
46  return 0;
47 }
48 
49 static int raw_encode(AVCodecContext *avctx, AVPacket *pkt,
50  const AVFrame *frame, int *got_packet)
51 {
52  int ret = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
53 
54  if (ret < 0)
55  return ret;
56 
57  if ((ret = ff_alloc_packet2(avctx, pkt, ret)) < 0)
58  return ret;
59  if ((ret = avpicture_layout((const AVPicture *)frame, avctx->pix_fmt, avctx->width,
60  avctx->height, pkt->data, pkt->size)) < 0)
61  return ret;
62 
63  if(avctx->codec_tag == AV_RL32("yuv2") && ret > 0 &&
64  avctx->pix_fmt == AV_PIX_FMT_YUYV422) {
65  int x;
66  for(x = 1; x < avctx->height*avctx->width*2; x += 2)
67  pkt->data[x] ^= 0x80;
68  }
69  pkt->flags |= AV_PKT_FLAG_KEY;
70  *got_packet = 1;
71  return 0;
72 }
73 
75 {
76  av_frame_free(&avctx->coded_frame);
77  return 0;
78 }
79 
81  .name = "rawvideo",
82  .long_name = NULL_IF_CONFIG_SMALL("raw video"),
83  .type = AVMEDIA_TYPE_VIDEO,
85  .init = raw_encode_init,
86  .close = raw_encode_close,
87  .encode2 = raw_encode,
88 };
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1736
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2090
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2745
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:2042
static int raw_encode(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: rawenc.c:49
int size
Definition: avcodec.h:1163
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1444
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:41
static AVPacket pkt
Picture data structure.
Definition: avcodec.h:3452
AVCodec.
Definition: avcodec.h:3181
static av_cold int raw_encode_close(AVCodecContext *avctx)
Definition: rawenc.c:74
#define av_cold
Definition: attributes.h:74
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:135
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:232
static AVFrame * frame
uint8_t * data
Definition: avcodec.h:1162
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition: avcodec.h:2720
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:1208
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:148
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
const char * name
Name of the codec implementation.
Definition: avcodec.h:3188
Libavcodec external API header.
AVCodec ff_rawvideo_encoder
Definition: rawenc.c:80
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1168
common internal API header
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:242
Raw Video Codec.
ret
Definition: avfilter.c:974
int width
picture width / height.
Definition: avcodec.h:1414
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:1241
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1273
packed YUV 4:2:2, 16bpp, Y0 Cb Y1 Cr
Definition: pixfmt.h:64
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
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:85
This structure stores compressed data.
Definition: avcodec.h:1139