platform/upstream/gstreamer.git
13 years agomp3parse: propagate flow errors upstream.
Alessandro Decina [Wed, 25 Aug 2010 13:39:33 +0000 (15:39 +0200)]
mp3parse: propagate flow errors upstream.

Remove a wrong GST_FLOW_IS_FATAL call. When pushing fails, mp3parse should
always return the error upstream.

13 years ago0.10.15.4 pre-release
Sebastian Dröge [Sat, 21 Aug 2010 19:42:25 +0000 (21:42 +0200)]
0.10.15.4 pre-release

13 years agoAutomatic update of common submodule
Stefan Kost [Fri, 13 Aug 2010 14:24:41 +0000 (17:24 +0300)]
Automatic update of common submodule

From 3e8db1d to ec60217

13 years ago0.10.15.3 pre-release
Tim-Philipp Müller [Wed, 11 Aug 2010 15:46:48 +0000 (16:46 +0100)]
0.10.15.3 pre-release

13 years agox264enc: Fix b-pyramid libx264 API boolean arg for non-boolean issue
Robert Swain [Wed, 11 Aug 2010 07:21:43 +0000 (09:21 +0200)]
x264enc: Fix b-pyramid libx264 API boolean arg for non-boolean issue

In X264_BUILD >= 78, b-pyramid became a non-boolean so passing a boolean
argument to the option string value causes an error. For < 78 we pass the
boolean value, for >= 78 we use the x264_b_pyramid_names[] array which will
result in passing 'none' for false and 'strict' for true. Other modes can be
set through the option-string property for now.

https://bugzilla.gnome.org/show_bug.cgi?id=626577

13 years ago0.10.15.2 pre-release
Tim-Philipp Müller [Tue, 10 Aug 2010 23:02:47 +0000 (00:02 +0100)]
0.10.15.2 pre-release

13 years agosynaesthesia: code cleanups.
Stefan Kost [Tue, 10 Aug 2010 11:37:39 +0000 (14:37 +0300)]
synaesthesia: code cleanups.

Remove unused boilerplate for signals. Use _OBJECT variants of logging macros
more.

13 years agosynaesthesia: use GST_BOILERPLATE macros
Stefan Kost [Tue, 10 Aug 2010 11:24:01 +0000 (14:24 +0300)]
synaesthesia: use GST_BOILERPLATE macros

13 years agoAutomatic update of common submodule
Tim-Philipp Müller [Tue, 10 Aug 2010 09:59:04 +0000 (10:59 +0100)]
Automatic update of common submodule

From bd2054b to 3e8db1d

13 years agox264: fix printf format warning in debug message
Tim-Philipp Müller [Sun, 8 Aug 2010 23:31:15 +0000 (00:31 +0100)]
x264: fix printf format warning in debug message

13 years agodocs: fix bug passing arguments to gtkdoc-fixref in upload target
Tim-Philipp Müller [Fri, 6 Aug 2010 23:09:47 +0000 (00:09 +0100)]
docs: fix bug passing arguments to gtkdoc-fixref in upload target

Missing backslash at end of line meant we weren't passing all arguments
to gtkdoc-fixref and we'd get a shell error when doing 'make upload'.

13 years agoAutomatic update of common submodule
Stefan Kost [Thu, 5 Aug 2010 10:57:26 +0000 (13:57 +0300)]
Automatic update of common submodule

From a519571 to bd2054b

13 years agoconfigure: Check if the compiler supports ISO C89 or C99 and which parameters are...
Sebastian Dröge [Wed, 4 Aug 2010 17:28:09 +0000 (19:28 +0200)]
configure: Check if the compiler supports ISO C89 or C99 and which parameters are required

This first checks what is required for ISO C99 support and sets the relevant
compiler parameters and if no C99 compiler is found, it checks for a
C89 compiler. This enables us to check for and use C89/C99 functions
that gcc hides from us without the correct compiler parameters.

14 years agox264enc: Fix flushing of delayed frames
Robert Swain [Thu, 29 Jul 2010 07:41:49 +0000 (09:41 +0200)]
x264enc: Fix flushing of delayed frames

x264_encoder_encode() should be called with a NULL picture until at least
x264_encoder_delayed_frames() returns 0. This fixes what appeared to be a
regression in make check due to the recent change in defaults which enabled
b-frames and b-pyramid, both of which I believe increase the number of delayed
frames when encoding.

14 years agox264enc: Improve x264enc defaults
Robert Swain [Wed, 21 Jul 2010 15:24:33 +0000 (17:24 +0200)]
x264enc: Improve x264enc defaults

