H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)

Originally committed as revision 3643 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer
2004-10-28 10:12:57 +00:00
parent d7e2f57f0e
commit 1c3990dbba
9 changed files with 395 additions and 3 deletions

View File

@@ -344,6 +344,21 @@ AVInputFormat h261_iformat = {
.value = CODEC_ID_H261,
};
#ifdef CONFIG_ENCODERS
AVOutputFormat h261_oformat = {
"h261",
"raw h261",
"video/x-h261",
"h261",
0,
0,
CODEC_ID_H261,
raw_write_header,
raw_write_packet,
raw_write_trailer,
};
#endif //CONFIG_ENCODERS
AVInputFormat h263_iformat = {
"h263",
"raw h263",
@@ -648,6 +663,7 @@ int raw_init(void)
av_register_input_format(&dts_iformat);
av_register_input_format(&h261_iformat);
av_register_output_format(&h261_oformat);
av_register_input_format(&h263_iformat);
av_register_output_format(&h263_oformat);