00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include "avcodec.h"
00024
00025 static av_cold int y41p_encode_init(AVCodecContext *avctx)
00026 {
00027 if (avctx->width & 7) {
00028 av_log(avctx, AV_LOG_ERROR, "y41p requires width to be divisible by 8.\n");
00029 return AVERROR_INVALIDDATA;
00030 }
00031
00032 avctx->coded_frame = avcodec_alloc_frame();
00033
00034 if (!avctx->coded_frame) {
00035 av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");
00036 return AVERROR(ENOMEM);
00037 }
00038
00039 return 0;
00040 }
00041
00042 static int y41p_encode_frame(AVCodecContext *avctx, uint8_t *buf,
00043 int buf_size, void *data)
00044 {
00045 AVFrame *pic = data;
00046 uint8_t *dst = buf;
00047 uint8_t *y, *u, *v;
00048 int i, j;
00049
00050 if (buf_size < avctx->width * avctx->height * 1.5) {
00051 av_log(avctx, AV_LOG_ERROR, "Out buffer is too small.\n");
00052 return AVERROR(ENOMEM);
00053 }
00054
00055 avctx->coded_frame->reference = 0;
00056 avctx->coded_frame->key_frame = 1;
00057 avctx->coded_frame->pict_type = FF_I_TYPE;
00058
00059 for (i = avctx->height - 1; i >= 0; i--) {
00060 y = &pic->data[0][i * pic->linesize[0]];
00061 u = &pic->data[1][i * pic->linesize[1]];
00062 v = &pic->data[2][i * pic->linesize[2]];
00063 for (j = 0; j < avctx->width; j += 8) {
00064 *(dst++) = *(u++);
00065 *(dst++) = *(y++);
00066 *(dst++) = *(v++);
00067 *(dst++) = *(y++);
00068
00069 *(dst++) = *(u++);
00070 *(dst++) = *(y++);
00071 *(dst++) = *(v++);
00072 *(dst++) = *(y++);
00073
00074 *(dst++) = *(y++);
00075 *(dst++) = *(y++);
00076 *(dst++) = *(y++);
00077 *(dst++) = *(y++);
00078 }
00079 }
00080
00081 return avctx->width * avctx->height * 1.5;
00082 }
00083
00084 static av_cold int y41p_encode_close(AVCodecContext *avctx)
00085 {
00086 av_freep(&avctx->coded_frame);
00087
00088 return 0;
00089 }
00090
00091 AVCodec ff_y41p_encoder = {
00092 .name = "y41p",
00093 .type = AVMEDIA_TYPE_VIDEO,
00094 .id = CODEC_ID_Y41P,
00095 .init = y41p_encode_init,
00096 .encode = y41p_encode_frame,
00097 .close = y41p_encode_close,
00098 .pix_fmts = (const enum PixelFormat[]) { PIX_FMT_YUV411P,
00099 PIX_FMT_NONE },
00100 .long_name = NULL_IF_CONFIG_SMALL("Uncompressed YUV 4:1:1 12-bit"),
00101 };