mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
599af07ac7
Original commit message from CVS: Patch by: Renato Araujo Oliveira Filho <renatox at gmail dot com> * configure.ac: * ext/Makefile.am: * ext/amrwb/Makefile.am: * ext/amrwb/README: * ext/amrwb/amrwb-code/Makefile.am: * ext/amrwb/amrwb-code/run.sh: * ext/amrwb/gstamrwb.c: (plugin_init): * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_base_init), (gst_amrwbdec_class_init), (gst_amrwbdec_init), (gst_amrwbdec_setcaps), (gst_amrwbdec_event), (gst_amrwbdec_chain), (gst_amrwbdec_state_change): * ext/amrwb/gstamrwbdec.h: * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_base_init), (gst_amrwbenc_class_init), (gst_amrwbenc_init), (gst_amrwbenc_finalize), (gst_amrwbenc_setcaps), (gst_amrwbenc_chain), (gst_amrwbenc_state_change): * ext/amrwb/gstamrwbenc.h: * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_base_init), (gst_amrwbparse_class_init), (gst_amrwbparse_init), (gst_amrwbparse_querytypes), (gst_amrwbparse_query), (gst_amrwbparse_chain), (gst_amrwbparse_read_header), (gst_amrwbparse_loop), (gst_amrwbparse_sink_activate), (gst_amrwbparse_sink_activate_pull), (gst_amrwbparse_state_change): * ext/amrwb/gstamrwbparse.h: Added new plugin amrwb parse. Renamed audio/AMR to audio/AMR-WB as per spec. Fixes #333307
44 lines
679 B
Makefile
44 lines
679 B
Makefile
noinst_LTLIBRARIES = libamrwb.la
|
|
|
|
libamrwb_la_SOURCES = \
|
|
enc_acelp.c \
|
|
enc_dtx.c \
|
|
enc_gain.c \
|
|
enc_if.c \
|
|
enc_lpc.c \
|
|
enc_main.c \
|
|
enc_rom.c \
|
|
enc_util.c \
|
|
if_rom.c \
|
|
dec_acelp.c \
|
|
dec_dtx.c \
|
|
dec_gain.c \
|
|
dec_if.c \
|
|
dec_lpc.c \
|
|
dec_main.c \
|
|
dec_rom.c \
|
|
dec_util.c
|
|
|
|
libamrwb_la_CFLAGS = -I./amrwb-code/c-code
|
|
libamrwb_la_LIBADD = $(GST_BASE_LIBS) $(AMRWB_LIBS)
|
|
libamrwb_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
dec_acelp.h \
|
|
dec_dtx.h \
|
|
dec_gain.h \
|
|
dec.h \
|
|
dec_if.h \
|
|
dec_lpc.h \
|
|
dec_main.h \
|
|
dec_util.h \
|
|
enc_acelp.h \
|
|
enc_dtx.h \
|
|
enc_gain.h \
|
|
enc.h \
|
|
enc_if.h \
|
|
enc_lpc.h \
|
|
enc_main.h \
|
|
enc_util.h \
|
|
if_rom.h \
|
|
typedef.h
|