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
214cb565
Commit
214cb565
authored
Jan 07, 2010
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document several more things.
Originally committed as revision 21047 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
b0704443
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
h263.c
libavcodec/h263.c
+17
-0
No files found.
libavcodec/h263.c
View file @
214cb565
...
...
@@ -61,15 +61,32 @@
#define CBPC_B_VLC_BITS 3
#if CONFIG_ENCODERS
//The uni_DCtab_* tables below contain unified bits+length tables to encode DC
//differences in mpeg4. Unified in the sense that the specification specifies
//this encoding in several steps.
static
uint8_t
uni_DCtab_lum_len
[
512
];
static
uint8_t
uni_DCtab_chrom_len
[
512
];
static
uint16_t
uni_DCtab_lum_bits
[
512
];
static
uint16_t
uni_DCtab_chrom_bits
[
512
];
/**
* Table of number of bits a motion vector component needs.
*/
static
uint8_t
mv_penalty
[
MAX_FCODE
+
1
][
MAX_MV
*
2
+
1
];
/**
* Minimal fcode that a motion vector component would need.
*/
static
uint8_t
fcode_tab
[
MAX_MV
*
2
+
1
];
/**
* Minimal fcode that a motion vector component would need in umv.
* All entries in this table are 1.
*/
static
uint8_t
umv_fcode_tab
[
MAX_MV
*
2
+
1
];
//unified encoding tables for run length encoding of coefficients
//unified in the sense that the specification specifies the encoding in several steps.
static
uint32_t
uni_mpeg4_intra_rl_bits
[
64
*
64
*
2
*
2
];
static
uint8_t
uni_mpeg4_intra_rl_len
[
64
*
64
*
2
*
2
];
static
uint32_t
uni_mpeg4_inter_rl_bits
[
64
*
64
*
2
*
2
];
...
...
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