📄 encoder.c
字号:
/***************************************************************************** * * XVID MPEG-4 VIDEO CODEC * - Encoder main module - * * Copyright(C) 2002 Michael Militzer <isibaar@xvid.org> * 2002 Peter Ross <pross@xvid.org> * 2002 Daniel Smith <danielsmith@astroboymail.com> * * This file is part of XviD, a free MPEG-4 video encoder/decoder * * XviD is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Under section 8 of the GNU General Public License, the copyright * holders of XVID explicitly forbid distribution in the following * countries: * * - Japan * - United States of America * * Linking XviD statically or dynamically with other modules is making a * combined work based on XviD. Thus, the terms and conditions of the * GNU General Public License cover the whole combination. * * As a special exception, the copyright holders of XviD give you * permission to link XviD with independent modules that communicate with * XviD solely through the VFW1.1 and DShow interfaces, regardless of the * license terms of these independent modules, and to copy and distribute * the resulting combined work under terms of your choice, provided that * every copy of the combined work is accompanied by a complete copy of * the source code of XviD (the version of XviD used to produce the * combined work), being distributed under the terms of the GNU General * Public License plus this exception. An independent module is a module * which is not derived from or based on XviD. * * Note that people who make modified versions of XviD are not obligated * to grant this special exception for their modified versions; it is * their choice whether to do so. The GNU General Public License gives * permission to release a modified version without this exception; this * exception also makes it possible to release a modified version which * carries forward this exception. * * $Id: encoder.c,v 1.90.2.3 2003/07/28 12:39:23 edgomez Exp $ * ****************************************************************************/#include <stdlib.h>#include <stdio.h>#include <math.h>#include <string.h>#include "encoder.h"#include "prediction/mbprediction.h"#include "global.h"#include "utils/timer.h"#include "image/image.h"#include "motion/motion.h"#include "bitstream/cbp.h"#include "utils/mbfunctions.h"#include "bitstream/bitstream.h"#include "bitstream/mbcoding.h"#include "utils/ratecontrol.h"#include "utils/emms.h"#include "bitstream/mbcoding.h"#include "quant/adapt_quant.h"#include "quant/quant_matrix.h"#include "utils/mem_align.h"/***************************************************************************** * Local macros ****************************************************************************/#define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT#define SWAP(A,B) { void * tmp = A; A = B; B = tmp; }/***************************************************************************** * Local function prototypes ****************************************************************************/static int FrameCodeI(Encoder * pEnc, Bitstream * bs, uint32_t * pBits);static int FrameCodeP(Encoder * pEnc, Bitstream * bs, uint32_t * pBits, bool force_inter, bool vol_header);/***************************************************************************** * Local data ****************************************************************************/static int DQtab[4] = { -1, -2, 1, 2};static int iDQtab[5] = { 1, 0, NO_CHANGE, 2, 3};static void __inlineimage_null(IMAGE * image){ image->y = image->u = image->v = NULL;}/***************************************************************************** * Encoder creation * * This function creates an Encoder instance, it allocates all necessary * image buffers (reference, current) and initialize the internal xvid * encoder paremeters according to the XVID_ENC_PARAM input parameter. * * The code seems to be very long but is very basic, mainly memory allocation * and cleaning code. * * Returned values : * - XVID_ERR_OK - no errors * - XVID_ERR_MEMORY - the libc could not allocate memory, the function * cleans the structure before exiting. * pParam->handle is also set to NULL. * ****************************************************************************/intencoder_create(XVID_ENC_PARAM * pParam){ Encoder *pEnc; int i; pParam->handle = NULL; ENC_CHECK(pParam); ENC_CHECK(pParam->width > 0 && pParam->width <= 1920); ENC_CHECK(pParam->height > 0 && pParam->height <= 1280); ENC_CHECK(!(pParam->width % 2)); ENC_CHECK(!(pParam->height % 2)); /* Fps */ if (pParam->fincr <= 0 || pParam->fbase <= 0) { pParam->fincr = 1; pParam->fbase = 25; } /* * Simplify the "fincr/fbase" fraction * (neccessary, since windows supplies us with huge numbers) */ i = pParam->fincr; while (i > 1) { if (pParam->fincr % i == 0 && pParam->fbase % i == 0) { pParam->fincr /= i; pParam->fbase /= i; i = pParam->fincr; continue; } i--; } if (pParam->fbase > 65535) { float div = (float) pParam->fbase / 65535; pParam->fbase = (int) (pParam->fbase / div); pParam->fincr = (int) (pParam->fincr / div); } /* Bitrate allocator defaults */ if (pParam->rc_bitrate <= 0) pParam->rc_bitrate = 900000; if (pParam->rc_reaction_delay_factor <= 0) pParam->rc_reaction_delay_factor = 16; if (pParam->rc_averaging_period <= 0) pParam->rc_averaging_period = 100; if (pParam->rc_buffer <= 0) pParam->rc_buffer = 100; /* Max and min quantizers */ if ((pParam->min_quantizer <= 0) || (pParam->min_quantizer > 31)) pParam->min_quantizer = 1; if ((pParam->max_quantizer <= 0) || (pParam->max_quantizer > 31)) pParam->max_quantizer = 31; if (pParam->max_quantizer < pParam->min_quantizer) pParam->max_quantizer = pParam->min_quantizer; /* 1 keyframe each 10 seconds */ if (pParam->max_key_interval <= 0) pParam->max_key_interval = 10 * pParam->fbase / pParam->fincr; pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE); if (pEnc == NULL) return XVID_ERR_MEMORY; /* Zero the Encoder Structure */ memset(pEnc, 0, sizeof(Encoder)); /* Fill members of Encoder structure */ pEnc->mbParam.width = pParam->width; pEnc->mbParam.height = pParam->height; pEnc->mbParam.mb_width = (pEnc->mbParam.width + 15) / 16; pEnc->mbParam.mb_height = (pEnc->mbParam.height + 15) / 16; pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE; pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE; pEnc->mbParam.fbase = pParam->fbase; pEnc->mbParam.fincr = pParam->fincr; pEnc->mbParam.m_quant_type = H263_QUANT; pEnc->sStat.fMvPrevSigma = -1; /* Fill rate control parameters */ pEnc->bitrate = pParam->rc_bitrate; pEnc->iFrameNum = 0; pEnc->iMaxKeyInterval = pParam->max_key_interval; /* try to allocate frame memory */ pEnc->current = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE); pEnc->reference = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE); if (pEnc->current == NULL || pEnc->reference == NULL) goto xvid_err_memory1; /* try to allocate mb memory */ pEnc->current->mbs = xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height, CACHE_LINE); pEnc->reference->mbs = xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height, CACHE_LINE); if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL) goto xvid_err_memory2; /* try to allocate image memory */#ifdef _DEBUG_PSNR image_null(&pEnc->sOriginal);#endif image_null(&pEnc->current->image); image_null(&pEnc->reference->image); image_null(&pEnc->vInterH); image_null(&pEnc->vInterV); image_null(&pEnc->vInterHV);#ifdef _DEBUG_PSNR if (image_create (&pEnc->sOriginal, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0) goto xvid_err_memory3;#endif if (image_create (&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0) goto xvid_err_memory3; if (image_create (&pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0) goto xvid_err_memory3; if (image_create (&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0) goto xvid_err_memory3; if (image_create (&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0) goto xvid_err_memory3; if (image_create (&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0) goto xvid_err_memory3; pParam->handle = (void *) pEnc; if (pParam->rc_bitrate) { RateControlInit(&pEnc->rate_control, pParam->rc_bitrate, pParam->rc_reaction_delay_factor, pParam->rc_averaging_period, pParam->rc_buffer, pParam->fbase * 1000 / pParam->fincr, pParam->max_quantizer, pParam->min_quantizer); } init_timer(); return XVID_ERR_OK; /* * We handle all XVID_ERR_MEMORY here, this makes the code lighter */ xvid_err_memory3:#ifdef _DEBUG_PSNR image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);#endif image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height); image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height); image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height); image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height); image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height); xvid_err_memory2: xvid_free(pEnc->current->mbs); xvid_free(pEnc->reference->mbs); xvid_err_memory1: xvid_free(pEnc->current); xvid_free(pEnc->reference); xvid_free(pEnc); pParam->handle = NULL; return XVID_ERR_MEMORY;}/***************************************************************************** * Encoder destruction * * This function destroy the entire encoder structure created by a previous * successful encoder_create call. * * Returned values (for now only one returned value) : * - XVID_ERR_OK - no errors * ****************************************************************************/intencoder_destroy(Encoder * pEnc){ ENC_CHECK(pEnc); /* All images, reference, current etc ... */ image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height); image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height); image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height); image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height); image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);#ifdef _DEBUG_PSNR image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);#endif /* Encoder structure */ xvid_free(pEnc->current->mbs); xvid_free(pEnc->current); xvid_free(pEnc->reference->mbs); xvid_free(pEnc->reference); xvid_free(pEnc); return XVID_ERR_OK;}void inc_frame_num(Encoder * pEnc){ pEnc->mbParam.m_ticks += pEnc->mbParam.fincr; pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase; pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;}/***************************************************************************** * "original" IP frame encoder entry point * * Returned values : * - XVID_ERR_OK - no errors * - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong * format ****************************************************************************/intencoder_encode(Encoder * pEnc, XVID_ENC_FRAME * pFrame, XVID_ENC_STATS * pResult){ uint16_t x, y; Bitstream bs; uint32_t bits; uint16_t write_vol_header = 0;#ifdef _DEBUG_PSNR float psnr; uint8_t temp[128];#endif start_global_timer(); ENC_CHECK(pEnc); ENC_CHECK(pFrame); ENC_CHECK(pFrame->bitstream); ENC_CHECK(pFrame->image); SWAP(pEnc->current, pEnc->reference); pEnc->current->global_flags = pFrame->general; pEnc->current->motion_flags = pFrame->motion; pEnc->current->seconds = pEnc->mbParam.m_seconds; pEnc->current->ticks = pEnc->mbParam.m_ticks; pEnc->mbParam.hint = &pFrame->hint; start_timer(); if (image_input (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace) < 0) return XVID_ERR_FORMAT; stop_conv_timer();#ifdef _DEBUG_PSNR image_copy(&pEnc->sOriginal, &pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);#endif emms(); BitstreamInit(&bs, pFrame->bitstream, 0); if (pFrame->quant == 0) { pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0); } else { pEnc->current->quant = pFrame->quant; } if ((pEnc->current->global_flags & XVID_LUMIMASKING)) { int *temp_dquants = (int *) xvid_malloc(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE); pEnc->current->quant = adaptive_quantization(pEnc->current->image.y, pEnc->mbParam.edged_width, temp_dquants, pEnc->current->quant, pEnc->current->quant, 2 * pEnc->current->quant, pEnc->mbParam.mb_width, pEnc->mbParam.mb_height); for (y = 0; y < pEnc->mbParam.mb_height; y++) {#define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width) for (x = 0; x < pEnc->mbParam.mb_width; x++) { MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)]; pMB->dquant = iDQtab[temp_dquants[OFFSET(x, y)] + 2]; }#undef OFFSET } xvid_free(temp_dquants); } if (pEnc->current->global_flags & XVID_H263QUANT) { if (pEnc->mbParam.m_quant_type != H263_QUANT) write_vol_header = 1; pEnc->mbParam.m_quant_type = H263_QUANT; } else if (pEnc->current->global_flags & XVID_MPEGQUANT) { int matrix1_changed, matrix2_changed; matrix1_changed = matrix2_changed = 0; if (pEnc->mbParam.m_quant_type != MPEG4_QUANT) write_vol_header = 1; pEnc->mbParam.m_quant_type = MPEG4_QUANT; if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) { if (pFrame->quant_intra_matrix != NULL) matrix1_changed = set_intra_matrix(pFrame->quant_intra_matrix); if (pFrame->quant_inter_matrix != NULL) matrix2_changed = set_inter_matrix(pFrame->quant_inter_matrix); } else { matrix1_changed = set_intra_matrix(get_default_intra_matrix()); matrix2_changed = set_inter_matrix(get_default_inter_matrix()); } if (write_vol_header == 0) write_vol_header = matrix1_changed | matrix2_changed; } if (pFrame->intra < 0) { if ((pEnc->iFrameNum == 0) || ((pEnc->iMaxKeyInterval > 0) && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval))) { pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -