Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-01-29 02:14:09 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-01-29 17:49:54 +0300
commitbfdf03207bc2fc10b92bb79ba67d57c441742bcd (patch)
tree0df96984ceda53c45639cc64b30947816115d7cb /libavcodec/vorbis_data.c
parentb91b04473abef3058e28cb4a05288426549e784b (diff)
avcodec/vorbis_data: Move encoder-related table to its only user
Said table was unused in case libvorbis was disabled. Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/vorbis_data.c')
-rw-r--r--libavcodec/vorbis_data.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libavcodec/vorbis_data.c b/libavcodec/vorbis_data.c
index 4dba6a8cd3..fd7e291de2 100644
--- a/libavcodec/vorbis_data.c
+++ b/libavcodec/vorbis_data.c
@@ -34,17 +34,6 @@ const uint8_t ff_vorbis_channel_layout_offsets[8][8] = {
{ 0, 2, 1, 7, 5, 6, 3, 4 },
};
-const uint8_t ff_vorbis_encoding_channel_layout_offsets[8][8] = {
- { 0 },
- { 0, 1 },
- { 0, 2, 1 },
- { 0, 1, 2, 3 },
- { 0, 2, 1, 3, 4 },
- { 0, 2, 1, 4, 5, 3 },
- { 0, 2, 1, 5, 6, 4, 3 },
- { 0, 2, 1, 6, 7, 4, 5, 3 },
-};
-
const uint64_t ff_vorbis_channel_layouts[9] = {
AV_CH_LAYOUT_MONO,
AV_CH_LAYOUT_STEREO,