summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-03-08 10:57:44 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-03-08 10:57:44 +0000
commitb559b29b1f9a8ce38f6d23fa4740b74bd5566bd5 (patch)
tree1f8dd705ad49af0d0afde2f98145be56a760e5a8 /libavformat/avformat.h
parent7004ffb3d7274fe95fab7a699b75cc4e6d9092e3 (diff)
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
fixed framerate encoding & decoding hopefully, this should fix av sync on long AVIs Originally committed as revision 1646 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index a58e73c4fa..f9d435a9b2 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -332,6 +332,8 @@ extern AVOutputFormat yuv4mpegpipe_oformat;
#define MKTAG(a,b,c,d) (a | (b << 8) | (c << 16) | (d << 24))
#define MKBETAG(a,b,c,d) (d | (c << 8) | (b << 16) | (a << 24))
+int av_gcd(int a, int b);
+
void av_register_input_format(AVInputFormat *format);
void av_register_output_format(AVOutputFormat *format);
AVOutputFormat *guess_stream_format(const char *short_name,