libavcodec/flashsvenc.c
053185c2
 /*
  * Flash Screen Video encoder
  * Copyright (C) 2004 Alex Beregszaszi
  * Copyright (C) 2006 Benjamin Larsson
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /* Encoding development sponsored by http://fh-campuswien.ac.at */
 
 /**
ba87f080
  * @file
053185c2
  * Flash Screen Video encoder
  * @author Alex Beregszaszi
  * @author Benjamin Larsson
86e8272a
  *
  * A description of the bitstream format for Flash Screen Video version 1/2
  * is part of the SWF File Format Specification (version 10), which can be
  * downloaded from http://www.adobe.com/devnet/swf.html.
053185c2
  */
 
86e8272a
 /*
36ba39d1
  * Encoding ideas: A basic encoder would just use a fixed block size.
  * Block sizes can be multiples of 16, from 16 to 256. The blocks don't
053185c2
  * have to be quadratic. A brute force search with a set of different
  * block sizes should give a better result than to just use a fixed size.
36ba39d1
  *
  * TODO:
  * Don't reencode the frame in brute force mode if the frame is a dupe.
  * Speed up. Make the difference check faster.
053185c2
  */
 
 #include <stdio.h>
 #include <stdlib.h>
 #include <zlib.h>
 
 #include "avcodec.h"
0ecf54f9
 #include "internal.h"
b2755007
 #include "put_bits.h"
053185c2
 #include "bytestream.h"
 
 
 typedef struct FlashSVContext {
     AVCodecContext *avctx;
293fe6da
     uint8_t        *previous_frame;
     int             image_width, image_height;
     int             block_width, block_height;
     uint8_t        *tmpblock;
     uint8_t        *encbuffer;
     int             block_size;
     z_stream        zstream;
     int             last_key_frame;
053185c2
 } FlashSVContext;
 
293fe6da
 static int copy_region_enc(uint8_t *sptr, uint8_t *dptr, int dx, int dy,
                            int h, int w, int stride, uint8_t *pfptr)
 {
     int i, j;
053185c2
     uint8_t *nsptr;
     uint8_t *npfptr;
     int diff = 0;
 
293fe6da
     for (i = dx + h; i > dx; i--) {
4877356d
         nsptr  = sptr  + i * stride + dy * 3;
         npfptr = pfptr + i * stride + dy * 3;
293fe6da
         for (j = 0; j < w * 3; j++) {
             diff    |= npfptr[j] ^ nsptr[j];
             dptr[j]  = nsptr[j];
053185c2
         }
293fe6da
         dptr += w * 3;
053185c2
     }
     if (diff)
         return 1;
     return 0;
 }
 
d56a114a
 static av_cold int flashsv_encode_end(AVCodecContext *avctx)
 {
     FlashSVContext *s = avctx->priv_data;
 
     deflateEnd(&s->zstream);
 
9946da49
     av_freep(&s->encbuffer);
     av_freep(&s->previous_frame);
     av_freep(&s->tmpblock);
d56a114a
 
     return 0;
 }
 
98a6fff9
 static av_cold int flashsv_encode_init(AVCodecContext *avctx)
053185c2
 {
e4141433
     FlashSVContext *s = avctx->priv_data;
053185c2
 
     s->avctx = avctx;
 
4877356d
     if (avctx->width > 4095 || avctx->height > 4095) {
3d5669c6
         av_log(avctx, AV_LOG_ERROR,
b1f59bb6
                "Input dimensions too large, input must be max 4095x4095 !\n");
a14c0824
         return AVERROR_INVALIDDATA;
053185c2
     }
 
     // Needed if zlib unused or init aborted before deflateInit
4877356d
     memset(&s->zstream, 0, sizeof(z_stream));
053185c2
 
293fe6da
     s->last_key_frame = 0;
8736d68a
 
293fe6da
     s->image_width  = avctx->width;
053185c2
     s->image_height = avctx->height;
 
293fe6da
     s->tmpblock  = av_mallocz(3 * 256 * 256);
     s->encbuffer = av_mallocz(s->image_width * s->image_height * 3);
053185c2
 
     if (!s->tmpblock || !s->encbuffer) {
         av_log(avctx, AV_LOG_ERROR, "Memory allocation failed.\n");
a14c0824
         return AVERROR(ENOMEM);
053185c2
     }
 
     return 0;
 }
 
 
