Commit 46ccbf39 authored by takis's avatar takis

Remove the override of lmin and lmax, so the actual option value provided will

be used.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6384 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 685941f7
...@@ -743,8 +743,6 @@ void avcodec_get_context_defaults(AVCodecContext *s){ ...@@ -743,8 +743,6 @@ void avcodec_get_context_defaults(AVCodecContext *s){
s->release_buffer= avcodec_default_release_buffer; s->release_buffer= avcodec_default_release_buffer;
s->get_format= avcodec_default_get_format; s->get_format= avcodec_default_get_format;
s->execute= avcodec_default_execute; s->execute= avcodec_default_execute;
s->lmin= FF_QP2LAMBDA * s->qmin;
s->lmax= FF_QP2LAMBDA * s->qmax;
s->sample_aspect_ratio= (AVRational){0,1}; s->sample_aspect_ratio= (AVRational){0,1};
s->pix_fmt= PIX_FMT_NONE; s->pix_fmt= PIX_FMT_NONE;
s->sample_fmt= SAMPLE_FMT_S16; // FIXME: set to NONE s->sample_fmt= SAMPLE_FMT_S16; // FIXME: set to NONE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment