aboutsummaryrefslogtreecommitdiff
path: root/multimedia/xmps/files/patch-codecs::audio::ac3::ac3_codec.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-01-16 05:08:57 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-01-16 05:08:57 +0000
commitdf3e7e93b8317ece24fbe7d0c9e4aa1ebb0feca0 (patch)
tree1d9ecedb74d255866c8e1e5df9db0f2739a8ba66 /multimedia/xmps/files/patch-codecs::audio::ac3::ac3_codec.c
parentc31f9d6cf28e3aa831ff2390ee3ab6ea031dbc76 (diff)
Notes
Diffstat (limited to 'multimedia/xmps/files/patch-codecs::audio::ac3::ac3_codec.c')
-rw-r--r--multimedia/xmps/files/patch-codecs::audio::ac3::ac3_codec.c50
1 files changed, 0 insertions, 50 deletions
diff --git a/multimedia/xmps/files/patch-codecs::audio::ac3::ac3_codec.c b/multimedia/xmps/files/patch-codecs::audio::ac3::ac3_codec.c
deleted file mode 100644
index a7c921fe63b2..000000000000
--- a/multimedia/xmps/files/patch-codecs::audio::ac3::ac3_codec.c
+++ /dev/null
@@ -1,50 +0,0 @@
-
-$FreeBSD$
-
---- codecs/audio/ac3/ac3_codec.c.orig Mon Nov 20 21:41:18 2000
-+++ codecs/audio/ac3/ac3_codec.c Sun Feb 4 23:18:46 2001
-@@ -60,7 +60,7 @@
-
- } ac3_t;
-
--int error;
-+int ac3_error;
-
- /*
- * get_audio_codec_info : MANDATORY
-@@ -96,7 +96,7 @@
- ((ac3_t *) audio_decoder->data)->smixlev_lut[2] = 0.0;
- ((ac3_t *) audio_decoder->data)->smixlev_lut[3] = 0.500;
-
-- error = 0;
-+ ac3_error = 0;
-
- return audio_decoder;
- }
-@@ -208,7 +208,7 @@
-
- exponent_unpack(&data->bsi, &data->audblk);
-
-- if(error)
-+ if(ac3_error)
- goto error;
-
- // Figure out how many bits per mantissa
-@@ -220,7 +220,7 @@
-
- coeff_unpack (&data->bsi, &data->audblk, data->samples);
-
-- if(error)
-+ if(ac3_error)
- goto error;
-
- if(data->bsi.acmod == 0x2)
-@@ -242,7 +242,7 @@
- memset(data->s16_samples, 0, 256*2*2*6);
- ring_write((char *) data->s16_samples, 256*2*2*6);
-
-- error = 0;
-+ ac3_error = 0;
-
- }
-