[xiph-commits] r9846 - trunk/ffmpeg2theora
j at svn.xiph.org
j at svn.xiph.org
Wed Aug 24 15:33:58 PDT 2005
Author: j
Date: 2005-08-24 15:33:55 -0700 (Wed, 24 Aug 2005)
New Revision: 9846
Modified:
trunk/ffmpeg2theora/ChangeLog
trunk/ffmpeg2theora/ffmpeg2theora.c
Log:
comment out some av_frees
Modified: trunk/ffmpeg2theora/ChangeLog
===================================================================
--- trunk/ffmpeg2theora/ChangeLog 2005-08-24 21:35:54 UTC (rev 9845)
+++ trunk/ffmpeg2theora/ChangeLog 2005-08-24 22:33:55 UTC (rev 9846)
@@ -3,6 +3,7 @@
- update to latest version of ffmpeg-cvs(now uses pkg-config)
- --audiostream id, new option to select an audio stream if
input has more than one audio stream
+ - fixed ogg muxer
0.13 2005-03-12
- add new command line options, starttime, endtime, sharpness, keyint
Modified: trunk/ffmpeg2theora/ffmpeg2theora.c
===================================================================
--- trunk/ffmpeg2theora/ffmpeg2theora.c 2005-08-24 21:35:54 UTC (rev 9845)
+++ trunk/ffmpeg2theora/ffmpeg2theora.c 2005-08-24 22:33:55 UTC (rev 9846)
@@ -649,7 +649,11 @@
av_free_packet (&pkt);
}
while (ret >= 0);
+/*
+ lets takes this out for now, this way glic stops complaining.
+*/
+/*
if(frame) av_free(frame);
if(frame_tmp) av_free(frame_tmp);
if(output) av_free(output);
@@ -662,12 +666,12 @@
av_free(resampled);
av_free(audio_buf);
}
-
+
if (this->img_resample_ctx)
img_resample_close(this->img_resample_ctx);
if (this->audio_resample_ctx)
audio_resample_close(this->audio_resample_ctx);
-
+*/
oggmux_close (&info);
}
else{
More information about the commits
mailing list