d56a114a
 static int encode_bitstream(FlashSVContext *s, const AVFrame *p, uint8_t *buf,
293fe6da
                             int buf_size, int block_width, int block_height,
                             uint8_t *previous_frame, int *I_frame)
 {
053185c2
 
     PutBitContext pb;
     int h_blocks, v_blocks, h_part, v_part, i, j;
     int buf_pos, res;
     int pred_blocks = 0;
 
50833c9f
     init_put_bits(&pb, buf, buf_size);
053185c2
 
4877356d
     put_bits(&pb,  4, block_width / 16 - 1);
053185c2
     put_bits(&pb, 12, s->image_width);
4877356d
     put_bits(&pb,  4, block_height / 16 - 1);
053185c2
     put_bits(&pb, 12, s->image_height);
     flush_put_bits(&pb);
293fe6da
     buf_pos = 4;
053185c2
 
293fe6da
     h_blocks = s->image_width  / block_width;
     h_part   = s->image_width  % block_width;
053185c2
     v_blocks = s->image_height / block_height;
293fe6da
     v_part   = s->image_height % block_height;
053185c2
 
     /* loop over all block columns */
293fe6da
     for (j = 0; j < v_blocks + (v_part ? 1 : 0); j++) {
053185c2
 
0686515c
         int y_pos = j * block_height; // vertical position in frame
         int cur_blk_height = (j < v_blocks) ? block_height : v_part;
053185c2
 
         /* loop over all block rows */
293fe6da
         for (i = 0; i < h_blocks + (h_part ? 1 : 0); i++) {
0686515c
             int x_pos = i * block_width; // horizontal position in frame
             int cur_blk_width = (i < h_blocks) ? block_width : h_part;
293fe6da
             int ret = Z_OK;
12e9bf3e
             uint8_t *ptr = buf + buf_pos;
053185c2
 
293fe6da
             /* copy the block to the temp buffer before compression
              * (if it differs from the previous frame's block) */
             res = copy_region_enc(p->data[0], s->tmpblock,
0686515c
                                   s->image_height - (y_pos + cur_blk_height + 1),
                                   x_pos, cur_blk_height, cur_blk_width,
                                   p->linesize[0], previous_frame);
053185c2
 
             if (res || *I_frame) {
12e9bf3e
                 unsigned long zsize = 3 * block_width * block_height;
0686515c
                 ret = compress2(ptr + 2, &zsize, s->tmpblock,
                                 3 * cur_blk_width * cur_blk_height, 9);
053185c2
 
4877356d
                 //ret = deflateReset(&s->zstream);
053185c2
                 if (ret != Z_OK)
3d5669c6
                     av_log(s->avctx, AV_LOG_ERROR,
                            "error while compressing block %dx%d\n", i, j);
053185c2
 
20a6f210
                 bytestream_put_be16(&ptr, zsize);
293fe6da
                 buf_pos += zsize + 2;
6a85dfc8
                 ff_dlog(s->avctx, "buf_pos = %d\n", buf_pos);
053185c2
             } else {
                 pred_blocks++;
293fe6da
                 bytestream_put_be16(&ptr, 0);
8adc51f2
                 buf_pos += 2;
053185c2
             }
         }
     }
 
     if (pred_blocks)
         *I_frame = 0;
     else
         *I_frame = 1;
 
     return buf_pos;
 }
 
 
0ecf54f9
 static int flashsv_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
                                 const AVFrame *pict, int *got_packet)