- medium x264 speed/quality preset
- threads defaults to 0 which automatically uses 1.5x number of cpu cores

Addresses part of bug #607798

14 years agox264enc: Fix property description typos
Robert Swain [Wed, 21 Jul 2010 15:22:48 +0000 (17:22 +0200)]
x264enc: Fix property description typos

14 years agox264enc: Add some more debug info
Robert Swain [Thu, 22 Jul 2010 09:53:04 +0000 (11:53 +0200)]
x264enc: Add some more debug info

14 years agox264enc: Add speed-preset and [psy-]tuning properties
Robert Swain [Wed, 21 Jul 2010 15:09:20 +0000 (17:09 +0200)]
x264enc: Add speed-preset and [psy-]tuning properties

Use of a rate control method (pass, bitrate, quantizer, etc properties), a
preset and possibly a profile and/or tuning are now the recommended way to
configure x264 through x264enc.

If a preset/tuning are specified then these will define the default values and
the property defaults will be ignored. After this the option-string property is
applied, followed by the user-set properties, fast first pass restrictions and
finally the profile restrictions.

Addresses part of bug #607798

14 years agox264enc: Refactor code in preparation for presets/tunings
Robert Swain [Wed, 21 Jul 2010 14:56:06 +0000 (16:56 +0200)]
x264enc: Refactor code in preparation for presets/tunings

- Make defaults append the appropriate default value to a string. This is
  needed to differentiate between something user-set and the actual prop
  default.
- Add an internal option string to which _set_property () cases append for the
  majority of properties.
- Use gst_x264_enc_parse_options () to clean up application of settings. This
  will make order of application with respect to the presets and tunings quite
  simple.

Addresses part of bug #607798

14 years agox264enc: Update available me types
Robert Swain [Wed, 21 Jul 2010 14:32:11 +0000 (16:32 +0200)]
x264enc: Update available me types

Use the x264_motion_est_names[] array to populate the enum of ME types. This is
now self-maintaining.

14 years agox264enc: Use new libx264 API to affect fast first pass
Robert Swain [Wed, 21 Jul 2010 13:59:12 +0000 (15:59 +0200)]
x264enc: Use new libx264 API to affect fast first pass

Uses new x264 API to apply reduced complexity values to the parameters to
increase encoding speed in the first pass of a multi-pass encode. This does
not impact on final quality.

Addresses part of bug #607798

14 years agox264enc: Add profile property
Robert Swain [Wed, 21 Jul 2010 13:52:28 +0000 (15:52 +0200)]
x264enc: Add profile property

In X264_BUILD >= 86 there is a new API for applying restrictions to an H.264
Profile. This makes it easier to achieve Baseline Profile for example.

Addresses part of bug #607798

14 years agox264enc: Add option-string property
Robert Swain [Wed, 21 Jul 2010 13:40:27 +0000 (15:40 +0200)]
x264enc: Add option-string property

Adds support for an x264 format option-string to specify advanced parameters

Addresses part of bug #607798

14 years agomad: use right automake variable, should be ID3TAG_{LIBS,CFLAGS} not ID3_{LIBS,CFLAGS}
Tim-Philipp Müller [Thu, 22 Jul 2010 12:24:37 +0000 (13:24 +0100)]
mad: use right automake variable, should be ID3TAG_{LIBS,CFLAGS} not ID3_{LIBS,CFLAGS}

Spotted by syntr0py.

14 years agox264enc: only set timebase on versions where it exists
Mark Nauwelaerts [Tue, 20 Jul 2010 17:44:00 +0000 (19:44 +0200)]
x264enc: only set timebase on versions where it exists

14 years agox264enc: set appropriate time base
David Hoyt [Tue, 20 Jul 2010 14:40:22 +0000 (16:40 +0200)]
x264enc: set appropriate time base

Fixes #624786.

14 years agotests: add plugin loading whitelist to test environment
Tim-Philipp Müller [Wed, 30 Jun 2010 17:45:49 +0000 (18:45 +0100)]
tests: add plugin loading whitelist to test environment

Only want to load core/-base/-ugly plugins here.

14 years agoBump automake requirement to 1.10 and autoconf to 2.60
Tim-Philipp Müller [Mon, 28 Jun 2010 15:12:12 +0000 (16:12 +0100)]
Bump automake requirement to 1.10 and autoconf to 2.60

For maintainability reasons and $(builddir).

See #622944.

