mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-15 19:55:08 +00:00
add some comments
patch by Denis Fortin \ fortin nerim net / Originally committed as revision 8864 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c4ca31d0a8
commit
f52a02be35
@ -610,6 +610,7 @@ extern const uint8_t inter_MCBPC_bits[28];
|
|||||||
|
|
||||||
static RLTable rl_table[NB_RL_TABLES] = {
|
static RLTable rl_table[NB_RL_TABLES] = {
|
||||||
/* intra luminance tables */
|
/* intra luminance tables */
|
||||||
|
/* low motion */
|
||||||
{
|
{
|
||||||
132,
|
132,
|
||||||
85,
|
85,
|
||||||
@ -617,6 +618,7 @@ static RLTable rl_table[NB_RL_TABLES] = {
|
|||||||
table0_run,
|
table0_run,
|
||||||
table0_level,
|
table0_level,
|
||||||
},
|
},
|
||||||
|
/* high motion */
|
||||||
{
|
{
|
||||||
185,
|
185,
|
||||||
119,
|
119,
|
||||||
@ -624,6 +626,7 @@ static RLTable rl_table[NB_RL_TABLES] = {
|
|||||||
table2_run,
|
table2_run,
|
||||||
table2_level,
|
table2_level,
|
||||||
},
|
},
|
||||||
|
/* mid-rate */
|
||||||
{
|
{
|
||||||
102,
|
102,
|
||||||
67,
|
67,
|
||||||
@ -632,6 +635,7 @@ static RLTable rl_table[NB_RL_TABLES] = {
|
|||||||
intra_level,
|
intra_level,
|
||||||
},
|
},
|
||||||
/* intra chrominance / non intra tables */
|
/* intra chrominance / non intra tables */
|
||||||
|
/* low motion inter */
|
||||||
{
|
{
|
||||||
148,
|
148,
|
||||||
81,
|
81,
|
||||||
@ -639,6 +643,7 @@ static RLTable rl_table[NB_RL_TABLES] = {
|
|||||||
table1_run,
|
table1_run,
|
||||||
table1_level,
|
table1_level,
|
||||||
},
|
},
|
||||||
|
/* high motion inter */
|
||||||
{
|
{
|
||||||
168,
|
168,
|
||||||
99,
|
99,
|
||||||
@ -646,6 +651,7 @@ static RLTable rl_table[NB_RL_TABLES] = {
|
|||||||
table4_run,
|
table4_run,
|
||||||
table4_level,
|
table4_level,
|
||||||
},
|
},
|
||||||
|
/* mid rate inter */
|
||||||
{
|
{
|
||||||
102,
|
102,
|
||||||
58,
|
58,
|
||||||
|
Loading…
Reference in New Issue
Block a user