Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortetsuo55 <tetsuo55@users.sourceforge.net>2010-04-09 01:14:58 +0400
committertetsuo55 <tetsuo55@users.sourceforge.net>2010-04-09 01:14:58 +0400
commita9b7bf3fb3e1334d8defd05ca4cfae870b4912e5 (patch)
tree2dab453d94d5e003379a6cc895eceb84c80e23ec /src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/options.c
parentaafd49a91f7c2fa9c7103971c16fa6e1b29e8bfd (diff)
astyle formatting cleanup to make the sourcecode more accessible
switch used: astyle --style=ansi --min-conditional-indent=0 --pad=oper --unpad=paren http://astyle.sourceforge.net/ git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@1783 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/options.c')
-rw-r--r--src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/options.c105
1 files changed, 55 insertions, 50 deletions
diff --git a/src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/options.c b/src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/options.c
index ae6ee4785..d03286e40 100644
--- a/src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/options.c
+++ b/src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/options.c
@@ -26,8 +26,9 @@
#include "avcodec.h"
-static const char* context_to_name(void* ptr) {
- AVCodecContext *avc= ptr;
+static const char* context_to_name(void* ptr)
+{
+ AVCodecContext *avc = ptr;
if(avc && avc->codec && avc->codec->name)
return avc->codec->name;
@@ -37,60 +38,63 @@ static const char* context_to_name(void* ptr) {
static AVClass av_codec_context_class = { "AVCodecContext", context_to_name };
-void avcodec_get_context_defaults(AVCodecContext *s){
+void avcodec_get_context_defaults(AVCodecContext *s)
+{
memset(s, 0, sizeof(AVCodecContext));
- s->av_class= &av_codec_context_class;
+ s->av_class = &av_codec_context_class;
- s->time_base.num=0; s->time_base.den=1;
+ s->time_base.num = 0;
+ s->time_base.den = 1;
- s->get_buffer= avcodec_default_get_buffer;
- s->release_buffer= avcodec_default_release_buffer;
- s->get_format= avcodec_default_get_format;
- s->execute= avcodec_default_execute;
- s->execute2= avcodec_default_execute2;
- s->sample_aspect_ratio.num=0; s->sample_aspect_ratio.den=1;
- s->pix_fmt= PIX_FMT_NONE;
- s->sample_fmt= SAMPLE_FMT_S16; // FIXME: set to NONE
+ s->get_buffer = avcodec_default_get_buffer;
+ s->release_buffer = avcodec_default_release_buffer;
+ s->get_format = avcodec_default_get_format;
+ s->execute = avcodec_default_execute;
+ s->execute2 = avcodec_default_execute2;
+ s->sample_aspect_ratio.num = 0;
+ s->sample_aspect_ratio.den = 1;
+ s->pix_fmt = PIX_FMT_NONE;
+ s->sample_fmt = SAMPLE_FMT_S16; // FIXME: set to NONE
s->palctrl = NULL;
- s->reget_buffer= avcodec_default_reget_buffer;
-
- s->bit_rate= 800*1000;
- s->bit_rate_tolerance= s->bit_rate*10;
- s->qmin= 2;
- s->qmax= 31;
- s->mb_lmin= FF_QP2LAMBDA * 2;
- s->mb_lmax= FF_QP2LAMBDA * 31;
+ s->reget_buffer = avcodec_default_reget_buffer;
+
+ s->bit_rate = 800 * 1000;
+ s->bit_rate_tolerance = s->bit_rate * 10;
+ s->qmin = 2;
+ s->qmax = 31;
+ s->mb_lmin = FF_QP2LAMBDA * 2;
+ s->mb_lmax = FF_QP2LAMBDA * 31;
s->cqp = -1;
s->refs = 1;
s->directpred = 2;
- s->qcompress= 0.5;
+ s->qcompress = 0.5;
s->complexityblur = 20.0;
s->keyint_min = 25;
s->flags2 = CODEC_FLAG2_FASTPSKIP;
- s->max_qdiff= 3;
- s->b_quant_factor=1.25;
- s->b_quant_offset=1.25;
- s->i_quant_factor=-0.8;
- s->i_quant_offset=0.0;
- s->error_concealment= 3;
- s->error_recognition= 1;
- s->workaround_bugs= FF_BUG_AUTODETECT;
- s->gop_size= 50;
- s->me_method= ME_EPZS;
- s->thread_count=1;
- s->me_subpel_quality=8;
- s->lmin= FF_QP2LAMBDA * s->qmin;
- s->lmax= FF_QP2LAMBDA * s->qmax;
- s->ildct_cmp= FF_CMP_VSAD;
- s->profile= FF_PROFILE_UNKNOWN;
- s->level= FF_LEVEL_UNKNOWN;
- s->me_penalty_compensation= 256;
- s->frame_skip_cmp= FF_CMP_DCTMAX;
- s->nsse_weight= 8;
- s->mv0_threshold= 256;
- s->b_sensitivity= 40;
+ s->max_qdiff = 3;
+ s->b_quant_factor = 1.25;
+ s->b_quant_offset = 1.25;
+ s->i_quant_factor = -0.8;
+ s->i_quant_offset = 0.0;
+ s->error_concealment = 3;
+ s->error_recognition = 1;
+ s->workaround_bugs = FF_BUG_AUTODETECT;
+ s->gop_size = 50;
+ s->me_method = ME_EPZS;
+ s->thread_count = 1;
+ s->me_subpel_quality = 8;
+ s->lmin = FF_QP2LAMBDA * s->qmin;
+ s->lmax = FF_QP2LAMBDA * s->qmax;
+ s->ildct_cmp = FF_CMP_VSAD;
+ s->profile = FF_PROFILE_UNKNOWN;
+ s->level = FF_LEVEL_UNKNOWN;
+ s->me_penalty_compensation = 256;
+ s->frame_skip_cmp = FF_CMP_DCTMAX;
+ s->nsse_weight = 8;
+ s->mv0_threshold = 256;
+ s->b_sensitivity = 40;
s->compression_level = FF_COMPRESSION_DEFAULT;
s->use_lpc = -1;
s->min_prediction_order = -1;
@@ -98,16 +102,17 @@ void avcodec_get_context_defaults(AVCodecContext *s){
s->prediction_order_method = -1;
s->min_partition_order = -1;
s->max_partition_order = -1;
- s->intra_quant_bias= FF_DEFAULT_QUANT_BIAS;
- s->inter_quant_bias= FF_DEFAULT_QUANT_BIAS;
- s->rc_max_available_vbv_use = 1.0/3;
+ s->intra_quant_bias = FF_DEFAULT_QUANT_BIAS;
+ s->inter_quant_bias = FF_DEFAULT_QUANT_BIAS;
+ s->rc_max_available_vbv_use = 1.0 / 3;
s->rc_min_vbv_overflow_use = 3;
}
-AVCodecContext *avcodec_alloc_context(void){
- AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
+AVCodecContext *avcodec_alloc_context(void)
+{
+ AVCodecContext *avctx = av_malloc(sizeof(AVCodecContext));
- if(avctx==NULL) return NULL;
+ if(avctx == NULL) return NULL;
avcodec_get_context_defaults(avctx);