mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
ext/x264/gstx264enc.c (gst_x264_enc_init_encoder): This needs a version check.
Original commit message from CVS: * ext/x264/gstx264enc.c (gst_x264_enc_init_encoder): This needs a version check. * gst/bayer/Makefile.am: Fix the build.
This commit is contained in:
parent
b979d59b3d
commit
ddb70fda50
3 changed files with 12 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
|||
2007-05-16 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* ext/x264/gstx264enc.c (gst_x264_enc_init_encoder):
|
||||
This needs a version check.
|
||||
|
||||
* gst/bayer/Makefile.am:
|
||||
Fix the build.
|
||||
|
||||
2007-05-15 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -577,7 +577,7 @@ gst_x264_enc_init_encoder (GstX264Enc * encoder)
|
|||
encoder->x264param.vui.i_vidformat = 5; /* unspecified */
|
||||
encoder->x264param.analyse.i_trellis = encoder->trellis ? 1 : 0;
|
||||
encoder->x264param.analyse.b_psnr = 0;
|
||||
encoder->x264param.analyse.b_ssim = 0;
|
||||
/*encoder->x264param.analyse.b_ssim = 0; */
|
||||
encoder->x264param.analyse.i_me_method = encoder->me;
|
||||
encoder->x264param.analyse.i_subpel_refine = encoder->subme;
|
||||
encoder->x264param.analyse.inter = encoder->analyse;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
plugin_LTLIBRARIES = libgstbayer.la
|
||||
|
||||
libgstbayer_la_SOURCES = gstbayer.c gstbayer2rgb.c
|
||||
libgstbayer_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
||||
libgstbayer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lgstbase-0.10
|
||||
libgstbayer_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
libgstbayer_la_LIBADD = $(GST_BASE_LIBS)
|
||||
libgstbayer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
|
|
Loading…
Reference in a new issue