14 years agoasfdemux: Fix seeking after last commits
Thiago Santos [Mon, 28 Jun 2010 12:34:30 +0000 (09:34 -0300)]
asfdemux: Fix seeking after last commits

Don't handle wrong-state returns as errors to allow seeking to work
again.

14 years agoasfdemux: Push all pending data on EOS
Thiago Santos [Thu, 24 Jun 2010 22:46:39 +0000 (19:46 -0300)]
asfdemux: Push all pending data on EOS

When on push mode and receiving an EOS event, asfdemux
should push all pending data because we might be dealing
with a broken file that has a preroll value higher
than its actual length.

14 years agoasfdemux: Fix sending eos event for chained asfs
Thiago Santos [Thu, 24 Jun 2010 22:29:17 +0000 (19:29 -0300)]
asfdemux: Fix sending eos event for chained asfs

Properly push EOS event when finishing a chained asf file
in pull mode

Fixes #599718

14 years agodocs: add rmdemux to docs properly
Tim-Philipp Müller [Thu, 24 Jun 2010 19:55:33 +0000 (20:55 +0100)]
docs: add rmdemux to docs properly

The plugin has been renamed, remove old introspection file.

14 years agodocs: update for recent x264enc changes
Tim-Philipp Müller [Thu, 24 Jun 2010 17:04:15 +0000 (18:04 +0100)]
docs: update for recent x264enc changes

14 years agormdemux: fix compiler warning when debugging system in core is disabled
Tim-Philipp Müller [Thu, 24 Jun 2010 17:03:21 +0000 (18:03 +0100)]
rmdemux: fix compiler warning when debugging system in core is disabled

14 years agoAutomatic update of common submodule
Stefan Kost [Thu, 24 Jun 2010 12:09:44 +0000 (15:09 +0300)]
Automatic update of common submodule

From 73ff93a to a519571

14 years agoasfdemux: Allow at least 500ms of preroll.
Edward Hervey [Wed, 23 Jun 2010 09:05:11 +0000 (11:05 +0200)]
asfdemux: Allow at least 500ms of preroll.

Some files have insanely low preroll values which break the
all_streams_prerolled() logic.

Fixes #622407

14 years agox264enc: add new h264 caps attribute alignment
Mark Nauwelaerts [Tue, 22 Jun 2010 09:41:42 +0000 (11:41 +0200)]
x264enc: add new h264 caps attribute alignment

See #606662.

14 years agox264enc: conditionally expose enhanced upstream capabilities
Mark Nauwelaerts [Fri, 18 Jun 2010 12:35:00 +0000 (14:35 +0200)]
x264enc: conditionally expose enhanced upstream capabilities

API: GstX264Enc:sliced-threads
API: GstX264Enc:sync-lookahead
API: GstX264Enc:intra-refresh
API: GstX264Enc:mb-tree
API: GstX264Enc:rc-lookahead

See #607798.

14 years agodocs: update introspected plugin docs for gstdoc-scangobj and other changes
Tim-Philipp Müller [Thu, 17 Jun 2010 15:48:59 +0000 (16:48 +0100)]
docs: update introspected plugin docs for gstdoc-scangobj and other changes

Update common for latest gstdoc-scangobj and inspect xml files for
escaping and pad template order changes.

14 years agoAutomatic update of common submodule
Edward Hervey [Tue, 15 Jun 2010 14:50:21 +0000 (16:50 +0200)]
Automatic update of common submodule

From 9339ccc to 35617c2

14 years agoAutomatic update of common submodule
Stefan Kost [Tue, 15 Jun 2010 13:54:42 +0000 (16:54 +0300)]
Automatic update of common submodule

From 5adb1ca to 9339ccc

14 years agoAutomatic update of common submodule
Stefan Kost [Tue, 15 Jun 2010 13:35:49 +0000 (16:35 +0300)]
Automatic update of common submodule

From 57c89b7 to 5adb1ca

14 years agoAutomatic update of common submodule
Stefan Kost [Tue, 15 Jun 2010 12:50:09 +0000 (15:50 +0300)]
Automatic update of common submodule

From c804988 to 57c89b7

14 years agoconfigure: Update required GLib version to 2.20
Sebastian Dröge [Mon, 14 Jun 2010 14:59:25 +0000 (16:59 +0200)]
configure: Update required GLib version to 2.20

14 years agoa52dec: Call orc_init() before trying to get target flags
Sebastian Dröge [Mon, 14 Jun 2010 13:33:14 +0000 (15:33 +0200)]
a52dec: Call orc_init() before trying to get target flags

