diff options
author | Fred Rothganger <rothgang@uiuc.edu> | 2003-03-16 21:03:20 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-03-16 21:03:20 +0000 |
commit | e8750b00764f5148cd93f466f9e832eb8589aba7 (patch) | |
tree | 57e0854dac6635b5a89f4cdfe035f12282352ca6 /libavformat/avformat.h | |
parent | b536d0aad2750d3a5f24520fccf1e48a46cad53b (diff) | |
download | ffmpeg-e8750b00764f5148cd93f466f9e832eb8589aba7.tar.gz |
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
Originally committed as revision 1687 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 287bb80b0f..872f231916 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -331,9 +331,6 @@ int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f); extern AVOutputFormat yuv4mpegpipe_oformat; /* utils.c */ -#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)) - void av_register_input_format(AVInputFormat *format); void av_register_output_format(AVOutputFormat *format); AVOutputFormat *guess_stream_format(const char *short_name, |