From: Gwenole Beauchesne Date: Sat, 19 Apr 2014 08:17:20 +0000 (+0200) Subject: build: add missing files for VP8 bitstream parser. X-Git-Tag: 1.19.3~503^2~2187 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03f4071721a611fe3f82b24e21d1c92f7df3e45d;p=platform%2Fupstream%2Fgstreamer.git build: add missing files for VP8 bitstream parser. Fix make dist for building the VP8 bitstream parser. --- diff --git a/ext/Makefile.am b/ext/Makefile.am index 9c20bcd..1c5100e 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -6,25 +6,33 @@ codecparsers_srcdir = \ $(top_srcdir)/ext/codecparsers/gst-libs/gst/codecparsers codecparsers_source_c = \ + dboolhuff.c \ gsth264parser.c \ gstjpegparser.c \ gstmpeg4parser.c \ gstmpegvideoparser.c \ gstvc1parser.c \ gstvp8parser.c \ + gstvp8rangedecoder.c \ + nalutils.c \ parserutils.c \ + vp8utils.c \ $(NULL) EXTRA_DIST += $(codecparsers_source_c:%.c=$(codecparsers_srcdir)/%.c) codecparsers_source_h = \ + dboolhuff.h \ gsth264parser.h \ gstjpegparser.h \ gstmpeg4parser.h \ gstmpegvideoparser.h \ gstvc1parser.h \ gstvp8parser.h \ + gstvp8rangedecoder.h \ + nalutils.h \ parserutils.h \ + vp8utils.h \ $(NULL) EXTRA_DIST += $(codecparsers_source_h:%.h=$(codecparsers_srcdir)/%.h)