From 8d5738ab90da66e297b5611c24faae96352257dd Mon Sep 17 00:00:00 2001 From: Michal Benes Date: Sun, 25 Mar 2007 13:06:26 +0000 Subject: Add libx264-based h264 encoder plugin (#421110). Probably doesn't handle 'odd' widths and heights correctly yet. Original commit message from CVS: Patch by: Michal Benes Patch by: Josef Zlomek * configure.ac: * ext/Makefile.am: * ext/x264/Makefile.am: * ext/x264/gstx264enc.c: (gst_x264_enc_me_get_type), (gst_x264_enc_analyse_get_type), (gst_x264_enc_timestamp_queue_init), (gst_x264_enc_timestamp_queue_free), (gst_x264_enc_timestamp_queue_put), (gst_x264_enc_timestamp_queue_get), (gst_x264_enc_header_buf), (gst_x264_enc_set_src_caps), (gst_x264_enc_sink_set_caps), (gst_x264_enc_base_init), (gst_x264_enc_class_init), (gst_x264_enc_init), (gst_x264_enc_init_encoder), (gst_x264_enc_close_encoder), (gst_x264_enc_dispose), (gst_x264_enc_sink_event), (gst_x264_enc_chain), (gst_x264_enc_encode_frame), (gst_x264_enc_change_state), (gst_x264_enc_set_property), (gst_x264_enc_get_property), (plugin_init): * ext/x264/gstx264enc.h: Add libx264-based h264 encoder plugin (#421110). Probably doesn't handle 'odd' widths and heights correctly yet. --- ext/x264/Makefile.am | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ext/x264/Makefile.am (limited to 'ext/x264/Makefile.am') diff --git a/ext/x264/Makefile.am b/ext/x264/Makefile.am new file mode 100644 index 00000000..35906d93 --- /dev/null +++ b/ext/x264/Makefile.am @@ -0,0 +1,8 @@ +plugin_LTLIBRARIES = libgstx264.la + +libgstx264_la_SOURCES = gstx264enc.c +libgstx264_la_CFLAGS = $(X264_CFLAGS) $(GST_CFLAGS) +libgstx264_la_LIBADD = $(X264_LIBS) $(GST_LIBS) +libgstx264_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +noinst_HEADERS = gstx264enc.h -- cgit v1.2.1