053185c2
 {
e4141433
     FlashSVContext * const s = avctx->priv_data;
d56a114a
     const AVFrame * const p = pict;
d2bc0473
     uint8_t *pfptr;
053185c2
     int res;
     int I_frame = 0;
12e9bf3e
     int opt_w = 4, opt_h = 4;
053185c2
 
8736d68a
     /* First frame needs to be a keyframe */
64472fcf
     if (avctx->frame_number == 0) {
293fe6da
         s->previous_frame = av_mallocz(FFABS(p->linesize[0]) * s->image_height);
053185c2
         if (!s->previous_frame) {
             av_log(avctx, AV_LOG_ERROR, "Memory allocation failed.\n");
a14c0824
             return AVERROR(ENOMEM);
053185c2
         }
         I_frame = 1;
     }
 
d2bc0473
     if (p->linesize[0] < 0)
4877356d
         pfptr = s->previous_frame - (s->image_height - 1) * p->linesize[0];
d2bc0473
     else
         pfptr = s->previous_frame;
 
8736d68a
     /* Check the placement of keyframes */
59ef6bde
     if (avctx->gop_size > 0 &&
         avctx->frame_number >= s->last_key_frame + avctx->gop_size) {
         I_frame = 1;
8736d68a
     }
 
e36db49b
     if ((res = ff_alloc_packet2(avctx, pkt, s->image_width * s->image_height * 3, 0)) < 0)
0ecf54f9
         return res;
053185c2
 
0ecf54f9
     pkt->size = encode_bitstream(s, p, pkt->data, pkt->size, opt_w * 16, opt_h * 16,
                                  pfptr, &I_frame);
54353abe
 
053185c2
     //save the current frame
293fe6da
     if (p->linesize[0] > 0)
         memcpy(s->previous_frame, p->data[0], s->image_height * p->linesize[0]);
d2bc0473
     else
3d5669c6
         memcpy(s->previous_frame,
                p->data[0] + p->linesize[0] * (s->image_height - 1),
293fe6da
                s->image_height * FFABS(p->linesize[0]));
053185c2
 
     //mark the frame type so the muxer can mux it correctly
     if (I_frame) {
40cf1bba
 #if FF_API_CODED_FRAME
 FF_DISABLE_DEPRECATION_WARNINGS
d56a114a
         avctx->coded_frame->pict_type      = AV_PICTURE_TYPE_I;
         avctx->coded_frame->key_frame      = 1;
40cf1bba
 FF_ENABLE_DEPRECATION_WARNINGS
 #endif
8736d68a
         s->last_key_frame = avctx->frame_number;
6a85dfc8
         ff_dlog(avctx, "Inserting keyframe at frame %d\n", avctx->frame_number);
053185c2
     } else {
40cf1bba
 #if FF_API_CODED_FRAME
 FF_DISABLE_DEPRECATION_WARNINGS
d56a114a
         avctx->coded_frame->pict_type = AV_PICTURE_TYPE_P;
         avctx->coded_frame->key_frame = 0;
40cf1bba
 FF_ENABLE_DEPRECATION_WARNINGS
 #endif
053185c2
     }
 
91f9b657
     if (I_frame)
0ecf54f9
         pkt->flags |= AV_PKT_FLAG_KEY;
     *got_packet = 1;
 
     return 0;
053185c2
 }
 
e7e2df27
 AVCodec ff_flashsv_encoder = {
46cb2da1
     .name           = "flashsv",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("Flash Screen Video"),
46cb2da1
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_FLASHSV,
46cb2da1
     .priv_data_size = sizeof(FlashSVContext),
     .init           = flashsv_encode_init,
0ecf54f9
     .encode2        = flashsv_encode_frame,
46cb2da1
     .close          = flashsv_encode_end,
716d413c
     .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_BGR24, AV_PIX_FMT_NONE },
053185c2
 };