[FFmpeg-devel] [PATCH] ffserver rtsp bug fixes
Martin Storsjö
martin
Tue May 18 13:48:28 CEST 2010
On Mon, 17 May 2010, Howard Chu wrote:
> > @@ -3842,7 +3847,8 @@
> > av->nsse_weight = 8;
> >
> > av->frame_skip_cmp = FF_CMP_DCTMAX;
> > - av->me_method = ME_EPZS;
> > + if (!av->me_method)
> > + av->me_method = ME_EPZS;
> > av->rc_buffer_aggressivity = 1.0;
> >
> > if (!av->rc_eq)
>
> There are a lot of unconditional option settings here. I'm not sure why
> they're being done, since these options can be set using AVOptionVideo in
> ffserver.conf. This fixes just one case of add_codec overriding what was set
> in the config file; there are others too but I don't know how important any of
> it is overall.
Applied this chunk, as it felt obviously ok.
// Martin
More information about the ffmpeg-devel
mailing list