14 years agoa52dec: Remove debug printf...
Sebastian Dröge [Mon, 14 Jun 2010 12:34:56 +0000 (14:34 +0200)]
a52dec: Remove debug printf...

14 years agoa52dec: Use orc for CPU feature detection and don't check for liboil
Sebastian Dröge [Mon, 14 Jun 2010 12:34:25 +0000 (14:34 +0200)]
a52dec: Use orc for CPU feature detection and don't check for liboil

14 years agoconfigure: Use GLIB_EXTRA_CFLAGS
Sebastian Dröge [Mon, 14 Jun 2010 11:27:47 +0000 (13:27 +0200)]
configure: Use GLIB_EXTRA_CFLAGS

14 years agoAutomatic update of common submodule
Sebastian Dröge [Mon, 14 Jun 2010 11:05:25 +0000 (13:05 +0200)]
Automatic update of common submodule

From 7a0fdf5 to c804988

14 years agoAutomatic update of common submodule
Sebastian Dröge [Mon, 14 Jun 2010 09:35:03 +0000 (11:35 +0200)]
Automatic update of common submodule

From 6da3bab to 7a0fdf5

14 years agoAutomatic update of common submodule
Sebastian Dröge [Sat, 12 Jun 2010 06:29:28 +0000 (08:29 +0200)]
Automatic update of common submodule

From 733fca9 to 6da3bab

14 years agoAutomatic update of common submodule
David Schleef [Wed, 9 Jun 2010 19:40:26 +0000 (12:40 -0700)]
Automatic update of common submodule

From fad145b to 733fca9

14 years agoAutomatic update of common submodule
David Schleef [Wed, 9 Jun 2010 19:34:18 +0000 (12:34 -0700)]
Automatic update of common submodule

From 47683c1 to fad145b

14 years agormdemux: pass bitrate on caps
Wim Taymans [Sat, 5 Jun 2010 12:11:30 +0000 (14:11 +0200)]
rmdemux: pass bitrate on caps

Set the bitrate on the caps, some decoders like sipro need this to function
properly.

Fixes #620007

14 years agoAutomatic update of common submodule
David Schleef [Wed, 2 Jun 2010 06:49:37 +0000 (23:49 -0700)]
Automatic update of common submodule

From 17f89e5 to 47683c1

14 years agoAutomatic update of common submodule
David Schleef [Wed, 2 Jun 2010 05:55:22 +0000 (22:55 -0700)]
Automatic update of common submodule

From fd7ca04 to 17f89e5

14 years agox264enc: Only set i_weighted_pred on versions where it exists
Olivier Crête [Mon, 31 May 2010 20:57:42 +0000 (16:57 -0400)]
x264enc: Only set i_weighted_pred on versions where it exists

14 years agolamemp3enc: implement latency query
Tristan Matthews [Thu, 20 May 2010 15:28:47 +0000 (11:28 -0400)]
lamemp3enc: implement latency query

    The encoder's latency is deduced from the framesize. Fixes #618896.

14 years agoBack to development
Tim-Philipp Müller [Tue, 1 Jun 2010 08:30:33 +0000 (09:30 +0100)]
Back to development

14 years agoRelease 0.10.15
Tim-Philipp Müller [Sun, 30 May 2010 13:21:02 +0000 (14:21 +0100)]
Release 0.10.15

14 years agoUpdate .po files
Tim-Philipp Müller [Sun, 30 May 2010 13:20:02 +0000 (14:20 +0100)]
Update .po files

14 years agoconfigure: make implicit GLib and liboil requirements explicit
Tim-Philipp Müller [Sun, 30 May 2010 11:10:29 +0000 (12:10 +0100)]
configure: make implicit GLib and liboil requirements explicit

core/base 0.10.26 require GLib >= 2.18 and liboil >= 0.3.14

14 years agox264enc: disable I weighted pred
Olivier Crête [Thu, 27 May 2010 03:16:46 +0000 (23:16 -0400)]
x264enc: disable I weighted pred

If it is enabled, then it will be main profile instead of baseline.
This ensures maximum compatibility of the output stream until the
encoder configuration interface gets an overhaul with explicit
output profile selection.

Fixes #619776.

14 years ago0.10.14.3 pre-release
Tim-Philipp Müller [Wed, 26 May 2010 11:16:16 +0000 (12:16 +0100)]
0.10.14.3 pre-release

