diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2007-07-10 21:52:04 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2007-07-10 21:52:04 +0000 |
commit | 7c37e504f0aaeca15fa4fcfda3ac1932cd158d57 (patch) | |
tree | 00af08d5c3284789aaee244422663e21c3c55c07 /ffplay.c | |
parent | 059eeabf35f866415d91ff2b5829d8ab2e7f43f9 (diff) | |
download | ffmpeg-7c37e504f0aaeca15fa4fcfda3ac1932cd158d57.tar.gz |
Remove OS/2 support
Originally committed as revision 9586 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 25 |
1 files changed, 0 insertions, 25 deletions
@@ -35,23 +35,6 @@ #undef main /* We don't want SDL to override our main() */ #endif -#ifdef CONFIG_OS2 -#define INCL_DOS - #include <os2.h> - #include <stdio.h> - - void MorphToPM() - { - PPIB pib; - PTIB tib; - - DosGetInfoBlocks(&tib, &pib); - - // Change flag from VIO to PM: - if (pib->pib_ultype==2) pib->pib_ultype = 3; - } -#endif - #undef exit //#define DEBUG_SYNC @@ -2533,14 +2516,6 @@ int main(int argc, char **argv) /* register all codecs, demux and protocols */ av_register_all(); - #ifdef CONFIG_OS2 - MorphToPM(); // Morph the VIO application to a PM one to be able to use Win* functions - - // Make stdout and stderr unbuffered - setbuf( stdout, NULL ); - setbuf( stderr, NULL ); - #endif - parse_options(argc, argv, options); if (!input_filename) |