Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Gehrer <stefan.gehrer@gmx.de>2007-07-07 10:49:20 +0400
committerStefan Gehrer <stefan.gehrer@gmx.de>2007-07-07 10:49:20 +0400
commitce7088b9a8aa259daf75264ecd163025e74b94d2 (patch)
tree67f6a50592bc54cb43a5a7ef5a5518e734155246 /libavcodec/cavsdata.h
parent07caa46e997ccb445b61e14366686dc6c6ae5391 (diff)
cosmetic: rename VLC tables to make clear they
are for decoding Originally committed as revision 9517 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavsdata.h')
-rw-r--r--libavcodec/cavsdata.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/cavsdata.h b/libavcodec/cavsdata.h
index 86f7e179bb..306f418244 100644
--- a/libavcodec/cavsdata.h
+++ b/libavcodec/cavsdata.h
@@ -117,7 +117,7 @@ const vector_t ff_cavs_intra_mv = {0,0,1,REF_INTRA};
#define EOB 0,0,0
-static const residual_vlc_t intra_2dvlc[7] = {
+static const dec_2dvlc_t intra_dec[7] = {
{
{ //level / run / table_inc
{ 1, 1, 1},{ -1, 1, 1},{ 1, 2, 1},{ -1, 2, 1},{ 1, 3, 1},{ -1, 3, 1},
@@ -254,7 +254,7 @@ static const residual_vlc_t intra_2dvlc[7] = {
}
};
-static const residual_vlc_t inter_2dvlc[7] = {
+static const dec_2dvlc_t inter_dec[7] = {
{
{ //level / run
{ 1, 1, 1},{ -1, 1, 1},{ 1, 2, 1},{ -1, 2, 1},{ 1, 3, 1},{ -1, 3, 1},
@@ -391,7 +391,7 @@ static const residual_vlc_t inter_2dvlc[7] = {
}
};
-static const residual_vlc_t chroma_2dvlc[5] = {
+static const dec_2dvlc_t chroma_dec[5] = {
{
{ //level / run
{ 1, 1, 1},{ -1, 1, 1},{ 1, 2, 1},{ -1, 2, 1},{ 1, 3, 1},{ -1, 3, 1},