diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-11-14 11:12:00 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-11-14 11:12:00 +0000 |
commit | f720de88e030035dc30e3a81741b60c16fd7508a (patch) | |
tree | 9d511ccb1daba442bd5e578b0001df0bf7041078 /configure.ac | |
parent | 423b598ccced7f6a87caa226d8192eda214ba264 (diff) |
configure.ac: Fix mpeg2enc configure check (similar to mplex check below).
Original commit message from CVS:
* configure.ac:
Fix mpeg2enc configure check (similar to mplex check below).
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9b19b2d9..23d5c8e2 100644 --- a/configure.ac +++ b/configure.ac @@ -1283,7 +1283,7 @@ main (int argc, char *argv[]) { MPEG2EncOptions *options = new MPEG2EncOptions (); - MPEG2Encoder encoder (*options); + MPEG2Encoder *encoder = new MPEG2Encoder (*options); return 0; } ],[ |