search for: frame_count

Displaying 7 results from an estimated 7 matches for "frame_count".

2014 Jul 10
3
[LLVMdev] Proposal: ASan debugging API
...me, void **region_address, size_t *region_size); // Useful for calling from the debugger to get the allocation stack trace // and thread ID for a heap address. Returns 1 on success, 0 on error. int __asan_get_alloc_stack(void *addr, void **trace, size_t *frame_count, void **top_frame_bp, int *thread_id); // Useful for calling from the debugger to get the free stack trace // and thread ID for a heap address. Returns 1 on success, 0 on error. int __asan_get_free_stack(void *addr, void **trace, size_t *frame_count,...
2005 Oct 05
1
Simple encodig sample...
...video_x = 0; int video_y = 0; int frame_x = 352; int frame_y = 288; int frame_x_offset = 0; int frame_y_offset = 0; int video_hzn = 25; int video_hzd = 1; int video_an = 1; int video_ad = 1; int video_r = 320000; int video_q = 16; int frame_counter = 250; signed char *yuvframe; int fetch_video_page( ogg_page *videopage, ogg_stream_state *to, theora_state *td ) { yuv_buffer yuv; ogg_packet op; yuv.y_width = video_x; yuv.y_height = video_y; yuv.y_stride = video_x; yuv.uv_width = video_x / 2; yuv.uv_height...
2005 Nov 11
0
[PATCH] icecast video preview 2
...struct _theora_codec_tag { theora_info ti; @@ -40,9 +41,14 @@ int granule_shift; ogg_int64_t last_iframe; ogg_int64_t prev_granulepos; +#ifdef WITH_PNG + theora_state td; + video_preview_t *video_preview; + yuv_buffer yuv; + int frame_count; +#endif } theora_codec_t; - static void theora_codec_free (ogg_state_t *ogg_info, ogg_codec_t *codec) { theora_codec_t *theora = codec->specific; @@ -50,8 +56,17 @@ DEBUG0 ("freeing theora codec"); stats_event (ogg_info->mount, "video_bitrate", NULL);...
2005 Nov 11
2
[PATCH] icecast video preview 2
Updated version of video preview covering frame writing every 3 keyframe and a xsl typo. Best regards :) kysucix -- Make things as simple as possible, but no simpler. - Albert Einstein
2009 Oct 27
1
[PATCH 2/4] megasas: LSI MegaRAID SAS HBA emulation
...+ megasas_unmap_sense(cmd, 0); + megasas_frame_set_scsi_status(cmd->pa, SAM_STAT_TASK_ABORTED); + cmd->sge_size = 0; + return MFI_STAT_SCSI_IO_FAILED; + } + return MFI_STAT_INVALID_STATUS; +} + +static void megasas_handle_frame(MPTState *s, target_phys_addr_t frame_addr, + uint32_t frame_count) +{ + uint8_t frame_cmd; + uint8_t frame_status = MFI_STAT_INVALID_CMD; + struct megasas_cmd_t *cmd; + + frame_cmd = ldub_phys(frame_addr); + frame_status = ldub_phys(frame_addr + 2); + +#ifdef DEBUG_MEGASAS_MFI + DPRINTF("MFI cmd %x count %d status %x\n", + frame_cm...
2009 Oct 27
1
[PATCH 2/4] megasas: LSI MegaRAID SAS HBA emulation
...+ megasas_unmap_sense(cmd, 0); + megasas_frame_set_scsi_status(cmd->pa, SAM_STAT_TASK_ABORTED); + cmd->sge_size = 0; + return MFI_STAT_SCSI_IO_FAILED; + } + return MFI_STAT_INVALID_STATUS; +} + +static void megasas_handle_frame(MPTState *s, target_phys_addr_t frame_addr, + uint32_t frame_count) +{ + uint8_t frame_cmd; + uint8_t frame_status = MFI_STAT_INVALID_CMD; + struct megasas_cmd_t *cmd; + + frame_cmd = ldub_phys(frame_addr); + frame_status = ldub_phys(frame_addr + 2); + +#ifdef DEBUG_MEGASAS_MFI + DPRINTF("MFI cmd %x count %d status %x\n", + frame_cm...
2010 Aug 07
3
C++ runtime error
...@file != nil end #----------------------------------------------------------------------------- # * Write to console; not done every frame #----------------------------------------------------------------------------- def self.log_by_frame(string, sec = 5) self.log(string) if Graphics.frame_count % (Graphics.frame_rate * sec) == 0 end #----------------------------------------------------------------------------- # * Find the game window and return it #----------------------------------------------------------------------------- def self.hwnd if $HWND == nil find = Win32...