diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-06-06 01:05:49 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-06-06 02:13:13 +0100 |
commit | 75cc0245faa8c13b19f9802c3384b6eec33f0ed7 (patch) | |
tree | 99a7c13aa63ed2931a6617ebad47f6a68a52820a /gst | |
parent | 73f231fac96e8b61dacfcbac790c42929f7896d8 (diff) | |
download | gst-plugins-bad-75cc0245faa8c13b19f9802c3384b6eec33f0ed7.tar.gz gst-plugins-bad-75cc0245faa8c13b19f9802c3384b6eec33f0ed7.tar.bz2 gst-plugins-bad-75cc0245faa8c13b19f9802c3384b6eec33f0ed7.zip |
id3mux: don't write ID3v1 tag until specifically instructed to do so
ID3v1 tags are one of the most broken and ill-designed things that
exist on this planet. Let's not write them by default.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/id3tag/gstid3mux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/id3tag/gstid3mux.c b/gst/id3tag/gstid3mux.c index 9a366754..b13bfb58 100644 --- a/gst/id3tag/gstid3mux.c +++ b/gst/id3tag/gstid3mux.c @@ -67,7 +67,7 @@ enum ARG_V2_MAJOR_VERSION }; -#define DEFAULT_WRITE_V1 TRUE +#define DEFAULT_WRITE_V1 FALSE #define DEFAULT_WRITE_V2 TRUE #define DEFAULT_V2_MAJOR_VERSION 3 |