Home
last modified time | relevance | path

Searched refs:newframes (Results 1 – 9 of 9) sorted by relevance

/dports/audio/p5-MPEG-ID3v2Tag/MPEG-ID3v2Tag-0.39/lib/MPEG/
H A DID3v2Tag.pm36 my ( $self, $newframes ) = @_;
38 if ($newframes) {
39 croak "must pass an arrayref to frames" if ref($newframes) !~ 'ARRAY';
40 $self->{FRAMES} = $newframes;
60 my @newframes;
63 @newframes = grep {
72 @newframes = grep { $_->frameid() ne $frameid }
76 $self->frames( \@newframes );
/dports/multimedia/projectx/Project-X_0.91.0/src/net/sourceforge/dvb/projectx/parser/
H A DStreamProcessAudio.java292 byte[][] newframes = new byte[2][1]; in processAudio()
898 writeFrame(audio, frame, newframes, ContainsVideoPTS, es_streamtype); in processAudio()
916 writeFrame(audio, frame, newframes, ContainsVideoPTS, es_streamtype); in processAudio()
956 writeFrame(audio, frame, newframes, ContainsVideoPTS, es_streamtype); in processAudio()
1112 … writeFrame(audio, silentFrameBuffer.toByteArray(), newframes, ContainsVideoPTS, es_streamtype); in processAudio()
1513 writeFrame(audio, frame, newframes, ContainsVideoPTS, es_streamtype); in processAudio()
1531 writeFrame(audio, frame, newframes, ContainsVideoPTS, es_streamtype); in processAudio()
2077 writeFrame(audio, frame, newframes, ContainsVideoPTS, es_streamtype); in writeSuccessiveFrame()
2114 newframes = audio.convertFrame(frame, MpaConversionMode); in writeFrame()
2116 writeChannel1(newframes[0]); in writeFrame()
[all …]
H A DGop.java359 int newframes = 0; in goptest() local
803 newframes -= tref; in goptest()
864 newframes++; in goptest()
1375 … job_processing.getProjectFileD2V().addGOP(job_processing.getProjectFileExportLength(), newframes); in goptest() local
/dports/games/chocolate-doom/chocolate-doom-3.0.1/src/
H A Dw_merge.c205 sprite_frame_t *newframes; in FindSpriteFrame() local
207 newframes = Z_Malloc(sprite_frames_alloced * 2 * sizeof(*sprite_frames), in FindSpriteFrame()
209 memcpy(newframes, sprite_frames, in FindSpriteFrame()
213 sprite_frames = newframes; in FindSpriteFrame()
/dports/games/crispy-doom/crispy-doom-crispy-doom-5.10.3/src/
H A Dw_merge.c206 sprite_frame_t *newframes; in FindSpriteFrame() local
208 newframes = Z_Malloc(sprite_frames_alloced * 2 * sizeof(*sprite_frames), in FindSpriteFrame()
210 memcpy(newframes, sprite_frames, in FindSpriteFrame()
214 sprite_frames = newframes; in FindSpriteFrame()
/dports/games/widelands/widelands-build21/utils/
H A Dmake_spritemap.py353 newframes = []
365 newframes.append(newframe)
367 return (float(cost) / len(frames), newframes)
392 avgcost, newframes = build_frame_group_regions([frames[leader]])
423 newframes = newframes_try
430 for framenr, newframe in zip([leader] + followers, newframes):
/dports/multimedia/projectx/Project-X_0.91.0/src/net/sourceforge/dvb/projectx/audio/
H A DAudioFormatMPA.java327 byte[][] newframes = MPAConverter.modifyframe(frame, mode); in convertFrame()
329 parseRiffData(newframes[0], 1); in convertFrame()
332 parseRiffData(newframes[1], 2); in convertFrame()
334 return newframes; in convertFrame()
/dports/audio/mp3-archive-tools/mp3-archive-tools-0.9/bin/
H A Dmp3id34 @extract $prompt $sync %newframes %newpics);
105 %newframes=();
181 if(keys(%newframes) || keys(%newpics))
380 if($dest eq "f") { $newframes{$data}=$action; }
1164 while(my ($framestr,$mode)=each(%newframes))
/dports/multimedia/lives/lives-3.2.0/src/
H A Devents.c2503 int64_t *frames, *newframes; in event_list_add_track() local
2525 newframes = (int64_t *)lives_malloc((numframes + 1) * 8); in event_list_add_track()
2528 newframes[layer] = 0; in event_list_add_track()
2532 newframes[i] = frames[i]; in event_list_add_track()
2535 newframes[i + 1] = frames[i]; in event_list_add_track()
2541 weed_set_int64_array(event, WEED_LEAF_FRAMES, numframes, newframes); in event_list_add_track()
2544 lives_free(newframes); in event_list_add_track()