Skip to content

Commit

Permalink
Revert "Recombine sources"
Browse files Browse the repository at this point in the history
This reverts commit d3ae487.
  • Loading branch information
LostInKadath committed Nov 6, 2023
1 parent f221371 commit cdc8e76
Show file tree
Hide file tree
Showing 18 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ bin_PROGRAMS = h264_analyze svc_split
lib_LTLIBRARIES = libh264bitstream.la

libh264bitstream_la_LDFLAGS = -no-undefined
libh264bitstream_la_SOURCES = src/h264_stream.c src/h264_sei.c src/h264_nal.c
libh264bitstream_la_SOURCES = h264_stream.c h264_sei.c h264_nal.c

h264_analyze_SOURCES = src/h264_analyze.c
h264_analyze_SOURCES = h264_analyze.c
h264_analyze_LDADD = libh264bitstream.la

svc_split_SOURCES = src/svc_split.c
svc_split_SOURCES = svc_split.c
svc_split_LDADD = libh264bitstream.la

include_HEADERS = src/h264_stream.h src/h264_sei.h src/h264_avcc.h
pkginclude_HEADERS = src/h264_stream.h src/h264_sei.h src/h264_avcc.h src/bs.h
include_HEADERS = h264_stream.h h264_sei.h h264_avcc.h
pkginclude_HEADERS = h264_stream.h h264_sei.h h264_avcc.h bs.h

clean-local:
rm -rf *.pc
Expand Down
12 changes: 6 additions & 6 deletions Makefile.unix
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@ all: libh264bitstream.a $(BINARIES)
h264_analyze: h264_analyze.o libh264bitstream.a
$(LD) $(LDFLAGS) -o h264_analyze h264_analyze.o -L. -lh264bitstream -lm

libh264bitstream.a: src/h264_stream.c src/h264_nal.c src/h264_stream.h src/h264_slice_data.c src/h264_slice_data.h src/h264_sei.c src/h264_sei.h
$(CC) $(CFLAGS) -c -o h264_nal.o src/h264_nal.c
$(CC) $(CFLAGS) -c -o h264_stream.o src/h264_stream.c
$(CC) $(CFLAGS) -c -o h264_slice_data.o src/h264_slice_data.c
$(CC) $(CFLAGS) -c -o h264_sei.o src/h264_sei.c
libh264bitstream.a: h264_stream.c h264_nal.c h264_stream.h h264_slice_data.c h264_slice_data.h h264_sei.c h264_sei.h
$(CC) $(CFLAGS) -c -o h264_nal.o h264_nal.c
$(CC) $(CFLAGS) -c -o h264_stream.o h264_stream.c
$(CC) $(CFLAGS) -c -o h264_slice_data.o h264_slice_data.c
$(CC) $(CFLAGS) -c -o h264_sei.o h264_sei.c
$(AR) $(ARFLAGS) libh264bitstream.a h264_stream.o h264_nal.o h264_slice_data.o h264_sei.o


clean:
rm -f *.o libh264bitstream.a $(BINARIES)
rm -f libh264bitstream-uninstalled.sh libh264bitstream.pc.in

dox: src/h264_stream.c src/h264_stream.h src/bs.h Doxyfile
dox: h264_stream.c h264_stream.h bs.h Doxyfile
doxygen Doxyfile

dist: clean
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_INIT([h264bitstream],[0.2.0],[[email protected]])

AC_CONFIG_SRCDIR(./src/h264_stream.c)
AC_CONFIG_SRCDIR(./h264_stream.c)

AC_CONFIG_AUX_DIR(build-aux)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit cdc8e76

Please sign in to comment.