diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-08-11 18:59:34 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-08-11 18:59:34 +0000 |
commit | 6775c758c48b1486e961572407f9f9990eb64327 (patch) | |
tree | ac77fb92eaf6ad267b3ca85dce429dd572bf00b5 /libav/utils.c | |
parent | cfcf0ffda67066a0eae887b96508b693d7d12f36 (diff) | |
download | ffmpeg-6775c758c48b1486e961572407f9f9990eb64327.tar.gz |
added PPM read/write support - added pgmyuvpipe format - added PPM pipe read/write support
Originally committed as revision 65 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/utils.c')
-rw-r--r-- | libav/utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libav/utils.c b/libav/utils.c index b29961c633..33949b6fe1 100644 --- a/libav/utils.c +++ b/libav/utils.c @@ -143,9 +143,12 @@ void register_all(void) register_avformat(&rawvideo_format); register_avformat(&ffm_format); register_avformat(&pgm_format); + register_avformat(&ppm_format); register_avformat(&pgmyuv_format); register_avformat(&imgyuv_format); register_avformat(&pgmpipe_format); + register_avformat(&pgmyuvpipe_format); + register_avformat(&ppmpipe_format); register_protocol(&file_protocol); register_protocol(&pipe_protocol); |