14 years agopo: update translations
Tim-Philipp Müller [Wed, 26 May 2010 10:52:53 +0000 (11:52 +0100)]
po: update translations

14 years agoAutomatic update of common submodule
Tim-Philipp Müller [Wed, 26 May 2010 10:55:58 +0000 (11:55 +0100)]
Automatic update of common submodule

From 357b0db to fd7ca04

14 years ago0.10.14.2 pre-release
Tim-Philipp Müller [Fri, 14 May 2010 19:06:46 +0000 (20:06 +0100)]
0.10.14.2 pre-release

14 years agoAutomatic update of common submodule
Tim-Philipp Müller [Fri, 14 May 2010 17:25:38 +0000 (18:25 +0100)]
Automatic update of common submodule

From 4d67bd6 to 357b0db

14 years agormdemux: add better sipr nibble swap routine
Wim Taymans [Fri, 14 May 2010 14:02:47 +0000 (16:02 +0200)]
rmdemux: add better sipr nibble swap routine

14 years agormdemux: descramble SIPR before pushing out
Wim Taymans [Thu, 13 May 2010 15:57:57 +0000 (17:57 +0200)]
rmdemux: descramble SIPR before pushing out

Collect and descramble the SIPR packets before pushing.
Descramble ATRAC audio.

Fixes #618098

14 years agorm: add function to descramble sipr
Wim Taymans [Thu, 13 May 2010 15:57:02 +0000 (17:57 +0200)]
rm: add function to descramble sipr

14 years agox264enc: Re-send the received upstream event as-is downstream
Olivier Crête [Sat, 9 Jan 2010 01:51:56 +0000 (20:51 -0500)]
x264enc: Re-send the received upstream event as-is downstream

https://bugzilla.gnome.org/show_bug.cgi?id=606689

14 years agoamrnbenc: Set rank to GST_RANK_SECONDARY
Edward Hervey [Fri, 7 May 2010 13:33:28 +0000 (15:33 +0200)]
amrnbenc: Set rank to GST_RANK_SECONDARY

14 years agortspreal: use GLib's base64 functions if available
Tim-Philipp Müller [Fri, 30 Apr 2010 18:53:15 +0000 (19:53 +0100)]
rtspreal: use GLib's base64 functions if available

Since gst_rtsp_base64_decode_ip() just got deprecated in -base git.

14 years agoamr: Use correct includes (as pkg-config suggests)
Руслан Ижбулатов [Wed, 28 Apr 2010 13:10:36 +0000 (17:10 +0400)]
amr: Use correct includes (as pkg-config suggests)

Fixes #617078

14 years agoac3parse: remove unported 0.8 plugin
Stefan Kost [Tue, 27 Apr 2010 10:15:47 +0000 (13:15 +0300)]
ac3parse: remove unported 0.8 plugin

New ac3parse lives in gst-plugin-bad. Remove this to avoid confusion.

14 years agodocs: adding a mp3decoder as well is useful
Stefan Kost [Tue, 27 Apr 2010 09:25:37 +0000 (12:25 +0300)]
docs: adding a mp3decoder as well is useful

14 years agodocs: massage section index
Stefan Kost [Tue, 27 Apr 2010 08:39:51 +0000 (11:39 +0300)]
docs: massage section index

14 years agoamrwbdec: move define to source to avoid hiding it from the docs
Stefan Kost [Tue, 27 Apr 2010 08:39:11 +0000 (11:39 +0300)]
amrwbdec: move define to source to avoid hiding it from the docs

14 years agodocs: remove short_desc, it is taken from element details
Stefan Kost [Tue, 27 Apr 2010 08:38:28 +0000 (11:38 +0300)]
docs: remove short_desc, it is taken from element details

14 years agodocs: fix sections docs for synaesthesia
Stefan Kost [Tue, 27 Apr 2010 08:37:52 +0000 (11:37 +0300)]
docs: fix sections docs for synaesthesia

14 years agodocs: add docs for mp3parse
Stefan Kost [Tue, 27 Apr 2010 08:02:15 +0000 (11:02 +0300)]
docs: add docs for mp3parse

14 years agodoap: update repository info from cvs->git and maintainers
Tim-Philipp Müller [Tue, 20 Apr 2010 16:23:04 +0000 (17:23 +0100)]
doap: update repository info from cvs->git and maintainers

14 years agoAutomatic update of common submodule
Tim-Philipp Müller [Fri, 23 Apr 2010 13:41:42 +0000 (14:41 +0100)]
Automatic update of common submodule

From fc85867 to 4d67bd6

