diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-03-06 04:07:37 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-03-06 04:07:37 +0000 |
commit | 7e18115a19c75ee1d52d81c3c928d0fdee66c701 (patch) | |
tree | 1971010779cb37b616adf9245418804ac9bca788 /audio/rebler/files/patch-rebler.cpp | |
parent | Oops, wrong version of this patch committed, fixed. (diff) |
add rebler 1.0
A program to convert mpeg2 and ac3 into DivX with ac3 audio
Notes
Notes:
svn path=/head/; revision=55615
Diffstat (limited to 'audio/rebler/files/patch-rebler.cpp')
-rw-r--r-- | audio/rebler/files/patch-rebler.cpp | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/audio/rebler/files/patch-rebler.cpp b/audio/rebler/files/patch-rebler.cpp new file mode 100644 index 000000000000..bd529f8c7549 --- /dev/null +++ b/audio/rebler/files/patch-rebler.cpp @@ -0,0 +1,43 @@ +--- rebler.cpp.orig Mon Aug 6 21:59:36 2001 ++++ rebler.cpp Wed Mar 6 12:03:42 2002 +@@ -29,6 +29,7 @@ + ******************************************************************************/ + + ++#include <vector> + #include <string> + #include <iostream> + #include <fstream> +@@ -281,8 +282,8 @@ + void dumpCodec( const CodecInfo* ci ) + { + cerr << "-------------------------------------------" << endl; +- cerr << "Name : " << ci->text << endl; +- cerr << "About : " << ci->about << endl; ++ cerr << "Name : " << ci->GetName() << endl; ++ cerr << "About : " << ci->GetAbout() << endl; + cerr << "Win32DLL : " << ci->dll << endl; + // cerr << "GUID : " << ci->guid << endl; + cerr << "module name: " << ci->modulename << endl; +@@ -325,8 +326,8 @@ + iter != ci->encoder_info.end(); + iter++) + { +- cerr << " " << "name : " << iter->name << endl; +- cerr << " " << "about : " << iter->about << endl; ++ cerr << " " << "name : " << iter->GetName() << endl; ++ cerr << " " << "about : " << iter->GetAbout() << endl; + cerr << " " << "kind : "; + switch(iter->kind) + { +@@ -338,8 +339,8 @@ + { + cerr << "Select from: "; + for( std::vector<std::string>::const_iterator i = +- iter->options.begin(); +- i != iter->options.end(); ++ (std::vector<std::string>::const_iterator)iter->options.begin(); ++ i != (std::vector<std::string>::const_iterator)iter->options.end(); + i++ ) + { + cerr << *i << " "; |