diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2004-06-26 04:31:08 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2004-06-26 04:31:08 +0000 |
commit | 4a1c26719da23793e3188acb55d46d1310dd7cbd (patch) | |
tree | acc7974a1fe3331d1b94928ec3e5de3433008277 /multimedia/mjpegtools/files/patch-lavtools::divxdec.cpp | |
parent | Add support for a mime database in ${X11BASE} as well as ${LOCALBASE}. (diff) |
Update to 1.6.2
PR: 64721
Submitted by: Koop Mast <kwm@rainbow-runner.nl>
Notes
Notes:
svn path=/head/; revision=112295
Diffstat (limited to 'multimedia/mjpegtools/files/patch-lavtools::divxdec.cpp')
-rw-r--r-- | multimedia/mjpegtools/files/patch-lavtools::divxdec.cpp | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/multimedia/mjpegtools/files/patch-lavtools::divxdec.cpp b/multimedia/mjpegtools/files/patch-lavtools::divxdec.cpp deleted file mode 100644 index 27772b647f76..000000000000 --- a/multimedia/mjpegtools/files/patch-lavtools::divxdec.cpp +++ /dev/null @@ -1,40 +0,0 @@ ---- lavtools/divxdec.cpp.orig Wed May 29 19:02:12 2002 -+++ lavtools/divxdec.cpp Wed May 29 20:08:34 2002 -@@ -1284,7 +1284,7 @@ - exit (1); - } - --FILE* real_stdout; -+FILE real_stdout; - - int - main (int argc, char **argv) -@@ -1309,8 +1309,8 @@ - std::cout.rdbuf ( std::cerr.rdbuf () ); - // - // 4. keep old stdout FILE, and use stderr in its place (for printf ("...") ; ) -- real_stdout = stdout ; -- stdout = stderr; -+ real_stdout = *stdout ; -+ *stdout = *stderr; - - displayGreeting(); - -@@ -1733,7 +1733,7 @@ - if ( 0 == strcmp ( "-", filenameYUV ) ) - { - //output.fdYUV = FD_STDOUT; -- output.fdYUV = fileno ( real_stdout ); -+ output.fdYUV = fileno ( &real_stdout ); - } - else - { -@@ -2042,7 +2042,7 @@ - freeAll (); - // reassign cout, stdout to their original values. - std::cout.rdbuf ( real_cout ); -- stdout = real_stdout; -+ *stdout = real_stdout; - - mjpeg_info ( " " ); - mjpeg_info ( "Done. %i frames", output.processedFrames ); |