Add function to export EDGE_WIDTH from libavcodec.

Originally committed as revision 22753 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Bobby Bingham 2010-04-01 06:41:16 +00:00
parent c846a984dc
commit 0fb49b597b
3 changed files with 18 additions and 1 deletions

View file

@ -101,6 +101,11 @@ void register_avcodec(AVCodec *codec)
}
#endif
unsigned avcodec_get_edge_width(void)
{
return EDGE_WIDTH;
}
void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
s->coded_width = width;
s->coded_height= height;