From ca334dd14b957c4af7fcab5e97b6ed675c97caad Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 7 Jan 2010 23:53:49 +0000 Subject: Split the mpeg4 encoder and decoder off h263.c Originally committed as revision 21079 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h263data.h | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'libavcodec/h263data.h') 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 */ -- cgit v1.2.3