Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
a07ac1f7
Commit
a07ac1f7
authored
May 05, 2013
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix type of shared flac table ff_flac_blocksize_table[].
Fixes ticket #2533.
parent
2d8dddd9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
flacdata.c
libavcodec/flacdata.c
+1
-1
flacdata.h
libavcodec/flacdata.h
+1
-1
No files found.
libavcodec/flacdata.c
View file @
a07ac1f7
...
@@ -27,7 +27,7 @@ const int ff_flac_sample_rate_table[16] =
...
@@ -27,7 +27,7 @@ const int ff_flac_sample_rate_table[16] =
8000
,
16000
,
22050
,
24000
,
32000
,
44100
,
48000
,
96000
,
8000
,
16000
,
22050
,
24000
,
32000
,
44100
,
48000
,
96000
,
0
,
0
,
0
,
0
};
0
,
0
,
0
,
0
};
const
int
16
_t
ff_flac_blocksize_table
[
16
]
=
{
const
int
32
_t
ff_flac_blocksize_table
[
16
]
=
{
0
,
192
,
576
<<
0
,
576
<<
1
,
576
<<
2
,
576
<<
3
,
0
,
0
,
0
,
192
,
576
<<
0
,
576
<<
1
,
576
<<
2
,
576
<<
3
,
0
,
0
,
256
<<
0
,
256
<<
1
,
256
<<
2
,
256
<<
3
,
256
<<
4
,
256
<<
5
,
256
<<
6
,
256
<<
7
256
<<
0
,
256
<<
1
,
256
<<
2
,
256
<<
3
,
256
<<
4
,
256
<<
5
,
256
<<
6
,
256
<<
7
};
};
libavcodec/flacdata.h
View file @
a07ac1f7
...
@@ -26,6 +26,6 @@
...
@@ -26,6 +26,6 @@
extern
const
int
ff_flac_sample_rate_table
[
16
];
extern
const
int
ff_flac_sample_rate_table
[
16
];
extern
const
int
16
_t
ff_flac_blocksize_table
[
16
];
extern
const
int
32
_t
ff_flac_blocksize_table
[
16
];
#endif
/* AVCODEC_FLACDATA_H */
#endif
/* AVCODEC_FLACDATA_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment