diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 23:53:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 23:53:49 +0000 |
commit | ca334dd14b957c4af7fcab5e97b6ed675c97caad (patch) | |
tree | dd6bfecae0337a32bf00ca80a08dd33d2a8299f8 /libavcodec/h263data.h | |
parent | 84f0aba18dc8815c5cd408238909e4dc8b60684f (diff) | |
download | ffmpeg-ca334dd14b957c4af7fcab5e97b6ed675c97caad.tar.gz |
Split the mpeg4 encoder and decoder off h263.c
Originally committed as revision 21079 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263data.h')
-rw-r--r-- | libavcodec/h263data.h | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/libavcodec/h263data.h b/libavcodec/h263data.h index cfa5146b5b..9b22b2dea4 100644 --- a/libavcodec/h263data.h +++ b/libavcodec/h263data.h @@ -177,7 +177,7 @@ const int8_t inter_run[102] = { 35, 36, 37, 38, 39, 40, }; -static RLTable rl_inter = { +RLTable rl_inter = { 102, 58, inter_vlc, @@ -313,4 +313,23 @@ const uint8_t ff_h263_loop_filter_strength[32]={ 0, 1, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 6, 6, 7, 7, 7, 8, 8, 8, 9, 9, 9,10,10,10,11,11,11,12,12,12 }; +const AVRational ff_h263_pixel_aspect[16]={ + {0, 1}, + {1, 1}, + {12, 11}, + {10, 11}, + {16, 11}, + {40, 33}, + {0, 1}, + {0, 1}, + {0, 1}, + {0, 1}, + {0, 1}, + {0, 1}, + {0, 1}, + {0, 1}, + {0, 1}, + {0, 1}, +}; + #endif /* AVCODEC_H263DATA_H */ |