Skip to content

Commit

Permalink
2007-06-06
Browse files Browse the repository at this point in the history
  • Loading branch information
makiuchi-d committed Sep 23, 2015
1 parent 217eac7 commit 134e722
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 27 deletions.
8 changes: 4 additions & 4 deletions Avisynth/delogo.h
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class deLOGO : public GenericVideoFilter {
adjy = (4+ (y%4)) %4;
}

if(adjx==0 && adjy==0) return;
if(depth==LOGO_DEFAULT_DEPTH && adjx==0 && adjy==0) return;

int pitch = lgh.w;
// 1/4単位調節のため、1増やす
Expand Down Expand Up @@ -394,9 +394,9 @@ class deLOGO : public GenericVideoFilter {
::LOGO_PIXEL* lgp = logodata.get();
for(int i=lgh.h;i;--i){
for(int j=lgh.w;j;--j){
lgp->y += y;
lgp->cb += u;
lgp->cr += v;
lgp->y += y * 16;
lgp->cb += u * 16;
lgp->cr += v * 16;
++lgp;
}
}
Expand Down
10 changes: 5 additions & 5 deletions Avisynth/delogo.rc
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,0,3,0
PRODUCTVERSION 0,0,3,0
FILEVERSION 0,0,4,0
PRODUCTVERSION 0,0,4,0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0x0L
FILEOS VOS__WINDOWS32
Expand All @@ -19,14 +19,14 @@ BEGIN
BEGIN
BLOCK "041104c0"
BEGIN
VALUE "Comments", "YUY2��p\0"
VALUE "Comments", "YUY2,YV12 �Ή�\0"
VALUE "FileDescription", "���ߐ����S �t�B���^ Plugin for AviSynth 2.5\0"
VALUE "FileVersion", "0.0.3.0\0"
VALUE "FileVersion", "0.0.4.0\0"
VALUE "InternalName", "deLogo\0"
VALUE "LegalCopyright", "(C) MakKi\0"
VALUE "OriginalFilename", "delogo.dll\0"
VALUE "ProductName", "���ߐ����S �t�B���^\0"
VALUE "ProductVersion", "0.03\0"
VALUE "ProductVersion", "0.04\0"
END
END
BLOCK "VarFileInfo"
Expand Down
16 changes: 0 additions & 16 deletions Avisynth/resource.h

This file was deleted.

6 changes: 4 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-----------------------------------------------------------------------
���ߐ����S �t�B���^ for AviSynth 2.5 ver 0.03 by MakKi
���ߐ����S �t�B���^ for AviSynth 2.5 ver 0.04 by MakKi
-----------------------------------------------------------------------

�y�@�\�z
Expand Down Expand Up @@ -67,6 +67,8 @@

�y�X�V�����z

2007/06/06 ver 0.04 �Edepth�������Ȃ��ꍇ������o�O���C��
�Eyc_y,yc_u,yc_v�̌������ア�o�O���C��
2007/03/21 ver 0.03 �E�S����������
�E�F���̌v�Z�ł̕s�v�ȏ������폜
�E����������AviUtl�łƂقړ����ɂ���
Expand All @@ -80,4 +82,4 @@
2003/10/01 ver 0.01 �E���J


mailto:makki_d210@yahoo.co.jp
mailto:makki_d210@yahoo.co.jp

0 comments on commit 134e722

Please sign in to comment.