FFmpeg  2.6.3
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules 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();
41  if(!avctx->codec_tag)
43  return 0;
44 }
45 
46 static int raw_encode(AVCodecContext *avctx, AVPacket *pkt,
47  const AVFrame *frame, int *got_packet)
48 {
49  int ret = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
50 
51  if (ret < 0)
52  return ret;
53 
54  if ((ret = ff_alloc_packet2(avctx, pkt, ret)) < 0)
55  return ret;
56  if ((ret = avpicture_layout((const AVPicture *)frame, avctx->pix_fmt, avctx->width,
57  avctx->height, pkt->data, pkt->size)) < 0)
58  return ret;
59 
60  if(avctx->codec_tag == AV_RL32("yuv2") && ret > 0 &&
61  avctx->pix_fmt == AV_PIX_FMT_YUYV422) {
62  int x;
63  for(x = 1; x < avctx->height*avctx->width*2; x += 2)
64  pkt->data[x] ^= 0x80;
65  }
66  pkt->flags |= AV_PKT_FLAG_KEY;
67  *got_packet = 1;
68  return 0;
69 }
70 
71 static av_cold int raw_close(AVCodecContext *avctx)
72 {
73  av_frame_free(&avctx->coded_frame);
74  return 0;
75 }
76 
78  .name = "rawvideo",
79  .long_name = NULL_IF_CONFIG_SMALL("raw video"),
80  .type = AVMEDIA_TYPE_VIDEO,
82  .init = raw_encode_init,
83  .encode2 = raw_encode,
84  .close = raw_close,
85 };
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1720
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2029
This structure describes decoded (raw) audio or video data.
Definition: frame.h:163
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2743
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:1981
static int raw_encode(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: rawenc.c:46
int size
Definition: avcodec.h:1161
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1442
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:3439
AVCodec.
Definition: avcodec.h:3173
#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:1160
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition: avcodec.h:2718
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:1206
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:180
const char * name
Name of the codec implementation.
Definition: avcodec.h:3180
Libavcodec external API header.
AVCodec ff_rawvideo_encoder
Definition: rawenc.c:77
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1166
common internal API header
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:234
Raw Video Codec.
ret
Definition: avfilter.c:974
int width
picture width / height.
Definition: avcodec.h:1412
#define AV_RL32
Definition: intreadwrite.h:146
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:1239
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1271
packed YUV 4:2:2, 16bpp, Y0 Cb Y1 Cr
Definition: pixfmt.h:69
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
static av_cold int raw_close(AVCodecContext *avctx)
Definition: rawenc.c:71
This structure stores compressed data.
Definition: avcodec.h:1137