Hi Sebastian,
I've attached another patch that adds support for x264 to -bad. It also fixes a
syntax error in debian/extra (forgotten ";;"), fixes the spelling of Xvid (it's
not XVID) and moves the homepage links into the control header as supported by
recent versions of dpkg.
Cheers,
Fabian
diff -Nur gst-plugins-bad0.10-0.10.5/debian/extra gst-plugins-bad0.10-0.10.5~/debian/extra
--- gst-plugins-bad0.10-0.10.5/debian/extra 2008-02-21 17:44:58.000000000 +0100
+++ gst-plugins-bad0.10-0.10.5~/debian/extra 2008-02-21 17:44:25.000000000 +0100
@@ -11,8 +11,12 @@
faac)
echo "libfaac-dev"
;;
+ x264)
+ echo "libx264-dev"
+ ;;
xvid)
echo "libxvidcore-dev | libxvidcore4-dev"
+ ;;
*)
echo "ERROR invalid plugin: add your plugin to debian/extra"
exit 1
@@ -26,12 +30,24 @@
Package: @[EMAIL PROTECTED]
Architecture: any
Section: libs
+Homepage: http://www.audiocoding.com/
Depends: \${shlibs:Depends}, @GST_LIB@
Description: FAAC plugin for GStreamer
This GStreamer plugin uses FAAC to encode audio stream into a AAC
compressed audio stream. This is commonly known as the "mp4" format.
- .
- http://www.audiocoding.com/
+
+EOF
+;;
+ x264)
+cat << EOF
+Package: @[EMAIL PROTECTED]
+Architecture: any
+Section: libs
+Homepage: http://www.videolan.org/developers/x264.html
+Depends: \${shlibs:Depends}, @GST_LIB@
+Description: x264 plugin for GStreamer
+ This GStreamer plugin uses x264 to encode video streams into a H.264
+ compressed video stream. This is commonly known as the "h264" format.
EOF
;;
@@ -40,12 +56,11 @@
Package: @[EMAIL PROTECTED]
Architecture: any
Section: libs
+Homepage: http://www.xvid.org/
Depends: \${shlibs:Depends}, @GST_LIB@
-Description: XVID plugin for GStreamer
- This GStreamer plugin uses XVID to encode video streams into a MPEG4
+Description: Xvid plugin for GStreamer
+ This GStreamer plugin uses Xvid to encode video streams into a MPEG4
compressed video stream. This is commonly known as the "divx" format.
- .
- http://www.xvid.org/
EOF
;;