Scale rdft vissualization up by 2 so theres no unused space on the top
but rather the unimportant high frequencies are cut off if the window is not a multiple of 2 high. Originally committed as revision 21641 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
674fe16371
commit
092421cf0e
4
ffplay.c
4
ffplay.c
@ -868,7 +868,7 @@ static void video_audio_display(VideoState *s)
|
|||||||
}else{
|
}else{
|
||||||
int rdft_bits, nb_freq;
|
int rdft_bits, nb_freq;
|
||||||
nb_display_channels= FFMIN(nb_display_channels, 2);
|
nb_display_channels= FFMIN(nb_display_channels, 2);
|
||||||
for(rdft_bits=1; (1<<rdft_bits)<=s->height; rdft_bits++)
|
for(rdft_bits=1; (1<<rdft_bits)<2*s->height; rdft_bits++)
|
||||||
;
|
;
|
||||||
if(rdft_bits != s->rdft_bits){
|
if(rdft_bits != s->rdft_bits){
|
||||||
ff_rdft_end(&s->rdft);
|
ff_rdft_end(&s->rdft);
|
||||||
@ -890,7 +890,7 @@ static void video_audio_display(VideoState *s)
|
|||||||
ff_rdft_calc(&s->rdft, data[ch]);
|
ff_rdft_calc(&s->rdft, data[ch]);
|
||||||
}
|
}
|
||||||
//least efficient way to do this, we should of course directly access it but its more than fast enough
|
//least efficient way to do this, we should of course directly access it but its more than fast enough
|
||||||
for(y=0; y<nb_freq; y++){
|
for(y=0; y<s->height; y++){
|
||||||
double w= 1/sqrt(nb_freq);
|
double w= 1/sqrt(nb_freq);
|
||||||
int a= sqrt(w*sqrt(data[0][2*y+0]*data[0][2*y+0] + data[0][2*y+1]*data[0][2*y+1]));
|
int a= sqrt(w*sqrt(data[0][2*y+0]*data[0][2*y+0] + data[0][2*y+1]*data[0][2*y+1]));
|
||||||
int b= sqrt(w*sqrt(data[1][2*y+0]*data[1][2*y+0] + data[1][2*y+1]*data[1][2*y+1]));
|
int b= sqrt(w*sqrt(data[1][2*y+0]*data[1][2*y+0] + data[1][2*y+1]*data[1][2*y+1]));
|
||||||
|
Loading…
Reference in New Issue
Block a user