11 #include "mwindow.inc"
12 #include "quicktime.h"
14 #include "videodevice.inc"
15 #include "cmodel_permutation.h"
16 #include "interlacemodes.h"
17 #include "mainerror.h"
19 #include <sys/types.h>
26 // Needed for packaging engine
27 #include "preferences.h"
30 #define READ_SIZE 66000
32 /* This code was aspired by ffmpeg2theora */
33 /* Special thanks for help on this code goes out to j@v2v.cc */
36 FileOGG::FileOGG(Asset *asset, File *file)
37 : FileBase(asset, file)
39 if(asset->format == FILE_UNKNOWN)
40 asset->format = FILE_OGG;
41 asset->byte_order = 0;
53 ogg_sync_clear(&tf->videosync->sync);
55 theora_info_clear(&tf->ti);
56 theora_comment_clear(&tf->tc);
60 ogg_sync_clear(&tf->audiosync->sync);
62 vorbis_info_clear(&tf->vi);
63 vorbis_comment_clear(&tf->vc);
71 if (temp_frame) delete temp_frame;
72 if (stream) close_file();
75 for(int i = 0; i < asset->channels; i++)
76 delete [] pcm_history[i];
77 delete [] pcm_history;
80 if (flush_lock) delete flush_lock;
83 void FileOGG::get_parameters(BC_WindowBase *parent_window,
85 BC_WindowBase* &format_window,
91 OGGConfigAudio *window = new OGGConfigAudio(parent_window, asset);
92 format_window = window;
93 window->create_objects();
100 OGGConfigVideo *window = new OGGConfigVideo(parent_window, asset);
101 format_window = window;
102 window->create_objects();
103 window->run_window();
108 int FileOGG::reset_parameters_derived()
118 static int read_buffer(FILE *in, sync_window_t *sw, int buflen)
120 char *buffer = ogg_sync_buffer(&sw->sync, buflen);
121 // printf("reading range: %lli - %lli\n", sw->file_bufpos, sw->file_bufpos + buflen);
122 sw->wlen = fread(buffer, 1, buflen, in);
123 ogg_sync_wrote(&sw->sync, sw->wlen);
124 // printf("XX data: %c %c %c %c\n", sw->sync.data[0], sw->sync.data[1], sw->sync.data[2], sw->sync.data[3]);
125 sw->file_bufpos += sw->wlen;
126 // printf("sb: %i\n",buffer);
130 static int read_buffer_at(FILE *in, sync_window_t *sw, int buflen, off_t filepos)
132 // printf("seeking to %lli %lli\n", filepos, sw->file_bufpos);
133 fseeko(in, filepos, SEEK_SET);
134 // if (sw->file_bufpos != filepos)
136 sw->file_bufpos = filepos;
137 sw->file_pagepos = filepos; // this one is not valid until sync_pageseek!
138 ogg_sync_reset(&sw->sync);
141 return read_buffer(in, sw, buflen);
144 static int take_page_out_autoadvance(FILE *in, sync_window_t *sw, ogg_page *og)
148 int ret = ogg_sync_pageout(&sw->sync, og);
151 // printf("fpa: %lli\n", sw->file_pagepos);
152 // advance 'virtual' position
153 sw->file_pagepos += og->header_len + og->body_len;
154 // printf("ret2: %i %i\n",ret, og->header_len + og->body_len);
159 eprintf("FileOGG: Taking page out on nonsynced stream!\n");
164 // need more data for page
165 if (read_buffer(in, sw, READ_SIZE) == 0)
167 // FIXME We should report that just in some situations... sometimes we go to the end
168 // printf("FileOGG: There is no more data in the file we are reading from\n");
169 return 0; // No more data
177 // we never need to autoadvance when syncing, since our read chunks are larger than
179 static int sync_and_take_page_out(sync_window_t *sw, ogg_page *page)
181 page->header_len = 0;
185 int ret = ogg_sync_pageseek(&sw->sync, page);
188 sw->file_pagepos -= ret;
192 sw->file_pagepos += ret;
193 // printf("ret: %i %i\n",ret, page->header_len + page->body_len);
199 int FileOGG::open_file(int rd, int wr)
205 tf = new theoraframes_info_t;
215 if((stream = fopen(asset->path, "w+b")) == 0)
217 eprintf("Error while opening \"%s\" for writing. %m\n", asset->path);
221 tf->audio_bytesout = 0;
222 tf->video_bytesout = 0;
228 tf->apage_buffer_length = 0;
229 tf->vpage_buffer_length = 0;
236 /* yayness. Set up Ogg output stream */
239 if(asset->video_data)
241 ogg_stream_init (&tf->to, rand ()); /* oops, add one ot the above */
243 theora_info_init (&tf->ti);
245 tf->ti.frame_width = asset->width;
246 tf->ti.frame_height = asset->height;
248 tf->ti.width = ((asset->width + 15) >>4)<<4; // round up to the nearest multiple of 16
249 tf->ti.height = ((asset->height + 15) >>4)<<4; // round up to the nearest multiple of 16
250 if (tf->ti.width != tf->ti.frame_width || tf->ti.height != tf->ti.frame_height)
252 eprintf("WARNING: Encoding theora when width or height are not dividable by 16 is suboptimal\n");
256 tf->ti.offset_y = tf->ti.height - tf->ti.frame_height;
257 tf->ti.fps_numerator = (unsigned int)(asset->frame_rate * 1000000);
258 tf->ti.fps_denominator = 1000000;
260 if (asset->aspect_ratio > 0)
262 // Cinelerra uses frame aspect ratio, theora uses pixel aspect ratio
263 float pixel_aspect = asset->aspect_ratio / asset->width * asset->height;
264 tf->ti.aspect_numerator = (unsigned int)(pixel_aspect * 1000000);
265 tf->ti.aspect_denominator = 1000000;
268 tf->ti.aspect_numerator = 1000000;
269 tf->ti.aspect_denominator = 1000000;
271 if(EQUIV(asset->frame_rate, 25) || EQUIV(asset->frame_rate, 50))
272 tf->ti.colorspace = OC_CS_ITU_REC_470BG;
273 else if((asset->frame_rate > 29 && asset->frame_rate < 31) || (asset->frame_rate > 59 && asset->frame_rate < 61) )
274 tf->ti.colorspace = OC_CS_ITU_REC_470M;
276 tf->ti.colorspace = OC_CS_UNSPECIFIED;
278 if (asset->theora_fix_bitrate)
280 tf->ti.target_bitrate = asset->theora_bitrate;
284 tf->ti.target_bitrate = 0;
285 tf->ti.quality = asset->theora_quality; // video quality 0-63
287 tf->ti.dropframes_p = 0;
289 tf->ti.keyframe_auto_p = 1;
290 tf->ti.keyframe_frequency = asset->theora_keyframe_frequency;
291 tf->ti.keyframe_frequency_force = asset->theora_keyframe_force_frequency;
292 tf->ti.keyframe_data_target_bitrate = (unsigned int) (tf->ti.target_bitrate * 1.5) ;
293 tf->ti.keyframe_auto_threshold = 80;
294 tf->ti.keyframe_mindistance = 8;
295 tf->ti.noise_sensitivity = 1;
296 tf->ti.sharpness = 2;
299 if (theora_encode_init (&tf->td, &tf->ti))
301 eprintf("(FileOGG:file_open) initialization of theora codec failed\n");
304 /* init theora done */
306 /* initialize Vorbis too, if we have audio. */
307 if(asset->audio_data)
309 ogg_stream_init (&tf->vo, rand ());
310 vorbis_info_init (&tf->vi);
311 /* Encoding using a VBR quality mode. */
313 if(!asset->vorbis_vbr)
315 ret = vorbis_encode_init(&tf->vi,
318 asset->vorbis_max_bitrate,
319 asset->vorbis_bitrate,
320 asset->vorbis_min_bitrate);
323 // Set true VBR as demonstrated by http://svn.xiph.org/trunk/vorbis/doc/vorbisenc/examples.html
324 ret = vorbis_encode_setup_managed(&tf->vi,
328 asset->vorbis_bitrate,
330 ret |= vorbis_encode_ctl(&tf->vi, OV_ECTL_RATEMANAGE_AVG, NULL);
331 ret |= vorbis_encode_setup_init(&tf->vi);
336 eprintf("The Vorbis encoder could not set up a mode according to\n"
337 "the requested quality or bitrate.\n\n");
344 vorbis_comment_init (&tf->vc); // comment is cleared lateron
345 vorbis_comment_add_tag (&tf->vc, "ENCODER", PACKAGE_STRING);
346 /* set up the analysis state and auxiliary encoding storage */
347 vorbis_analysis_init (&tf->vd, &tf->vi);
348 vorbis_block_init (&tf->vd, &tf->vb);
351 /* audio init done */
353 /* write the bitstream header packets with proper page interleave */
355 /* first packet will get its own page automatically */
356 if(asset->video_data)
358 theora_encode_header (&tf->td, &tf->op);
359 ogg_stream_packetin (&tf->to, &tf->op);
360 if (ogg_stream_pageout (&tf->to, &tf->og) != 1)
362 eprintf("Internal Ogg library error.\n");
365 fwrite (tf->og.header, 1, tf->og.header_len, stream);
366 fwrite (tf->og.body, 1, tf->og.body_len, stream);
368 /* create the remaining theora headers */
369 theora_comment_init (&tf->tc);
370 theora_comment_add_tag (&tf->tc, "ENCODER", PACKAGE_STRING);
371 theora_encode_comment (&tf->tc, &tf->op);
372 ogg_stream_packetin (&tf->to, &tf->op);
373 theora_comment_clear(&tf->tc);
374 theora_encode_tables (&tf->td, &tf->op);
375 ogg_stream_packetin (&tf->to, &tf->op);
377 if(asset->audio_data)
380 ogg_packet header_comm;
381 ogg_packet header_code;
383 vorbis_analysis_headerout (&tf->vd, &tf->vc, &header,
384 &header_comm, &header_code);
385 ogg_stream_packetin (&tf->vo, &header); /* automatically placed in its own page */
386 vorbis_comment_clear(&tf->vc);
387 if (ogg_stream_pageout (&tf->vo, &tf->og) != 1)
389 eprintf("Internal Ogg library error.\n");
392 fwrite (tf->og.header, 1, tf->og.header_len, stream);
393 fwrite (tf->og.body, 1, tf->og.body_len, stream);
395 /* remaining vorbis header packets */
396 ogg_stream_packetin (&tf->vo, &header_comm);
397 ogg_stream_packetin (&tf->vo, &header_code);
400 /* Flush the rest of our headers. This ensures
401 * the actual data in each stream will start
402 * on a new page, as per spec. */
403 while (1 && asset->video_data)
405 int result = ogg_stream_flush (&tf->to, &tf->og);
409 eprintf("Internal Ogg library error.\n");
414 fwrite (tf->og.header, 1, tf->og.header_len, stream);
415 fwrite (tf->og.body, 1, tf->og.body_len, stream);
417 while (1 && asset->audio_data)
419 int result = ogg_stream_flush (&tf->vo, &tf->og);
423 eprintf("Internal Ogg library error.\n");
428 fwrite (tf->og.header, 1, tf->og.header_len, stream);
429 fwrite (tf->og.body, 1, tf->og.body_len, stream);
431 flush_lock = new Mutex("OGGFile::Flush lock");
432 // printf("End of headers at position: %lli\n", ftello(stream));
437 if((stream = fopen(asset->path, "rb")) == 0)
439 eprintf("Error while opening %s for reading. %m\n", asset->path);
443 /* get file length */
444 struct stat file_stat;
445 stat(asset->path, &file_stat);
446 file_length = file_stat.st_size;
448 /* start up Ogg stream synchronization layer */
449 /* oy is used just here to parse header, we use separate syncs for video and audio*/
451 ogg_sync_init(&oy.sync);
452 // make sure we init the position structures to zero
453 read_buffer_at(stream, &oy, READ_SIZE, 0);
456 /* init supporting Vorbis structures needed in header parsing */
457 vorbis_info_init(&tf->vi);
458 vorbis_comment_init(&tf->vc);
461 /* init supporting Theora structures needed in header parsing */
462 theora_comment_init(&tf->tc);
463 theora_info_init(&tf->ti);
467 /* Ogg file open; parse the headers */
468 /* Only interested in Vorbis/Theora streams */
476 // int ret = read_buffer(stream, &oy, 4096);
477 TRACE("FileOGG::open_file 60")
481 while(take_page_out_autoadvance(stream, &oy, &tf->og) > 0)
483 ogg_stream_state test;
485 /* is this a mandated initial header? If not, stop parsing */
486 if(!ogg_page_bos(&tf->og))
488 /* don't leak the page; get it into the appropriate stream */
489 // queue_page(&tf->og);
490 if(theora_p)ogg_stream_pagein(&tf->to, &tf->og);
491 if(vorbis_p)ogg_stream_pagein(&tf->vo, &tf->og);
497 ogg_stream_init(&test, ogg_page_serialno(&tf->og));
498 ogg_stream_pagein(&test, &tf->og);
499 ogg_stream_packetout(&test, &tf->op);
501 /* identify the codec: try theora */
502 if(!theora_p && theora_decode_header(&tf->ti, &tf->tc, &tf->op)>=0)
505 memcpy(&tf->to, &test, sizeof(test));
507 // find out granule shift - from liboggz's oggz_auto.c
508 unsigned char * header = tf->op.packet;
509 theora_keyframe_granule_shift = (char) ((header[40] & 0x03) << 3);
510 theora_keyframe_granule_shift |= (header[41] & 0xe0) >> 5;
512 } else if(!vorbis_p && vorbis_synthesis_headerin(&tf->vi, &tf->vc, &tf->op)>=0)
515 memcpy(&tf->vo, &test, sizeof(test));
519 /* whatever it is, we don't care about it */
520 ogg_stream_clear(&test);
523 /* fall through to non-bos page parsing */
527 /* we're expecting more header packets. */
528 while((theora_p && theora_p < 3) || (vorbis_p && vorbis_p < 3))
532 /* look for further theora headers */
533 while(theora_p && (theora_p < 3) && (ret = ogg_stream_packetout(&tf->to, &tf->op)))
537 eprintf("Error parsing Theora stream headers; corrupt stream?\n");
540 if(theora_decode_header(&tf->ti, &tf->tc, &tf->op))
542 eprintf("Error parsing Theora stream headers; corrupt stream?\n");
550 /* look for more vorbis header packets */
551 while(vorbis_p && (vorbis_p < 3) && (ret = ogg_stream_packetout(&tf->vo, &tf->op)))
555 eprintf("Error parsing Vorbis stream headers; corrupt stream?\n");
558 if (vorbis_synthesis_headerin(&tf->vi, &tf->vc, &tf->op))
560 eprintf("Error parsing Vorbis stream headers; corrupt stream?\n");
568 if ((!vorbis_p || vorbis_p == 3) && (!theora_p || theora_p == 3))
570 /* The header pages/packets will arrive before anything else we
571 care about, or the stream is not obeying spec */
573 if(take_page_out_autoadvance(stream, &oy, &tf->og) > 0)
575 // queue_page(&tf->og); /* demux into the appropriate stream */
576 if(theora_p) ogg_stream_pagein(&tf->to, &tf->og);
577 if(vorbis_p) ogg_stream_pagein(&tf->vo, &tf->og);
581 eprintf("End of file while searching for codec headers.\n");
585 // Remember where the real data begins for later seeking purposes
586 filedata_begin = oy.file_pagepos;
590 /* and now we have it all. initialize decoders */
595 // WORKAROUND for bug in alpha4 version of theora:
596 tf->td.internal_encode = 0;
598 ret = theora_decode_init(&tf->td, &tf->ti);
599 double fps = (double)tf->ti.fps_numerator/tf->ti.fps_denominator;
600 /* printf("FileOGG: Ogg logical stream %x is Theora %dx%d %.02f fps\n",
601 (unsigned int)tf->to.serialno, tf->ti.width, tf->ti.height,
605 Not yet available in alpha4, we assume 420 for now
607 switch(tf->ti.pixelformat)
609 case OC_PF_420: printf(" 4:2:0 video\n"); break;
610 case OC_PF_422: printf(" 4:2:2 video\n"); break;
611 case OC_PF_444: printf(" 4:4:4 video\n"); break;
614 printf(" video\n (UNKNOWN Chroma sampling!)\n");
619 theora_cmodel = BC_YUV420P;
621 if(tf->ti.width!=tf->ti.frame_width || tf->ti.height!=tf->ti.frame_height)
623 eprintf("Frame content is %dx%d with offset (%d,%d), We do not support this yet. You will get black border.\n",
624 tf->ti.frame_width, tf->ti.frame_height, tf->ti.offset_x, tf->ti.offset_y);
626 tf->videosync = new sync_window_t;
627 ogg_sync_init(&tf->videosync->sync);
628 tf->videosync->wlen = 0;
630 ret = ogg_get_first_page(tf->videosync, tf->to.serialno, &tf->videopage);
633 // we have headers already decoded, so just skip them
634 ogg_stream_reset(&tf->to);
635 ogg_stream_pagein(&tf->to, &tf->videopage);
638 while (ogg_stream_packetpeek(&tf->to, NULL) != 1)
640 if (!ogg_get_next_page(tf->videosync, tf->to.serialno, &tf->videopage))
642 eprintf("Cannot find next page while looking for first non-header packet\n");
645 ogg_stream_pagein(&tf->to, &tf->videopage);
647 ogg_stream_packetout(&tf->to, &op);
648 if (!theora_packet_isheader(&op))
651 // now get to the page of the finish of the first packet
652 while (ogg_page_packets(&tf->videopage) == 0)
654 if (ogg_page_granulepos(&tf->videopage) != -1)
656 eprintf("Broken ogg file - broken page: ogg_page_packets == 0 and granulepos != -1\n");
659 ogg_get_next_page(tf->videosync, tf->to.serialno, &tf->videopage);
661 // FIXME - LOW PRIORITY - start counting at first decodable keyframe!
662 // but then we have to fix a/v sync somehow
663 start_frame = (int64_t) (theora_granule_frame (&tf->td, ogg_page_granulepos(&tf->videopage)) - ogg_page_packets(&tf->videopage)) + 1;
665 ret = ogg_get_last_page(tf->videosync, tf->to.serialno, &tf->videopage);
666 last_frame = (int64_t) (theora_granule_frame (&tf->td, ogg_page_granulepos(&tf->videopage)));
667 asset->video_length = last_frame - start_frame + 1;
668 // printf("FileOGG:: first frame: %lli, last frame: %lli, video length: %lli\n", start_frame, last_frame, asset->video_length);
671 // FIXME - LOW PRIORITY Cinelerra does not honor the frame_width and frame_height
672 asset->width = tf->ti.width;
673 asset->height = tf->ti.height;
674 // Don't want a user configured frame rate to get destroyed
675 if(!asset->frame_rate)
676 asset->frame_rate = fps;
677 // All theora material is noninterlaced by definition
678 if(!asset->interlace_mode)
679 asset->interlace_mode = BC_ILACE_MODE_NOTINTERLACED;
681 /* ogg_get_page_of_frame(tf->videosync, tf->to.serialno, &og, 0 +start_frame);
682 ogg_get_page_of_frame(tf->videosync, tf->to.serialno, &og, 1 +start_frame);
683 ogg_get_page_of_frame(tf->videosync, tf->to.serialno, &og, 5 +start_frame);
684 ogg_get_page_of_frame(tf->videosync, tf->to.serialno, &og, 206 +start_frame);
685 ogg_get_page_of_frame(tf->videosync, tf->to.serialno, &og, 207 +start_frame);
686 ogg_get_page_of_frame(tf->videosync, tf->to.serialno, &og, 208 +start_frame);
689 ogg_seek_to_keyframe(tf->videosync, tf->to.serialno, 0 + start_frame, &kf);
690 ogg_seek_to_keyframe(tf->videosync, tf->to.serialno, 1 + start_frame, &kf);
691 ogg_seek_to_keyframe(tf->videosync, tf->to.serialno, 5 + start_frame, &kf);
692 ogg_seek_to_keyframe(tf->videosync, tf->to.serialno, 66 + start_frame, &kf);
693 //printf("Keyframe: %lli\n", kf);
694 ogg_seek_to_keyframe(tf->videosync, tf->to.serialno, 1274 + start_frame, &kf);
697 set_video_position(0); // make sure seeking is done to the first sample
698 ogg_frame_position = -10;
699 asset->video_data = 1;
700 strncpy(asset->vcodec, "theo", 4);
703 // report_colorspace(&ti);
704 // dump_comments(&tc);
707 /* tear down the partial theora setup */
708 theora_info_clear(&tf->ti);
709 theora_comment_clear(&tf->tc);
715 vorbis_synthesis_init(&tf->vd, &tf->vi);
716 vorbis_block_init(&tf->vd, &tf->vb);
717 /* fprintf(stderr,"FileOGG: Ogg logical stream %x is Vorbis %d channel %d Hz audio.\n",
718 (unsigned int)tf->vo.serialno, tf->vi.channels, (int)tf->vi.rate);
720 /* init audio_sync structure */
721 tf->audiosync = new sync_window_t;
722 ogg_sync_init(&tf->audiosync->sync);
723 tf->audiosync->wlen = 0;
725 int ret2 = ogg_get_first_page(tf->audiosync, tf->vo.serialno, &tf->audiopage);
728 ogg_stream_reset(&tf->vo);
729 // FIXME - LOW PRIORITY should be getting pages until one has granulepos, probably never happens in pracitce
730 ogg_stream_pagein(&tf->vo, &tf->audiopage);
731 ogg_int64_t accumulated = 0;
733 while((result = ogg_stream_packetout(&tf->vo, &op)))
737 long thisblock = vorbis_packet_blocksize(&tf->vi, &op);
739 accumulated += (lastblock + thisblock) >> 2;
740 lastblock = thisblock;
743 start_sample = ogg_page_granulepos(&tf->audiopage) - accumulated;
745 printf("Begin: %lli, To byte: %lli, granule: %lli, serialno: %x\n",
746 tf->audiosync->file_pagepos_found,
747 tf->audiosync->file_pagepos_found + tf->audiopage.body_len + tf->audiopage.header_len,
748 ogg_page_granulepos(&tf->audiopage),
749 ogg_page_serialno(&tf->audiopage));
750 while (ogg_get_next_page(tf->audiosync, tf->vo.serialno, &tf->audiopage))
751 printf("At byte: %lli, To byte: %lli, granule: %lli, serialno: %x\n",
752 tf->audiosync->file_pagepos_found,
753 tf->audiosync->file_pagepos_found + tf->audiopage.body_len + tf->audiopage.header_len,
754 ogg_page_granulepos(&tf->audiopage),
755 ogg_page_serialno(&tf->audiopage));
758 int ret = ogg_get_last_page(tf->audiosync, tf->vo.serialno, &tf->audiopage);
759 last_sample = ogg_page_granulepos(&tf->audiopage);
760 asset->audio_length = last_sample - start_sample;
762 /* printf("FileOGG:: First sample: %lli, last_sample: %lli\n", start_sample, last_sample);
763 printf("FileOGG:: audio length: samples: %lli, playing time: %f\n", asset->audio_length, 1.0 * asset->audio_length / tf->vi.rate);
765 /* printf("End: %lli, To byte: %lli, granule: %lli, serialno: %x\n",
766 tf->audiosync->file_pagepos_found,
767 tf->audiosync->file_pagepos_found + tf->audiopage.body_len + tf->audiopage.header_len,
768 ogg_page_granulepos(&tf->audiopage),
769 ogg_page_serialno(&tf->audiopage));
770 while (ogg_get_prev_page(tf->audiosync, tf->vo.serialno, &tf->audiopage))
771 printf("At byte: %lli, To byte: %lli, granule: %lli, serialno: %x\n",
772 tf->audiosync->file_pagepos_found,
773 tf->audiosync->file_pagepos_found + tf->audiopage.body_len + tf->audiopage.header_len,
774 ogg_page_granulepos(&tf->audiopage),
775 ogg_page_serialno(&tf->audiopage));
778 /* ogg_get_page_of_sample(tf->audiosync, tf->vo.serialno, &tf->audiopage, 0);
779 ogg_get_page_of_sample(tf->audiosync, tf->vo.serialno, &tf->audiopage, 1);
780 ogg_get_page_of_sample(tf->audiosync, tf->vo.serialno, &tf->audiopage, 50);
781 ogg_get_page_of_sample(tf->audiosync, tf->vo.serialno, &tf->audiopage, 5000);
782 ogg_get_page_of_sample(tf->audiosync, tf->vo.serialno, &tf->audiopage, 30000);
783 ogg_get_page_of_sample(tf->audiosync, tf->vo.serialno, &tf->audiopage, 50000);
784 ogg_get_page_of_sample(tf->audiosync, tf->vo.serialno, &tf->audiopage, 90000);
785 ogg_get_page_of_sample(tf->audiosync, tf->vo.serialno, &tf->audiopage, 95999);
786 ogg_get_page_of_sample(tf->audiosync, tf->vo.serialno, &tf->audiopage, 96000);
787 ogg_seek_to_sample(tf->audiosync, tf->vo.serialno, 0);
788 ogg_seek_to_sample(tf->audiosync, tf->vo.serialno, 1);
789 ogg_seek_to_sample(tf->audiosync, tf->vo.serialno, 5000);
790 ogg_seek_to_sample(tf->audiosync, tf->vo.serialno, 30000);
791 ogg_seek_to_sample(tf->audiosync, tf->vo.serialno, 50000);
792 ogg_seek_to_sample(tf->audiosync, tf->vo.serialno, 90000);
793 ogg_seek_to_sample(tf->audiosync, tf->vo.serialno, 95999);
794 ogg_seek_to_sample(tf->audiosync, tf->vo.serialno, 96000);
796 asset->channels = tf->vi.channels;
797 if(!asset->sample_rate)
798 asset->sample_rate = tf->vi.rate;
799 asset->audio_data = 1;
802 ogg_sample_position = -10;
803 set_audio_position(0); // make sure seeking is done to the first sample
804 strncpy(asset->acodec, "vorb", 4);
809 /* tear down the partial vorbis setup */
810 vorbis_info_clear(&tf->vi);
811 vorbis_comment_clear(&tf->vc);
814 ogg_sync_clear(&oy.sync);
820 int FileOGG::ogg_get_prev_page(sync_window_t *sw, long serialno, ogg_page *og)
824 off_t filepos = sw->file_pagepos_found - READ_SIZE;
825 int first_page_offset = 0;
827 int read_len = READ_SIZE;
829 // printf("fp: %lli pagepos found: %lli\n", filepos, sw->file_pagepos_found);
834 // read_len = read_len - (filedata_begin - filepos);
835 read_len = read_len + filepos;
840 int have_read = read_buffer_at(stream, sw, read_len, filepos);
842 // printf("reading at %lli, len: %i, read: %i, pagepos: %lli, pageposfound: %lli\n", filepos, read_len, have_read, sw->file_pagepos, sw->file_pagepos_found);
843 // printf("Buffer position: %lli\n", sw->file_bufpos);
844 // printf("SS: storage: %i, fill: %i, returned: %i\n", sw->sync.storage, sw->sync.fill, sw->sync.returned);
845 // printf("US: unsynced%i, headrebytes: %i, bodybyes: %i\n", sw->sync.unsynced, sw->sync.headerbytes, sw->sync.bodybytes);
846 // printf("data: %c %c %c %c\n", sw->sync.data[0], sw->sync.data[1], sw->sync.data[2], sw->sync.data[3]);
850 // read all pages in the buffer
854 while (first_page || page_length)
856 // if negative, skip bytes
857 while ((page_length = sync_and_take_page_out(sw, &page)) < 0)
859 page_offset -= page_length;
862 // printf("BBBb page_len: %i\n", page_length);
864 // if (filepos == 0 && page_length)
866 // printf("AAAAAAAAAAAAAAAAAAAAAAAAAaaa\n");
867 // printf("pp: %lli %x\n", sw->file_pagepos, ogg_page_serialno(&page));
870 first_page_offset = page_offset;
872 // printf("pl: %i, serial: %x iscem: %x\n", page_length, ogg_page_serialno(&page), serialno);
873 if (page_length && ogg_page_serialno(&page) == serialno)
875 // we will copy every page until last page in this buffer
878 sw->file_pagepos_found = sw->file_pagepos - page.header_len - page.body_len;
879 // printf("got it : %lli %i %i\n", sw->file_pagepos, page.header_len, page.body_len);
880 memcpy(og, &page, sizeof(page));
883 off_t old_filepos = filepos;
884 // printf("fpo: %i\n", first_page_offset);
885 filepos = filepos + first_page_offset - READ_SIZE;
888 // printf("finished\n");
895 int FileOGG::ogg_get_last_page(sync_window_t *sw, long serialno, ogg_page *og)
899 off_t filepos = file_length - READ_SIZE;
903 int first_page_offset = 0;
905 while (!done && filepos >= 0)
908 readlen = read_buffer_at(stream, sw, READ_SIZE, filepos);
910 // read all pages in the buffer
914 while (first_page || page_length)
916 // if negative, skip bytes
917 while ((page_length = sync_and_take_page_out(sw, &page)) < 0)
918 page_offset -= page_length;
920 first_page_offset = page_offset;
922 if (page_length && ogg_page_serialno(&page) == serialno)
924 // we will copy every page until last page in this buffer
926 sw->file_pagepos_found = sw->file_pagepos - page.header_len - page.body_len;
927 memcpy(og, &page, sizeof(page));
930 filepos = filepos + first_page_offset - READ_SIZE;
939 int FileOGG::ogg_get_first_page(sync_window_t *sw, long serialno, ogg_page *og)
941 // printf("FileOGG:: Seeking to first page at %lli\n", filedata_begin);
942 read_buffer_at(stream, sw, READ_SIZE, 0);
943 // we don't even need to sync since we _know_ it is right
944 return (ogg_get_next_page(sw, serialno, og));
947 int FileOGG::ogg_seek_to_databegin(sync_window_t *sw, long serialno)
950 // printf("FileOGG:: Seeking to first page at %lli\n", filedata_begin);
951 read_buffer_at(stream, sw, READ_SIZE, filedata_begin);
952 // we don't even need to sync since we _know_ it is right
956 int FileOGG::ogg_get_next_page(sync_window_t *sw, long serialno, ogg_page *og)
958 while (take_page_out_autoadvance(stream, sw, og) > 0)
960 if (ogg_page_serialno(og) == serialno)
962 sw->file_pagepos_found = sw->file_pagepos - og->header_len - og->body_len;
969 int FileOGG::ogg_sync_and_get_next_page(sync_window_t *sw, long serialno, ogg_page *og)
971 // TODO: Put better error reporting inhere
973 while ((ret = sync_and_take_page_out(sw, og)) < 0)
979 if (ogg_page_serialno(og) == serialno)
981 sw->file_pagepos_found = sw->file_pagepos - og->header_len - og->body_len;
984 while (ogg_get_next_page(sw, serialno, og))
985 if (ogg_page_serialno(og) == serialno)
987 sw->file_pagepos_found = sw->file_pagepos - og->header_len - og->body_len;
994 // >= 0, number of sample within a page
996 int FileOGG::ogg_get_page_of_sample(sync_window_t *sw, long serialno, ogg_page *og, int64_t sample)
998 // First make an educated guess about position
999 if (sample >= asset->audio_length + start_sample)
1001 eprintf("Illegal seek beyond end of samples\n");
1004 off_t educated_guess = filedata_begin + (file_length - filedata_begin) * (sample - start_sample) / asset->audio_length - READ_SIZE;
1005 if (educated_guess < 0)
1007 // printf("My educated guess: %lli\n", educated_guess);
1008 // now see if we won
1009 read_buffer_at(stream, sw, READ_SIZE, educated_guess);
1010 ogg_sync_and_get_next_page(sw, serialno, og);
1011 int64_t end_sample = ogg_page_granulepos(og);
1012 // linear seek to the sample
1013 int64_t start_sample = 0;
1014 // TODO: Use bisection also
1015 // printf("Next page granulepos: %lli, pagepos: %lli\n", end_sample, sw->file_pagepos_found);
1016 if (end_sample <= sample)
1019 while (end_sample <= sample)
1021 ogg_get_next_page(sw, serialno, og);
1022 start_sample = end_sample;
1023 end_sample = ogg_page_granulepos(og);
1025 ogg_get_prev_page(sw, serialno, og);
1026 while (ogg_page_continued(og) && ogg_page_packets(og) == 1)
1027 ogg_get_prev_page(sw, serialno, og);
1031 start_sample = end_sample;
1032 while (start_sample > sample || (ogg_page_continued(og) &&
1033 ogg_page_packets(og) == 1))
1035 // printf("get prev page: %lli pagepos:%lli\n", ogg_page_granulepos(og), sw->file_pagepos_found);
1036 ogg_get_prev_page(sw, serialno, og);
1037 end_sample = start_sample;
1038 start_sample = ogg_page_granulepos(og);
1040 // go forward one page at the end
1044 // printf("For sample %lli we need to start decoding on page with granulepos: %lli\n", sample, ogg_page_granulepos(og));
1048 // seeks, so next sample returned will be the correct one
1049 // sample here is still the vorbis sample number (= cinelerra sample number + start_sample)
1050 // reinits the decoding engine
1052 int FileOGG::ogg_seek_to_sample(sync_window_t *sw, long serialno, int64_t sample)
1054 // MAYBE FIXME - find out if we really are decoding previous two packets or not
1055 // get to the sample
1058 // printf("Calling get page of sample\n");
1059 if (!ogg_get_page_of_sample(sw, serialno, &og, sample))
1061 eprintf("Seeking to sample's page failed\n");
1065 // printf("Pagepos: %lli\n", sw->file_pagepos);
1066 vorbis_synthesis_restart(&tf->vd);
1067 ogg_stream_reset(&tf->vo);
1068 ogg_stream_pagein(&tf->vo, &og);
1070 // printf("seeking to sample : %lli , starting at page with gpos: %lli\n", sample, ogg_page_granulepos(&og));
1072 int64_t current_comming_sample = -1;
1076 // make sure we have a packet ready
1077 while (ogg_stream_packetpeek(&tf->vo, NULL) != 1)
1079 if (!ogg_get_next_page(sw, serialno, &og))
1081 eprintf("Cannot find next page while seeking\n");
1084 ogg_stream_pagein(&tf->vo, &og);
1086 ogg_stream_packetout(&tf->vo, &op);
1090 if(!vorbis_synthesis(&tf->vb, &op))
1092 int ret= vorbis_synthesis_blockin(&tf->vd, &tf->vb);
1093 int64_t previous_comming_sample = current_comming_sample;
1094 current_comming_sample += vorbis_synthesis_pcmout(&tf->vd, NULL);
1095 if (current_comming_sample > sample)
1097 if (previous_comming_sample > sample)
1099 eprintf("Ogg decoding error while seeking sample\n");
1101 vorbis_synthesis_read(&tf->vd, (sample - previous_comming_sample));
1102 // printf("WE GOT IT, samples already decoded: %li\n", vorbis_synthesis_pcmout(&tf->vd,NULL));
1103 return 1; // YAY next sample read is going to be ours, sexy!
1106 // discard decoded data before current sample
1107 vorbis_synthesis_read(&tf->vd, (current_comming_sample - previous_comming_sample));
1112 if (!sync && op.granulepos >= 0)
1115 current_comming_sample = op.granulepos;
1116 if(!vorbis_synthesis(&tf->vb, &op))
1118 vorbis_synthesis_blockin(&tf->vd, &tf->vb);
1119 if (vorbis_synthesis_pcmout(&tf->vd, NULL) != 0)
1121 eprintf("Something wrong while trying to seek\n");
1134 int FileOGG::ogg_get_page_of_frame(sync_window_t *sw, long serialno, ogg_page *og, int64_t frame)
1136 if (frame >= asset->video_length + start_frame)
1138 eprintf("Illegal seek beyond end of frames\n");
1141 // printf("frame: %lli start frame: %lli\n", frame, start_frame);
1142 // printf("file_length: %lli filedata_begin: %lli\n", file_length, filedata_begin);
1143 off_t educated_guess = filedata_begin + (file_length - filedata_begin) * (frame - start_frame) / asset->video_length - READ_SIZE/2;
1144 // educated_guess += 100000;
1145 if (educated_guess > file_length - READ_SIZE)
1146 educated_guess = file_length - READ_SIZE;
1147 if (educated_guess < filedata_begin)
1148 educated_guess = filedata_begin;
1149 // printf("My educated guess: %lli\n", educated_guess);
1150 // now see if we won
1151 read_buffer_at(stream, sw, READ_SIZE, educated_guess);
1152 ogg_sync_and_get_next_page(sw, serialno, og);
1153 int64_t pageend_frame;
1155 // find the page with "real" ending
1156 while ((pageend_frame = ogg_page_granulepos(og)) == -1)
1158 if (ogg_get_next_page(sw, serialno, og) == 0)
1164 pageend_frame = theora_granule_frame(&tf->td, ogg_page_granulepos(og));
1166 // FIXME - MEDIUM PRIORITY: read back if we've gone too far and no page of our serialno at all can be found
1169 // linear seek to the sample
1170 int64_t start_frame = 0;
1171 // TODO: Use bisection also
1172 // printf("Next page granulepos: %lli, pagepos: %lli\n", end_sample, sw->file_pagepos_found);
1173 int discard_packets = 0;
1176 if (pageend_frame <= frame)
1179 while (pageend_frame < frame)
1182 ogg_get_next_page(sw, serialno, og);
1183 } while (ogg_page_packets(og) == 0);
1184 pageend_frame = theora_granule_frame(&tf->td, ogg_page_granulepos(og));
1187 // go back if this frame starts on previous page
1188 if (ogg_page_continued(og) && pageend_frame - ogg_page_packets(og) == frame - 1)
1191 ogg_get_prev_page(sw, serialno, og);
1192 } while (ogg_page_packets(og) == 0 && ogg_page_continued(og));
1194 pageend_frame = theora_granule_frame(&tf->td, ogg_page_granulepos(og));
1198 int64_t first_frame_on_page = theora_granule_frame(&tf->td, ogg_page_granulepos(og)) - ogg_page_packets(og) + 2;
1199 if (!ogg_page_continued(og))
1200 first_frame_on_page--;
1201 while (first_frame_on_page > frame)
1203 // printf("get prev page: %lli pagepos:%lli\n", ogg_page_granulepos(og), sw->file_pagepos_found);
1205 ogg_get_prev_page(sw, serialno, og);
1206 } while (ogg_page_packets(og) == 0 && ogg_page_continued(og));
1208 // pageend_frame = theora_granule_frame(&tf->td, ogg_page_granulepos(og));
1209 first_frame_on_page = theora_granule_frame(&tf->td, ogg_page_granulepos(og)) - ogg_page_packets(og) + 2;
1210 if (!ogg_page_continued(og))
1211 first_frame_on_page--;
1214 // printf("Miss plus: %i, miss minus: %i\n", missp, missm);
1215 // printf("last frame of page with frame : %lli\n", pageend_frame);
1220 int FileOGG::ogg_seek_to_keyframe(sync_window_t *sw, long serialno, int64_t frame, int64_t *keyframe_number)
1224 // printf("Searching for the proper position to start decoding frame %lli\n", frame);
1225 if (!ogg_get_page_of_frame(sw, serialno, &og, frame))
1227 eprintf("Seeking to frame failed\n");
1230 // TODO: if the frame we are looking for continoues on the next page, we don't need to do this
1231 // Now go to previous page in order to find out the granulepos
1232 // Don't do it in case this is the first page.
1233 // printf("GP: %lli\n", ogg_page_granulepos(&og));
1234 int64_t granulepos, iframe, pframe;
1235 granulepos = ogg_page_granulepos(&og);
1236 iframe = granulepos >> theora_keyframe_granule_shift;
1237 pframe = granulepos - (iframe << theora_keyframe_granule_shift);
1238 // check if maybe iframe is known from this page already
1239 if (granulepos != -1 && iframe <= frame)
1241 // optimisation, iframe is already known from this page
1244 // get previous page so we will get the iframe number
1246 ogg_get_prev_page(sw, serialno, &og);
1247 } while (ogg_page_packets(&og) == 0);
1249 granulepos = ogg_page_granulepos(&og);
1250 iframe = granulepos >> theora_keyframe_granule_shift;
1251 pframe = granulepos - (iframe << theora_keyframe_granule_shift);
1253 int64_t first_frame_on_page = theora_granule_frame(&tf->td, ogg_page_granulepos(&og)) - ogg_page_packets(&og) + 2;
1254 if (!ogg_page_continued(&og))
1255 first_frame_on_page--;
1256 if (first_frame_on_page <= iframe)
1258 // optimisation, happens mainly in low-bitrate streams, it spares us one seek
1261 // get the page where keyframe starts
1262 if (!ogg_get_page_of_frame(sw, serialno, &og, iframe))
1264 eprintf("Seeking to frame failed\n");
1268 // printf("looking for frame: %lli, last frame of the page: %lli, last keyframe: %lli\n", frame, pframe+iframe, iframe);
1269 ogg_stream_reset(&tf->to);
1270 ogg_stream_pagein(&tf->to, &og);
1271 // Read until one frame before keyframe
1272 // printf("c: %i\n", ogg_page_continued(&og));
1273 int numread = iframe - (theora_granule_frame(&tf->td, ogg_page_granulepos(&og)) - ogg_page_packets(&og)) - 1;
1274 if (ogg_page_continued(&og))
1276 // printf("numread: %i\n", numread);
1277 // printf("FileOGG:: Proper position: %lli\n", theora_granule_frame(&tf->td, ogg_page_granulepos(&og)) + numread - ogg_page_packets(&og));
1280 while (ogg_stream_packetpeek(&tf->to, NULL) != 1)
1282 if (!ogg_get_next_page(sw, serialno, &og))
1284 eprintf("Cannot find next page while seeking\n");
1287 ogg_stream_pagein(&tf->to, &og);
1289 ogg_stream_packetout(&tf->to, &op);
1292 *keyframe_number = iframe;
1297 int FileOGG::check_sig(Asset *asset)
1300 FILE *fd = fopen(asset->path, "rb");
1303 fseek(fd, 0, SEEK_SET);
1306 fread(data, 4, 1, fd);
1308 if(data[0] == 'O' &&
1315 // printf("Yay, we have an ogg file\n");
1326 int FileOGG::close_file()
1333 if (asset->audio_data)
1334 write_samples_vorbis(0, 0, 1); // set eos
1335 if (asset->video_data)
1336 write_frames_theora(0, 1, 1); // set eos
1338 flush_ogg(1); // flush all
1340 if (asset->audio_data)
1342 vorbis_block_clear (&tf->vb);
1343 vorbis_dsp_clear (&tf->vd);
1344 vorbis_info_clear (&tf->vi);
1345 ogg_stream_clear (&tf->vo);
1347 if (asset->video_data)
1349 theora_info_clear (&tf->ti);
1350 ogg_stream_clear (&tf->to);
1351 theora_clear (&tf->td);
1354 if (stream) fclose(stream);
1358 if (asset->audio_data)
1360 vorbis_block_clear (&tf->vb);
1361 vorbis_dsp_clear (&tf->vd);
1362 vorbis_comment_clear (&tf->vc);
1363 vorbis_info_clear (&tf->vi);
1364 ogg_stream_clear (&tf->vo);
1366 theora_comment_clear(&tf->tc);
1367 if (asset->video_data)
1369 theora_info_clear (&tf->ti);
1370 theora_comment_clear (&tf->tc);
1371 theora_clear (&tf->td);
1372 ogg_stream_clear (&tf->to);
1376 if (stream) fclose(stream);
1382 int FileOGG::close_file_derived()
1384 //printf("FileOGG::close_file_derived(): 1\n");
1385 if (stream) fclose(stream);
1389 int64_t FileOGG::get_video_position()
1392 return next_frame_position - start_frame;
1395 int64_t FileOGG::get_audio_position()
1397 return next_sample_position - start_sample;
1400 int FileOGG::set_video_position(int64_t x)
1403 // printf("SVP: %lli\n", x);
1405 next_frame_position = x + start_frame;
1410 int FileOGG::colormodel_supported(int colormodel)
1414 if (colormodel == BC_YUV420P)
1419 int FileOGG::get_best_colormodel(Asset *asset, int driver)
1426 int FileOGG::read_frame(VFrame *frame)
1429 if(!stream) return 1;
1432 // skip is cheaper than seek, do it...
1433 int decode_frames = 0;
1434 int expect_keyframe = 0;
1435 if (ogg_frame_position >= 0 &&
1436 next_frame_position >= ogg_frame_position &&
1437 next_frame_position - ogg_frame_position < 32)
1439 decode_frames = next_frame_position - ogg_frame_position;
1441 if (next_frame_position != ogg_frame_position)
1443 if (!ogg_seek_to_keyframe(tf->videosync, tf->to.serialno, next_frame_position, &ogg_frame_position))
1445 eprintf("Error while seeking to frame's keyframe (frame: %lli, keyframe: %lli)\n", next_frame_position, ogg_frame_position);
1448 // printf("For frame: %lli, keyframe is: %lli\n", next_frame_position,ogg_frame_position);
1449 // skip frames must be > 0 here
1450 decode_frames = next_frame_position - ogg_frame_position + 1;
1451 ogg_frame_position --; // ogg_frame_position is at last decoded frame, so it will point right
1452 if (decode_frames <= 0)
1454 eprintf("Error while seeking to keyframe, wrong keyframe number (frame: %lli, keyframe: %lli)\n", next_frame_position, ogg_frame_position);
1458 expect_keyframe = 1;
1461 // printf("Frames to decode: %i\n", decode_frames);
1463 // THIS IS WHAT CAUSES SLOWNESS OF SEEKING, but we can do nothing about it.
1464 while (decode_frames > 0)
1468 while (ogg_stream_packetpeek(&tf->to, NULL) != 1)
1470 if (!ogg_get_next_page(tf->videosync, tf->to.serialno, &og))
1472 eprintf("Cannot find next page while seeking\n");
1475 ogg_stream_pagein(&tf->to, &og);
1477 ogg_stream_packetout(&tf->to, &op);
1478 if (expect_keyframe && !theora_packet_iskeyframe(&op))
1480 eprintf("Expecting a keyframe, but didn't get it\n");
1481 // return 1; this is generally not a fatal error
1483 expect_keyframe = 0;
1486 theora_decode_packetin(&tf->td, &op);
1489 ogg_frame_position ++;
1493 int ret = theora_decode_YUVout (&tf->td, &yuv);
1496 eprintf("theora_decode_YUVout() failed with code %i\n", ret);
1500 /* yuv.y += yuv.y_stride * (yuv.y_height - 1);
1501 yuv.u += yuv.uv_stride * (yuv.uv_height - 1);
1502 yuv.v += yuv.uv_stride * (yuv.uv_height - 1);
1503 yuv.y_stride = - yuv.y_stride;
1504 yuv.uv_stride = - yuv.uv_stride;*/
1505 VFrame *temp_frame = new VFrame(yuv.y,
1513 // copy into temp frame...
1515 cmodel_transfer(frame->get_rows(),
1516 temp_frame->get_rows(),
1520 temp_frame->get_y(),
1521 temp_frame->get_u(),
1522 temp_frame->get_v(),
1529 yuv.y_width, // temp_frame can be larger than frame if width not dividable by 16
1532 frame->get_color_model(),
1534 -temp_frame->get_w(),
1539 next_frame_position ++;
1546 int FileOGG::ogg_decode_more_samples(sync_window_t *sw, long serialno)
1553 while (ogg_stream_packetpeek(&tf->vo, NULL) != 1)
1555 if (!ogg_get_next_page(sw, serialno, &og))
1557 eprintf("Cannot find next page while trying to decode more samples\n");
1560 ogg_stream_pagein(&tf->vo, &og);
1562 ogg_stream_packetout(&tf->vo, &op);
1563 if(!vorbis_synthesis(&tf->vb, &op))
1566 vorbis_synthesis_blockin(&tf->vd, &tf->vb);
1572 int FileOGG::set_audio_position(int64_t x)
1574 next_sample_position = x + start_sample;
1578 int FileOGG::move_history(int from, int to, int len)
1580 for(int i = 0; i < asset->channels; i++)
1581 memmove(pcm_history[i] + to, pcm_history[i] + from, sizeof(float) * len);
1582 history_start = history_start + from - to;
1586 int FileOGG::read_samples(double *buffer, int64_t len)
1588 float **vorbis_buffer;
1591 // printf("Reading samples: Channel: %i, number of samples: %lli, reading at :%lli\n", file->current_channel, len, next_sample_position);
1592 // printf("\tnext_sample_position: %lli, length: %i\n", next_sample_position, len);
1593 // printf("\thistory_start: %lli, length: %i\n", history_start, history_size);
1595 if(len > HISTORY_MAX)
1597 eprintf("max samples=%d\n", HISTORY_MAX);
1603 pcm_history = new float*[asset->channels];
1604 for(int i = 0; i < asset->channels; i++)
1605 pcm_history[i] = new float[HISTORY_MAX];
1606 history_start = -100000000; // insane value to trigger reload
1610 int64_t hole_start = -1;
1611 int64_t hole_len = -1;
1612 int64_t hole_absstart = -1;
1613 int64_t hole_fill = 0;
1615 if (history_start < next_sample_position && history_start + history_size > next_sample_position && history_start + history_size < next_sample_position + len)
1619 hole_start = history_start + history_size - next_sample_position;
1620 hole_len = history_size - hole_start;
1621 hole_absstart = next_sample_position + hole_start;
1622 move_history(next_sample_position - history_start,
1627 if (next_sample_position < history_start && history_start < next_sample_position + len)
1632 hole_len = history_start - next_sample_position;
1633 hole_absstart = next_sample_position;
1634 // printf("hs: %lli, histstart: %lli, next_sample_position: %lli\n", history_size, history_start, next_sample_position);
1635 // printf("to: 0, from: %lli, size: %lli\n",
1636 // history_start - next_sample_position,
1637 // history_size - history_start + next_sample_position);
1639 history_start - next_sample_position,
1640 history_size - history_start + next_sample_position);
1643 if (next_sample_position >= history_start + history_size || next_sample_position + len <= history_start)
1648 hole_len = HISTORY_MAX;
1649 hole_absstart = next_sample_position;
1650 history_start = hole_absstart;
1651 history_size = hole_len;
1656 if (hole_start < 0 || hole_len <= 0 || hole_absstart < 0)
1658 eprintf("Error at finding out which range to read from file\n");
1662 if (hole_absstart + hole_len > asset->audio_length + start_sample)
1664 hole_len = asset->audio_length + start_sample - hole_absstart;
1665 history_size = asset->audio_length + start_sample - history_start;
1668 history_size = HISTORY_MAX;
1672 // printf("Decode samples at position: %lli, samples to read: %lli\n", hole_absstart, hole_len);
1674 int64_t samples_read = 0;
1675 if (ogg_sample_position != hole_absstart)
1677 ogg_sample_position = hole_absstart;
1678 if (!ogg_seek_to_sample(tf->audiosync, tf->vo.serialno, ogg_sample_position))
1680 eprintf("Error while seeking to sample\n");
1684 // now we have ogg_sample_positon aligned
1685 int64_t samples_to_read = hole_len;
1686 while (samples_read < hole_len)
1688 int64_t waiting_samples = vorbis_synthesis_pcmout(&tf->vd, &vorbis_buffer);
1689 int64_t takeout_samples;
1690 if (waiting_samples > samples_to_read - samples_read)
1691 takeout_samples = samples_to_read - samples_read;
1693 takeout_samples = waiting_samples;
1696 // printf("takeout samples: %lli, samples_read: %lli\n", takeout_samples, samples_read);
1697 for(int i = 0; i < asset->channels; i++)
1699 float *input = vorbis_buffer[i];
1700 float *output = pcm_history[i] + hole_start;
1702 for(int j = 0; j < takeout_samples ; j++)
1704 output[j] = input[j];
1708 vorbis_synthesis_read(&tf->vd, takeout_samples);
1709 samples_read += takeout_samples;
1710 ogg_sample_position += takeout_samples;
1711 hole_start += takeout_samples;
1713 if (samples_read < hole_len)
1714 if (!ogg_decode_more_samples(tf->audiosync, tf->vo.serialno))
1716 ogg_sample_position = -1;
1724 // now we can be sure our history is correct, just copy it out
1725 if (next_sample_position < history_start || next_sample_position + len > history_start + history_size)
1727 eprintf("History not aligned properly \n\tnext_sample_position: %lli, length: %i\n\thistory_start: %lli, length: %i\n", next_sample_position, len, history_start, history_size);
1730 float *input = pcm_history[file->current_channel] + next_sample_position - history_start;
1731 for (int i = 0; i < len; i++)
1732 buffer[i] = input[i];
1734 next_sample_position += len;
1739 int FileOGG::write_audio_page()
1743 ret = fwrite(tf->apage, 1, tf->apage_len, stream);
1744 if(ret < tf->apage_len)
1746 eprintf("error writing audio page\n");
1748 tf->apage_valid = 0;
1749 tf->a_pkg -= ogg_page_packets((ogg_page *)&tf->apage);
1753 int FileOGG::write_video_page()
1757 ret = fwrite(tf->vpage, 1, tf->vpage_len, stream);
1758 if(ret < tf->vpage_len)
1760 eprintf("error writing video page\n");
1762 tf->vpage_valid = 0;
1763 tf->v_pkg -= ogg_page_packets((ogg_page *)&tf->vpage);
1767 void FileOGG::flush_ogg (int e_o_s)
1773 /* flush out the ogg pages */
1775 /* Get pages for both streams, if not already present, and if available.*/
1776 if(asset->video_data && !tf->vpage_valid) {
1777 // this way seeking is much better,
1778 // not sure if 23 packets is a good value. it works though
1780 if(tf->v_pkg>22 && ogg_stream_flush(&tf->to, &og) > 0) {
1783 else if(ogg_stream_pageout(&tf->to, &og) > 0) {
1787 len = og.header_len + og.body_len;
1788 if(tf->vpage_buffer_length < len) {
1789 tf->vpage = (unsigned char *)realloc(tf->vpage, len);
1790 tf->vpage_buffer_length = len;
1792 tf->vpage_len = len;
1793 memcpy(tf->vpage, og.header, og.header_len);
1794 memcpy(tf->vpage+og.header_len , og.body, og.body_len);
1796 tf->vpage_valid = 1;
1797 tf->videotime = theora_granule_time (&tf->td,
1798 ogg_page_granulepos(&og));
1801 if(asset->audio_data && !tf->apage_valid) {
1802 // this way seeking is much better,
1803 // not sure if 23 packets is a good value. it works though
1805 if(tf->a_pkg>22 && ogg_stream_flush(&tf->vo, &og) > 0) {
1808 else if(ogg_stream_pageout(&tf->vo, &og) > 0) {
1812 len = og.header_len + og.body_len;
1813 if(tf->apage_buffer_length < len) {
1814 tf->apage = (unsigned char *)realloc(tf->apage, len);
1815 tf->apage_buffer_length = len;
1817 tf->apage_len = len;
1818 memcpy(tf->apage, og.header, og.header_len);
1819 memcpy(tf->apage+og.header_len , og.body, og.body_len);
1821 tf->apage_valid = 1;
1822 tf->audiotime= vorbis_granule_time (&tf->vd,
1823 ogg_page_granulepos(&og));
1827 if(!asset->audio_data && tf->vpage_valid) {
1830 else if(!asset->video_data && tf->apage_valid) {
1833 /* We're using both. We can output only:
1834 * a) If we have valid pages for both
1835 * b) At EOS, for the remaining stream.
1837 else if(tf->vpage_valid && tf->apage_valid) {
1838 /* Make sure they're in the right order. */
1839 if(tf->videotime <= tf->audiotime)
1844 else if(e_o_s && tf->vpage_valid) {
1847 else if(e_o_s && tf->apage_valid) {
1851 break; /* Nothing more writable at the moment */
1854 flush_lock->unlock();
1858 int FileOGG::write_samples_vorbis(double **buffer, int64_t len, int e_o_s)
1861 float **vorbis_buffer;
1862 static int samples = 0;
1866 vorbis_analysis_wrote (&tf->vd, 0);
1869 vorbis_buffer = vorbis_analysis_buffer (&tf->vd, len);
1870 /* double to float conversion */
1871 for(i = 0; i<asset->channels; i++)
1873 for (j = 0; j < len; j++)
1875 vorbis_buffer[i][j] = buffer[i][j];
1878 vorbis_analysis_wrote (&tf->vd, len);
1880 while(vorbis_analysis_blockout (&tf->vd, &tf->vb) == 1)
1882 /* analysis, assume we want to use bitrate management */
1883 vorbis_analysis (&tf->vb, NULL);
1884 vorbis_bitrate_addblock (&tf->vb);
1886 /* weld packets into the bitstream */
1887 while (vorbis_bitrate_flushpacket (&tf->vd, &tf->op))
1890 ogg_stream_packetin (&tf->vo, &tf->op);
1892 flush_lock->unlock();
1902 int FileOGG::write_samples(double **buffer, int64_t len)
1905 return write_samples_vorbis(buffer, len, 0);
1909 int FileOGG::write_frames_theora(VFrame ***frames, int len, int e_o_s)
1911 // due to clumsy theora's design we need to delay writing out by one frame
1912 // always stay one frame behind, so we can correctly encode e_o_s
1914 int i, j, result = 0;
1916 if(!stream) return 0;
1919 for(j = 0; j < len && !result; j++)
1921 if (temp_frame) // encode previous frame if available
1924 yuv.y_width = tf->ti.width;
1925 yuv.y_height = tf->ti.height;
1926 yuv.y_stride = temp_frame->get_bytes_per_line();
1928 yuv.uv_width = tf->ti.width / 2;
1929 yuv.uv_height = tf->ti.height / 2;
1930 yuv.uv_stride = temp_frame->get_bytes_per_line() /2;
1932 yuv.y = temp_frame->get_y();
1933 yuv.u = temp_frame->get_u();
1934 yuv.v = temp_frame->get_v();
1935 int ret = theora_encode_YUVin (&tf->td, &yuv);
1938 eprintf("theora_encode_YUVin() failed with code %i\nyuv_buffer: y_width: %i, y_height: %i, y_stride: %i, uv_width: %i, uv_height: %i, uv_stride: %i\n",
1948 while(theora_encode_packetout (&tf->td, e_o_s, &tf->op)) {
1950 ogg_stream_packetin (&tf->to, &tf->op);
1952 flush_lock->unlock();
1954 flush_ogg(0); // eos flush is done later at close_file
1956 // If we have e_o_s, don't encode any new frames
1962 temp_frame = new VFrame (0,
1967 VFrame *frame = frames[0][j];
1968 int in_color_model = frame->get_color_model();
1969 if (in_color_model == BC_YUV422P &&
1970 temp_frame->get_w() == frame->get_w() &&
1971 temp_frame->get_h() == frame->get_h() &&
1972 temp_frame->get_bytes_per_line() == frame->get_bytes_per_line())
1974 temp_frame->copy_from(frame);
1978 cmodel_transfer(temp_frame->get_rows(),
1980 temp_frame->get_y(),
1981 temp_frame->get_u(),
1982 temp_frame->get_v(),
1992 frame->get_w(), // temp_frame can be larger than frame if width not dividable by 16
1994 frame->get_color_model(),
1998 temp_frame->get_w());
2007 int FileOGG::write_frames(VFrame ***frames, int len)
2010 return write_frames_theora(frames, len, 0);
2013 OGGConfigAudio::OGGConfigAudio(BC_WindowBase *parent_window, Asset *asset)
2014 : BC_Window(PROGRAM_NAME ": Audio Compression",
2015 parent_window->get_abs_cursor_x(1),
2016 parent_window->get_abs_cursor_y(1),
2020 this->parent_window = parent_window;
2021 this->asset = asset;
2024 OGGConfigAudio::~OGGConfigAudio()
2029 int OGGConfigAudio::create_objects()
2031 // add_tool(new BC_Title(10, 10, _("There are no audio options for this format")));
2035 char string[BCTEXTLEN];
2037 add_tool(fixed_bitrate = new OGGVorbisFixedBitrate(x, y, this));
2038 add_tool(variable_bitrate = new OGGVorbisVariableBitrate(x1, y, this));
2041 sprintf(string, "%d", asset->vorbis_min_bitrate);
2042 add_tool(new BC_Title(x, y, _("Min bitrate:")));
2043 add_tool(new OGGVorbisMinBitrate(x1, y, this, string));
2046 add_tool(new BC_Title(x, y, _("Avg bitrate:")));
2047 sprintf(string, "%d", asset->vorbis_bitrate);
2048 add_tool(new OGGVorbisAvgBitrate(x1, y, this, string));
2051 add_tool(new BC_Title(x, y, _("Max bitrate:")));
2052 sprintf(string, "%d", asset->vorbis_max_bitrate);
2053 add_tool(new OGGVorbisMaxBitrate(x1, y, this, string));
2056 add_subwindow(new BC_OKButton(this));
2065 int OGGConfigAudio::close_event()
2071 OGGVorbisFixedBitrate::OGGVorbisFixedBitrate(int x, int y, OGGConfigAudio *gui)
2072 : BC_Radial(x, y, !gui->asset->vorbis_vbr, _("Average bitrate"))
2076 int OGGVorbisFixedBitrate::handle_event()
2078 gui->asset->vorbis_vbr = 0;
2079 gui->variable_bitrate->update(0);
2083 OGGVorbisVariableBitrate::OGGVorbisVariableBitrate(int x, int y, OGGConfigAudio *gui)
2084 : BC_Radial(x, y, gui->asset->vorbis_vbr, _("Variable bitrate"))
2088 int OGGVorbisVariableBitrate::handle_event()
2090 gui->asset->vorbis_vbr = 1;
2091 gui->fixed_bitrate->update(0);
2096 OGGVorbisMinBitrate::OGGVorbisMinBitrate(int x,
2098 OGGConfigAudio *gui,
2100 : BC_TextBox(x, y, 180, 1, text)
2104 int OGGVorbisMinBitrate::handle_event()
2106 gui->asset->vorbis_min_bitrate = atol(get_text());
2112 OGGVorbisMaxBitrate::OGGVorbisMaxBitrate(int x,
2114 OGGConfigAudio *gui,
2116 : BC_TextBox(x, y, 180, 1, text)
2120 int OGGVorbisMaxBitrate::handle_event()
2122 gui->asset->vorbis_max_bitrate = atol(get_text());
2128 OGGVorbisAvgBitrate::OGGVorbisAvgBitrate(int x, int y, OGGConfigAudio *gui, char *text)
2129 : BC_TextBox(x, y, 180, 1, text)
2133 int OGGVorbisAvgBitrate::handle_event()
2135 gui->asset->vorbis_bitrate = atol(get_text());
2143 OGGConfigVideo::OGGConfigVideo(BC_WindowBase *parent_window, Asset *asset)
2144 : BC_Window(PROGRAM_NAME ": Video Compression",
2145 parent_window->get_abs_cursor_x(1),
2146 parent_window->get_abs_cursor_y(1),
2150 this->parent_window = parent_window;
2151 this->asset = asset;
2154 OGGConfigVideo::~OGGConfigVideo()
2159 int OGGConfigVideo::create_objects()
2161 // add_tool(new BC_Title(10, 10, _("There are no video options for this format")));
2166 add_subwindow(new BC_Title(x, y + 5, _("Bitrate:")));
2167 add_subwindow(new OGGTheoraBitrate(x1, y, this));
2168 add_subwindow(fixed_bitrate = new OGGTheoraFixedBitrate(x2, y, this));
2171 add_subwindow(new BC_Title(x, y, _("Quality:")));
2172 add_subwindow(new BC_ISlider(x + 80,
2179 asset->theora_quality,
2182 &asset->theora_quality));
2185 add_subwindow(fixed_quality = new OGGTheoraFixedQuality(x2, y, this));
2188 add_subwindow(new BC_Title(x, y, _("Keyframe frequency:")));
2189 OGGTheoraKeyframeFrequency *keyframe_frequency =
2190 new OGGTheoraKeyframeFrequency(x1 + 60, y, this);
2191 keyframe_frequency->create_objects();
2194 add_subwindow(new BC_Title(x, y, _("Keyframe force frequency:")));
2195 OGGTheoraKeyframeForceFrequency *keyframe_force_frequency =
2196 new OGGTheoraKeyframeForceFrequency(x1 + 60, y, this);
2197 keyframe_force_frequency->create_objects();
2200 add_subwindow(new BC_Title(x, y, _("Sharpness:")));
2201 OGGTheoraSharpness *sharpness =
2202 new OGGTheoraSharpness(x1 + 60, y, this);
2203 sharpness->create_objects();
2207 add_subwindow(new BC_OKButton(this));
2214 int OGGConfigVideo::close_event()
2220 OGGTheoraBitrate::OGGTheoraBitrate(int x, int y, OGGConfigVideo *gui)
2221 : BC_TextBox(x, y, 100, 1, gui->asset->theora_bitrate)
2227 int OGGTheoraBitrate::handle_event()
2229 // TODO: MIN / MAX check
2230 gui->asset->theora_bitrate = atol(get_text());
2237 OGGTheoraFixedBitrate::OGGTheoraFixedBitrate(int x, int y, OGGConfigVideo *gui)
2238 : BC_Radial(x, y, gui->asset->theora_fix_bitrate, _("Fixed bitrate"))
2243 int OGGTheoraFixedBitrate::handle_event()
2246 gui->asset->theora_fix_bitrate = 1;
2247 gui->fixed_quality->update(0);
2251 OGGTheoraFixedQuality::OGGTheoraFixedQuality(int x, int y, OGGConfigVideo *gui)
2252 : BC_Radial(x, y, !gui->asset->theora_fix_bitrate, _("Fixed quality"))
2257 int OGGTheoraFixedQuality::handle_event()
2260 gui->asset->theora_fix_bitrate = 0;
2261 gui->fixed_bitrate->update(0);
2265 OGGTheoraKeyframeFrequency::OGGTheoraKeyframeFrequency(int x, int y, OGGConfigVideo *gui)
2266 : BC_TumbleTextBox(gui,
2267 (int64_t)gui->asset->theora_keyframe_frequency,
2277 int OGGTheoraKeyframeFrequency::handle_event()
2279 gui->asset->theora_keyframe_frequency = atol(get_text());
2283 OGGTheoraKeyframeForceFrequency::OGGTheoraKeyframeForceFrequency(int x, int y, OGGConfigVideo *gui)
2284 : BC_TumbleTextBox(gui,
2285 (int64_t)gui->asset->theora_keyframe_frequency,
2295 int OGGTheoraKeyframeForceFrequency::handle_event()
2297 gui->asset->theora_keyframe_frequency = atol(get_text());
2302 OGGTheoraSharpness::OGGTheoraSharpness(int x, int y, OGGConfigVideo *gui)
2303 : BC_TumbleTextBox(gui,
2304 (int64_t)gui->asset->theora_sharpness,
2314 int OGGTheoraSharpness::handle_event()
2316 gui->asset->theora_sharpness = atol(get_text());
2321 PackagingEngineOGG::PackagingEngineOGG()
2327 PackagingEngineOGG::~PackagingEngineOGG()
2331 for(int i = 0; i < total_packages; i++)
2336 delete default_asset;
2341 int PackagingEngineOGG::create_packages_single_farm(
2343 Preferences *preferences,
2344 Asset *default_asset,
2348 this->total_start = total_start;
2349 this->total_end = total_end;
2352 this->preferences = preferences;
2354 // We make A COPY of the asset, because we set audio_data = 0 on local asset which is the same copy as default_asset...
2355 // Should be taken care of somewhere else actually
2356 this->default_asset = new Asset(*default_asset);
2358 audio_start = Units::to_int64(total_start * default_asset->sample_rate);
2359 video_start = Units::to_int64(total_start * default_asset->frame_rate);
2360 audio_position = audio_start;
2361 video_position = video_start;
2362 audio_end = Units::to_int64(total_end * default_asset->sample_rate);
2363 video_end = Units::to_int64(total_end * default_asset->frame_rate);
2364 current_package = 0;
2366 double total_len = total_end - total_start;
2367 //printf("PackageDispatcher::create_packages: %f / %d = %f\n", total_len, total_packages, package_len);
2370 if (default_asset->audio_data)
2372 if (default_asset->video_data)
2373 total_packages += preferences->renderfarm_job_count;
2375 packages = new RenderPackage*[total_packages];
2377 int local_current_package = 0;
2378 if (default_asset->audio_data)
2380 packages[local_current_package] = new RenderPackage;
2381 sprintf(packages[current_package]->path, "%s.audio", default_asset->path);
2382 local_current_package++;
2385 if (default_asset->video_data)
2387 video_package_len = (total_len) / preferences->renderfarm_job_count;
2388 int current_number; // The number being injected into the filename.
2389 int number_start; // Character in the filename path at which the number begins
2390 int total_digits; // Total number of digits including padding the user specified.
2392 Render::get_starting_number(default_asset->path,
2398 for(int i = 0; i < preferences->renderfarm_job_count; i++)
2400 RenderPackage *package = packages[local_current_package] = new RenderPackage;
2401 Render::create_filename(package->path,
2402 default_asset->path,
2407 local_current_package++;
2412 RenderPackage* PackagingEngineOGG::get_package_single_farm(double frames_per_second,
2417 //printf("PackageDispatcher::get_package %ld %ld %ld %ld\n", audio_position, video_position, audio_end, video_end);
2418 if (current_package == total_packages)
2421 RenderPackage *result = 0;
2422 if (current_package == 0 && default_asset->audio_data)
2424 result = packages[0];
2425 result->audio_start = audio_start;
2426 result->video_start = video_start;
2427 result->audio_end = audio_end;
2428 result->video_end = video_end;
2429 result->audio_do = 1;
2430 result->video_do = 0;
2431 } else if (default_asset->video_data)
2433 // Do not do any scaling according to node speed, so we know we can get evenly distributed 'forced' keyframes
2434 result = packages[current_package];
2435 result->audio_do = 0;
2436 result->video_do = 1;
2438 result->audio_start = audio_position;
2439 result->video_start = video_position;
2440 result->audio_end = audio_position +
2441 Units::round(video_package_len * default_asset->sample_rate);
2442 result->video_end = video_position +
2443 Units::round(video_package_len * default_asset->frame_rate);
2445 // Last package... take it all!
2446 if (current_package == total_packages -1 )
2448 result->audio_end = audio_end;
2449 result->video_end = video_end;
2452 audio_position = result->audio_end;
2453 video_position = result->video_end;
2462 void PackagingEngineOGG::get_package_paths(ArrayList<char*> *path_list)
2464 for(int i = 0; i < total_packages; i++)
2466 path_list->append(strdup(packages[i]->path));
2468 // We will mux to the the final file at the end!
2469 path_list->append(strdup(default_asset->path));
2470 path_list->set_free();
2473 int64_t PackagingEngineOGG::get_progress_max()
2475 return Units::to_int64(default_asset->sample_rate *
2476 (total_end - total_start)) * 2+
2477 Units::to_int64(preferences->render_preroll *
2479 default_asset->sample_rate);
2482 int PackagingEngineOGG::packages_are_done()
2486 // Mux audio and video into one file
2488 // First fix our asset... have to workaround the bug of corruption of local asset
2489 // Render::check_asset(edl, *default_asset);
2491 Asset *video_asset, *audio_asset;
2492 File *audio_file_gen, *video_file_gen;
2493 FileOGG *video_file, *audio_file;
2494 ogg_stream_state audio_in_stream, video_in_stream;
2496 int local_current_package = 0;
2497 if (default_asset->audio_data)
2499 audio_asset = new Asset(packages[local_current_package]->path);
2500 local_current_package++;
2502 audio_file_gen = new File();
2503 audio_file_gen->open_file(preferences,
2507 0, //base sample rate
2508 0); // base_frame rate
2509 audio_file = (FileOGG*) audio_file_gen->file;
2510 ogg_stream_init(&audio_in_stream, audio_file->tf->vo.serialno);
2511 audio_file->ogg_seek_to_databegin(audio_file->tf->audiosync, audio_file->tf->vo.serialno);
2514 if (default_asset->video_data)
2516 video_asset = new Asset(packages[local_current_package]->path);
2517 local_current_package++;
2519 video_file_gen = new File();
2520 video_file_gen->open_file(preferences,
2524 0, //base sample rate
2525 0); // base_frame rate
2526 video_file = (FileOGG*) video_file_gen->file;
2527 ogg_stream_init(&video_in_stream, video_file->tf->to.serialno);
2528 video_file->ogg_seek_to_databegin(video_file->tf->videosync, video_file->tf->to.serialno);
2532 File *output_file_gen = new File();
2533 output_file_gen->open_file(preferences,
2537 default_asset->sample_rate,
2538 default_asset->frame_rate);
2539 FileOGG *output_file = (FileOGG*) output_file_gen->file;
2541 ogg_page og; /* one Ogg bitstream page. Vorbis packets are inside */
2542 ogg_packet op; /* one raw packet of data for decode */
2545 int audio_ready = default_asset->audio_data;
2546 int video_ready = default_asset->video_data;
2547 int64_t video_packetno = 1;
2548 int64_t audio_packetno = 1;
2549 int64_t frame_offset = 0;
2550 int64_t current_frame = 0;
2551 while ((default_asset->audio_data && audio_ready) || (default_asset->video_data && video_ready))
2555 while (ogg_stream_packetpeek(&video_in_stream, NULL) != 1) // get as many pages as needed for one package
2557 if (!video_file->ogg_get_next_page(video_file->tf->videosync, video_file->tf->to.serialno, &video_file->tf->videopage))
2559 // We are at the end of our file, see if it is more and open more if there is
2560 if (local_current_package < total_packages)
2562 frame_offset = current_frame +1;
2563 ogg_stream_clear(&video_in_stream);
2564 video_file_gen->close_file();
2565 delete video_file_gen;
2567 video_asset = new Asset(packages[local_current_package]->path);
2568 local_current_package++;
2570 video_file_gen = new File();
2571 video_file_gen->open_file(preferences,
2575 0, //base sample rate
2576 0); // base_frame rate
2577 video_file = (FileOGG*) video_file_gen->file;
2578 ogg_stream_init(&video_in_stream, video_file->tf->to.serialno);
2580 video_file->ogg_seek_to_databegin(video_file->tf->videosync, video_file->tf->to.serialno);
2586 ogg_stream_pagein(&video_in_stream, &video_file->tf->videopage);
2588 while (ogg_stream_packetpeek(&video_in_stream, NULL) == 1) // get all packets out of the page
2590 ogg_stream_packetout(&video_in_stream, &op);
2591 if (local_current_package != total_packages) // keep it from closing the stream
2593 if (video_packetno != 1) // if this is not the first video package do not start with b_o_s
2597 op.packetno = video_packetno;
2599 int64_t granulepos = op.granulepos;
2600 if (granulepos != -1)
2603 int64_t rel_iframe = granulepos >> video_file->theora_keyframe_granule_shift;
2604 int64_t rel_pframe = granulepos - (rel_iframe << video_file->theora_keyframe_granule_shift);
2605 int64_t rel_current_frame = rel_iframe + rel_pframe;
2606 current_frame = frame_offset + rel_current_frame;
2607 int64_t abs_iframe = current_frame - rel_pframe;
2609 op.granulepos = (abs_iframe << video_file->theora_keyframe_granule_shift) + rel_pframe;
2611 // printf("iframe: %i, pframe: %i, granulepos: %i, op.packetno %lli, abs_iframe: %i\n", rel_iframe, rel_pframe, granulepos, op.packetno, abs_iframe);
2614 ogg_stream_packetin (&output_file->tf->to, &op);
2615 output_file->tf->v_pkg++;
2620 while (ogg_stream_packetpeek(&audio_in_stream, NULL) != 1) // get as many pages as needed for one package
2622 if (!audio_file->ogg_get_next_page(audio_file->tf->audiosync, audio_file->tf->vo.serialno, &audio_file->tf->audiopage))
2627 ogg_stream_pagein(&audio_in_stream, &audio_file->tf->audiopage);
2629 while (ogg_stream_packetpeek(&audio_in_stream, NULL) == 1) // get all packets out of the page
2631 ogg_stream_packetout(&audio_in_stream, &op);
2632 ogg_stream_packetin (&output_file->tf->vo, &op);
2634 output_file->tf->a_pkg++;
2638 output_file->flush_ogg(0);
2643 // flush_ogg(1) is called on file closing time...
2644 // output_file->flush_ogg(1);
2646 // Just prevent thet write_samples and write_frames are called
2647 output_file->final_write = 0;
2649 if (default_asset->audio_data)
2651 ogg_stream_clear(&audio_in_stream);
2652 audio_file_gen->close_file();
2653 delete audio_file_gen;
2656 if (default_asset->video_data)
2658 ogg_stream_clear(&video_in_stream);
2659 video_file_gen->close_file();
2660 delete video_file_gen;
2664 output_file_gen->close_file();
2665 delete output_file_gen;
2667 // Now delete the temp files
2668 for(int i = 0; i < total_packages; i++)
2669 unlink(packages[i]->path);