mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
b772f81d4a
Original commit message from CVS: Added an autoplug example. This little program (30 relevant lines) is able to play MPEG1(system)/MPEG2(system)/AVI(DIVX)/Vorbis/AC3 and whatever codec you write. Separated the mp3 and mpeg1 types for better reuse.
10 lines
177 B
Makefile
10 lines
177 B
Makefile
|
|
CC = gcc
|
|
|
|
autoplug: autoplug.c
|
|
$(CC) -Wall `gstreamer-config --cflags --libs` `gnome-config --cflags --libs gnomeui` autoplug.c -o autoplug
|
|
|
|
clean:
|
|
rm -f *.o autoplug
|
|
|
|
|