14 years agox264enc: adaptive NALU type checking
Mark Nauwelaerts [Tue, 13 Apr 2010 14:59:03 +0000 (16:59 +0200)]
x264enc: adaptive NALU type checking

In particular, be less picky about SEI NALU order, which makes test more
robust with respect to changes in libx264.

See also #615410.

14 years agox264enc: adaptive x264 header NAL layout handling
Mark Nauwelaerts [Fri, 16 Apr 2010 19:10:58 +0000 (21:10 +0200)]
x264enc: adaptive x264 header NAL layout handling

Fixes #615410.

14 years agoasfdepay: we require a dynamic payload type
Wim Taymans [Thu, 15 Apr 2010 14:31:23 +0000 (16:31 +0200)]
asfdepay: we require a dynamic payload type

Add an extra caps property that restricts the depayloader to only accept dynamic
payload types.

14 years agoconfigure: Drop -Wcast-align
Thiago Santos [Thu, 15 Apr 2010 10:20:20 +0000 (07:20 -0300)]
configure: Drop -Wcast-align

Commit message copied from core's commit from Benjamin Otte:
246f5dba96a5b50bb74621af67b30942cca72af5
Apparently gcc warns that GstMiniObject is not castable to
GstEvent/Message/Buffer due to them containing 64bit variables, even
though ARM hackers claim that those only need 4byte alignment. And as
long as gcc behaves that way, this warning is not very useful.

So we'll remove the warning until this problem is fixed.

Fixes #615698

14 years agompeg2dec: copy over all buffer flags when copying buffers.
Edward Hervey [Wed, 14 Apr 2010 07:27:14 +0000 (09:27 +0200)]
mpeg2dec: copy over all buffer flags when copying buffers.

Avoids losing the tff/rff video buffer flags

14 years agoasfdemux: Make a table static to avoid having to always allocate it.
Edward Hervey [Sun, 14 Mar 2010 11:16:21 +0000 (12:16 +0100)]
asfdemux: Make a table static to avoid having to always allocate it.

14 years agox264enc: fix up avcC header construction
Mark Nauwelaerts [Tue, 13 Apr 2010 14:31:25 +0000 (16:31 +0200)]
x264enc: fix up avcC header construction

Fix off-by-one introduced by commit 35dd89951d8bb1c094da65480e4197efdfb4e93c
for BUILD_X264 < 76.

Also fixes #610089.

14 years agox264enc: parameterize libx264 provided NAL layout in codec-data creation
Mark Nauwelaerts [Tue, 13 Apr 2010 11:16:41 +0000 (13:16 +0200)]
x264enc: parameterize libx264 provided NAL layout in codec-data creation

14 years agoconfigure: Remove -Wundef flag
Edward Hervey [Mon, 12 Apr 2010 10:43:05 +0000 (12:43 +0200)]
configure: Remove -Wundef flag

Same fix as for #615161

14 years agoAutomatic update of common submodule
Sebastian Dröge [Fri, 9 Apr 2010 09:23:22 +0000 (11:23 +0200)]
Automatic update of common submodule

From fdf023d to fc85867

14 years agoi18n: #if ENABLE_NLS -> #ifdef ENABLE_NLS to fix compiler warning
Tim-Philipp Müller [Fri, 9 Apr 2010 08:55:14 +0000 (09:55 +0100)]
i18n: #if ENABLE_NLS -> #ifdef ENABLE_NLS to fix compiler warning

14 years agobuild: build plugins in parallel where possible, if make -jN is used
Tim-Philipp Müller [Mon, 29 Mar 2010 23:36:38 +0000 (00:36 +0100)]
build: build plugins in parallel where possible, if make -jN is used

14 years ago build: add cruft alert for common/shave*
Tim-Philipp Müller [Fri, 26 Mar 2010 17:08:23 +0000 (17:08 +0000)]
 build: add cruft alert for common/shave*

14 years agoFix make distcheck
Tim-Philipp Müller [Thu, 25 Mar 2010 19:40:33 +0000 (19:40 +0000)]
Fix make distcheck

Remove removed file win32/common/config.h.in from MANIFEST.

14 years agosynaestesia: Fix old-style prototype
Edward Hervey [Wed, 24 Mar 2010 18:35:03 +0000 (19:35 +0100)]
synaestesia: Fix old-style prototype

14 years agoFix pointer type.
Руслан Ижбулатов [Wed, 24 Mar 2010 16:07:11 +0000 (19:07 +0300)]
Fix pointer type.

Fixes #613815