Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
8dbdc2d8
Commit
8dbdc2d8
authored
Feb 10, 2012
by
Alex Converse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dv: Move a table used only by the demuxer out of a shared header.
parent
89c9a8d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
dvdata.h
libavcodec/dvdata.h
+0
-4
dv.c
libavformat/dv.c
+4
-0
No files found.
libavcodec/dvdata.h
View file @
8dbdc2d8
...
@@ -95,10 +95,6 @@ static const uint8_t dv_audio_shuffle625[12][9] = {
...
@@ -95,10 +95,6 @@ static const uint8_t dv_audio_shuffle625[12][9] = {
{
31
,
67
,
103
,
21
,
57
,
93
,
11
,
47
,
83
},
{
31
,
67
,
103
,
21
,
57
,
93
,
11
,
47
,
83
},
};
};
static
const
av_unused
int
dv_audio_frequency
[
3
]
=
{
48000
,
44100
,
32000
,
};
/* macroblock bit budgets */
/* macroblock bit budgets */
static
const
uint8_t
block_sizes_dv2550
[
8
]
=
{
static
const
uint8_t
block_sizes_dv2550
[
8
]
=
{
112
,
112
,
112
,
112
,
80
,
80
,
0
,
0
,
112
,
112
,
112
,
112
,
80
,
80
,
0
,
0
,
...
...
libavformat/dv.c
View file @
8dbdc2d8
...
@@ -94,6 +94,10 @@ static const uint8_t* dv_extract_pack(uint8_t* frame, enum dv_pack_type t)
...
@@ -94,6 +94,10 @@ static const uint8_t* dv_extract_pack(uint8_t* frame, enum dv_pack_type t)
return
frame
[
offs
]
==
t
?
&
frame
[
offs
]
:
NULL
;
return
frame
[
offs
]
==
t
?
&
frame
[
offs
]
:
NULL
;
}
}
static
const
int
dv_audio_frequency
[
3
]
=
{
48000
,
44100
,
32000
,
};
/*
/*
* There's a couple of assumptions being made here:
* There's a couple of assumptions being made here:
* 1. By default we silence erroneous (0x8000/16bit 0x800/12bit) audio samples.
* 1. By default we silence erroneous (0x8000/16bit 0x800/12bit) audio samples.
...
...
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