comparison vorbis_data.c @ 12009:8c82dfce2f24 libavcodec

vorbis: cosmetics, remove trailing comma for values that will never have anything added
author conrad
date Tue, 29 Jun 2010 06:42:08 +0000
parents 032a8dc03ced
children
comparison
equal deleted inserted replaced
12008:98fd80705850 12009:8c82dfce2f24
20 20
21 #include "dsputil.h" 21 #include "dsputil.h"
22 #include "vorbis.h" 22 #include "vorbis.h"
23 23
24 const uint8_t ff_vorbis_channel_layout_offsets[8][8] = { 24 const uint8_t ff_vorbis_channel_layout_offsets[8][8] = {
25 { 0, }, 25 { 0 },
26 { 0, 1, }, 26 { 0, 1 },
27 { 0, 2, 1, }, 27 { 0, 2, 1 },
28 { 0, 1, 2, 3, }, 28 { 0, 1, 2, 3 },
29 { 0, 2, 1, 3, 4, }, 29 { 0, 2, 1, 3, 4 },
30 { 0, 2, 1, 5, 3, 4, }, 30 { 0, 2, 1, 5, 3, 4 },
31 { 0, 2, 1, 6, 5, 3, 4, }, 31 { 0, 2, 1, 6, 5, 3, 4 },
32 { 0, 2, 1, 7, 5, 6, 3, 4}, 32 { 0, 2, 1, 7, 5, 6, 3, 4 },
33 }; 33 };
34 34
35 const uint8_t ff_vorbis_encoding_channel_layout_offsets[8][8] = { 35 const uint8_t ff_vorbis_encoding_channel_layout_offsets[8][8] = {
36 { 0, }, 36 { 0 },
37 { 0, 1, }, 37 { 0, 1 },
38 { 0, 2, 1, }, 38 { 0, 2, 1 },
39 { 0, 1, 2, 3, }, 39 { 0, 1, 2, 3 },
40 { 0, 2, 1, 3, 4, }, 40 { 0, 2, 1, 3, 4 },
41 { 0, 2, 1, 4, 5, 3, }, 41 { 0, 2, 1, 4, 5, 3 },
42 { 0, 2, 1, 5, 6, 4, 3, }, 42 { 0, 2, 1, 5, 6, 4, 3 },
43 { 0, 2, 1, 6, 7, 4, 5, 3 } 43 { 0, 2, 1, 6, 7, 4, 5, 3 },
44 }; 44 };
45 45
46 const int64_t ff_vorbis_channel_layouts[9] = { 46 const int64_t ff_vorbis_channel_layouts[9] = {
47 CH_LAYOUT_MONO, 47 CH_LAYOUT_MONO,
48 CH_LAYOUT_STEREO, 48 CH_LAYOUT_STEREO,