summaryrefslogtreecommitdiff
path: root/recordmydesktop/src/encode_cache.c
diff options
context:
space:
mode:
authoriovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a>2007-01-18 17:42:57 +0000
committeriovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a>2007-01-18 17:42:57 +0000
commita91f146a8e25edc4edbe6fa49ac45b576e336f07 (patch)
tree97e4603a8ba70197873bac15477dd2e45f5f621d /recordmydesktop/src/encode_cache.c
parente4c2e9c97b8419ab4464c8fa30e549853095deb9 (diff)
New file: encode_cache.c.
Moved some of the code on cache encoding, from main to a new fuction(EncodeCache). Added EncodeCache declaration in rmdfunc.h git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@257 f606c939-3180-4ac9-a4b8-4b8779d57d0a
Diffstat (limited to 'recordmydesktop/src/encode_cache.c')
-rw-r--r--recordmydesktop/src/encode_cache.c62
1 files changed, 62 insertions, 0 deletions
diff --git a/recordmydesktop/src/encode_cache.c b/recordmydesktop/src/encode_cache.c
new file mode 100644
index 0000000..5063d74
--- /dev/null
+++ b/recordmydesktop/src/encode_cache.c
@@ -0,0 +1,62 @@
+/*********************************************************************************
+* recordMyDesktop *
+**********************************************************************************
+* *
+* Copyright (C) 2006 John Varouhakis *
+* *
+* *
+* This program is free software; you can redistribute it and/or modify *
+* it under the terms of the GNU General Public License as published by *
+* the Free Software Foundation; either version 2 of the License, or *
+* (at your option) any later version. *
+* *
+* This program is distributed in the hope that it will be useful, *
+* but WITHOUT ANY WARRANTY; without even the implied warranty of *
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+* GNU General Public License for more details. *
+* *
+* You should have received a copy of the GNU General Public License *
+* along with this program; if not, write to the Free Software *
+* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
+* *
+* *
+* *
+* For further information contact me at johnvarouhakis@gmail.com *
+**********************************************************************************/
+
+
+#include <recordmydesktop.h>
+
+
+void EncodeCache(ProgData *pdata){
+ pthread_t flush_to_ogg_t,
+ load_cache_t;
+
+ fprintf(stderr,"Encoding started!\nThis may take several minutes.\n"
+ "Pressing Ctrl-C will cancel the procedure (resuming will not be possible, but\n"
+ "any portion of the video, which is already encoded won't be deleted).\n"
+ "Please wait...\n");
+ pdata->running=1;
+ InitEncoder(pdata,pdata->enc_data,1);
+ //load encoding and flushing threads
+ if(!pdata->args.nosound){
+ //before we start loading again
+ //we need to free any left-overs
+ while(pdata->sound_buffer!=NULL){
+ free(pdata->sound_buffer->data);
+ pdata->sound_buffer=pdata->sound_buffer->next;
+ }
+ }
+ pthread_create(&flush_to_ogg_t,NULL,(void *)FlushToOgg,(void *)pdata);
+
+ //start loading image and audio
+ pthread_create(&load_cache_t,NULL,(void *)LoadCache,(void *)pdata);
+
+ //join and finish
+ pthread_join(load_cache_t,NULL);
+ fprintf(stderr,"Encoding finished!\nWait a moment please...\n");
+ pthread_join(flush_to_ogg_t,NULL);
+
+}
+
+
© All Rights Reserved