Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Development

Reply
 
Thread Tools Search this Thread Display Modes
Old 17th March 2024, 19:38   #2801  |  Link
qyot27
...?
 
qyot27's Avatar
 
Join Date: Nov 2005
Location: Florida
Posts: 1,419
Presumably, the check exists the way it does because you would be allocating PLANAR_Y and PLANAR_G at the beginning of the sequence, since they're both the first plane in the the sequence order. Planar RGB is ordered GBR, as opposed to endian-specific packed RGB (which is either BGR in little or RGB in big).

For comparison, see how FFmpeg initiates the format in the AviSynth demuxer,
http://git.videolan.org/?p=ffmpeg.gi...40abeba6f#l127

Code:
 127 static const int avs_planes_rgb[3]    = { AVS_PLANAR_G, AVS_PLANAR_B,
 128                                           AVS_PLANAR_R };
 129 static const int avs_planes_yuva[4]   = { AVS_PLANAR_Y, AVS_PLANAR_U,
 130                                           AVS_PLANAR_V, AVS_PLANAR_A };
 131 static const int avs_planes_rgba[4]   = { AVS_PLANAR_G, AVS_PLANAR_B,
 132                                           AVS_PLANAR_R, AVS_PLANAR_A };

Last edited by qyot27; 17th March 2024 at 19:42.
qyot27 is offline   Reply With Quote
Old 25th March 2024, 01:55   #2802  |  Link
ENunn
Registered User
 
Join Date: Dec 2019
Posts: 68
Hey there. I don't know if this is the place for bug reports or not but I found a bug. Whenever I use the normalize function, the audio gets super loud. Even if I have it set to 0.0001 it's really loud. I downgraded to 3.7.3 final and it's fixed. Don't know if I'm the only one with this issue but I wanted to give you a heads up.
ENunn is offline   Reply With Quote
Old 25th March 2024, 12:00   #2803  |  Link
tebasuna51
Moderator
 
tebasuna51's Avatar
 
Join Date: Feb 2005
Location: Spain
Posts: 6,890
Quote:
Originally Posted by ENunn View Post
Hey there. I don't know if this is the place for bug reports or not but I found a bug. Whenever I use the normalize function, the audio gets super loud. Even if I have it set to 0.0001 it's really loud. I downgraded to 3.7.3 final and it's fixed. Don't know if I'm the only one with this issue but I wanted to give you a heads up.
I can't reproduce the problem with last test 14 (r4066), what is your installed version?
If it is the same version please upload the .avs used and the source (or a sample)
__________________
BeHappy, AviSynth audio transcoder.
tebasuna51 is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 18:13.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.