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 > Video Encoding > New and alternative video codecs
Register FAQ Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
Old 27th March 2009, 19:57   #7001  |  Link
clsid
*****
 
Join Date: Feb 2005
Posts: 5,647
@mark0077
Just drag&drop a file into it. The graph gets build automatically.

@ikarad
http://gitorious.org/users/astrange
__________________
MPC-HC 2.2.1
clsid is offline   Reply With Quote
Old 27th March 2009, 20:20   #7002  |  Link
albain
Media Control author
 
Join Date: Dec 2006
Location: Paris
Posts: 1,014
There is a problem since version 2787

Revision 2786 is fine
Revision 2790 is not. It corresponds to an update of libmplayer

Problem : ffdshow crashes in Media Center
I have checked, this problem is different from the one I saw earlier.

The crash is located here :

Twscale.cpp

void Tswscale::done(void)
{
if (swsc) libmplayer->sws_freeContext(swsc);swsc=NULL;
}

and the message of VS is "This may be due to a corruption of the heap".

I have no idea of how to analyze it

Thank you for any help
albain is offline   Reply With Quote
Old 27th March 2009, 20:32   #7003  |  Link
clsid
*****
 
Join Date: Feb 2005
Posts: 5,647
In which revision things go wrong? 2788, 2789, or 2790?
__________________
MPC-HC 2.2.1
clsid is offline   Reply With Quote
Old 27th March 2009, 22:45   #7004  |  Link
albain
Media Control author
 
Join Date: Dec 2006
Location: Paris
Posts: 1,014
I am not sure, I will test each of those and will get back to you
albain is offline   Reply With Quote
Old 28th March 2009, 07:56   #7005  |  Link
haruhiko_yamagata
Registered User
 
Join Date: Feb 2006
Location: Japan
Posts: 1,560
Quote:
Originally Posted by iron2000 View Post
I don't mean using the DScaler deinterlacing filters in ffdshow.
I mean using ffdshow as a filter in DScaler, to postprocess the picture in DScaler.

Was able to do it in some version of ffdshow way back.
Works for me. Please update to the latest.
I'm writing about preset settings. Does it help? You need a preset settings named ffdscaler.
__________________
[ Download ffdshow | Wiki ]
haruhiko_yamagata is offline   Reply With Quote
Old 28th March 2009, 10:38   #7006  |  Link
albain
Media Control author
 
Join Date: Dec 2006
Location: Paris
Posts: 1,014
Quote:
Originally Posted by clsid View Post
In which revision things go wrong? 2788, 2789, or 2790?
Unfortunately, I have compilation errors on builds 2788 and 2789, so I have to stick to 2790
albain is offline   Reply With Quote
Old 28th March 2009, 10:56   #7007  |  Link
Amour
Registered User
 
Amour's Avatar
 
Join Date: May 2003
Location: France
Posts: 192
Quote:
Originally Posted by h_yamagata
By the way, in a dialog 'About' page, if I click 'Version details", I see
"ff_theora.dll not found".
It's much appreciated if you implement a missing function 'getVersion'.

And if you have more time, please update ff_theora. The original project
is great, however, our ff_theora is quite outdated.
Please forgive me, but as mentioned earlier this week it's my first time using a compiler, so I will probably not “implement” anything related to theora as I do not know where/how to create this missing “getVersion”.

However, I will soon post a big translation patch.
__________________
Mystérieuse Amour
Amour is offline   Reply With Quote
Old 28th March 2009, 13:27   #7008  |  Link
clsid
*****
 
Join Date: Feb 2005
Posts: 5,647
Quote:
Originally Posted by albain View Post
Unfortunately, I have compilation errors on builds 2788 and 2789, so I have to stick to 2790
Exactly when does ffdshow crash in MC? During decoding or only when using as a post-processor? Are specific settings required? Then I'll see if I can reproduce it on Vista x64 MC. Have you been able to reproduce the crash outside of MC?

In 2788 I have cleaned up the config.h file, removing malloc and free defines. Same functions are defined in mem.c/h and those are now used instead. Only difference is their names: av_free, av_malloc. Maybe a wrong name is still being used somewhere in the code. See if adding the two defines back to config.h solves the crash.

edit: I have spotted a few uses of malloc in yuv2rgb.c. I will replace them with av_malloc. That might fix it.
__________________
MPC-HC 2.2.1

Last edited by clsid; 28th March 2009 at 13:31.
clsid is offline   Reply With Quote
Old 28th March 2009, 14:07   #7009  |  Link
haruhiko_yamagata
Registered User
 
Join Date: Feb 2006
Location: Japan
Posts: 1,560
Quote:
Originally Posted by Amour View Post
Please forgive me, but as mentioned earlier this week it's my first time using a compiler, so I will probably not “implement” anything related to theora as I do not know where/how to create this missing “getVersion”.

However, I will soon post a big translation patch.
OK, never mind.
However, it's a small function. There are many similar "getVersion" in other dlls. If you are interested in C/C++, it's a good place to start.

And good news, translations are welcome.
__________________
[ Download ffdshow | Wiki ]
haruhiko_yamagata is offline   Reply With Quote
Old 28th March 2009, 14:32   #7010  |  Link
albain
Media Control author
 
Join Date: Dec 2006
Location: Paris
Posts: 1,014
Quote:
Originally Posted by clsid View Post
Exactly when does ffdshow crash in MC? During decoding or only when using as a post-processor? Are specific settings required? Then I'll see if I can reproduce it on Vista x64 MC. Have you been able to reproduce the crash outside of MC?

In 2788 I have cleaned up the config.h file, removing malloc and free defines. Same functions are defined in mem.c/h and those are now used instead. Only difference is their names: av_free, av_malloc. Maybe a wrong name is still being used somewhere in the code. See if adding the two defines back to config.h solves the crash.

edit: I have spotted a few uses of malloc in yuv2rgb.c. I will replace them with av_malloc. That might fix it.
Crashes occur when browsing into the video folders : the decoders are loaded to display the thumbnails for each video.

Otherwise if I play the video with wmp it works fine.

I will test your fixes when available
albain is offline   Reply With Quote
Old 28th March 2009, 14:36   #7011  |  Link
clsid
*****
 
Join Date: Feb 2005
Posts: 5,647
I have committed the changes. Hopefully this will fix it.
__________________
MPC-HC 2.2.1
clsid is offline   Reply With Quote
Old 28th March 2009, 16:17   #7012  |  Link
albain
Media Control author
 
Join Date: Dec 2006
Location: Paris
Posts: 1,014
Quote:
Originally Posted by clsid View Post
I have committed the changes. Hopefully this will fix it.
That did it !

Thanks
albain is offline   Reply With Quote
Old 28th March 2009, 17:03   #7013  |  Link
Amour
Registered User
 
Amour's Avatar
 
Join Date: May 2003
Location: France
Posts: 192
Here is my translation update:
https://sourceforge.net/tracker/?fun...41&atid=867362

It also fixes some English phrases, so I had to edit other translations as well. This explains the number of modified files in this patch.
__________________
Mystérieuse Amour
Amour is offline   Reply With Quote
Old 28th March 2009, 20:27   #7014  |  Link
ikarad
Registered User
 
Join Date: Apr 2008
Posts: 546
I found a problem with ffdshow and MPC HOMEcinema

If I want to see DVD movie with separated subtitles (which doesn't on the dvd), subtitle aren't display if I use open dvd fuinction of MPC Homecinema and subtitle function of FFDSHOW.
I use mpc homecinema 1018 and ffdshow 2812
ikarad is offline   Reply With Quote
Old 28th March 2009, 21:37   #7015  |  Link
clsid
*****
 
Join Date: Feb 2005
Posts: 5,647
How did you name the subtitle files? If ffdshow doesn't find them, it can't display them. You can also load a subtitle file manually in ffdshow settings if needed.
__________________
MPC-HC 2.2.1
clsid is offline   Reply With Quote
Old 28th March 2009, 22:42   #7016  |  Link
ikarad
Registered User
 
Join Date: Apr 2008
Posts: 546
Quote:
Originally Posted by clsid View Post
How did you name the subtitle files? If ffdshow doesn't find them, it can't display them. You can also load a subtitle file manually in ffdshow settings if needed.
No there isn't problem with subtitle file (.srt) because ffdshow can display them if I don't use opendvd function of MPc homecinema.
Subtitle can't be displayed by ffdshow only if I use opendvd function in mpc-homecinema (function to see dvd movie).
Even manually it doens't work if I use open dvd function of mpc homecinema.
To see subtitle I must not use opendvd function and load manually .vob file.

subtitle file
http://www.zshare.net/info.html?5783...5f87aba3c1024a

dvd sample
http://www.zshare.net/info.html?5783...800c653aafc20f

subtitle file doesn't belong to this dvd but It allow to show the problem.
If I use opendvd function to open dvd and load subtitle function of Mpc homecinema subtitle are displayed. But If i use subtile function of ffdshow instead of load subtitle function of mpc homecinema subtitles are not displayed.

Last edited by ikarad; 28th March 2009 at 23:13.
ikarad is offline   Reply With Quote
Old 28th March 2009, 23:57   #7017  |  Link
clsid
*****
 
Join Date: Feb 2005
Posts: 5,647
I don't think this has anything to do with how MPC operates. It is more likely related to the "DVD Navigator" source filter. For example the DirectVobSub subtitle filter only loads when a compatible source filter is in the graph. I suspect something similar applies to ffdshow. Autoloading the correct subtitle file is certainly not going to work when playing a DVD, because when ffdshow asks the source filter for the filename it will just get an empty string (unlike when you play a separate .vob file). So you would have to manually specify the sub file in ffdshow configuration. Although that does not seem to work with DVDs either.

I suggest you use the internal subtitle renderer of MPC instead for manually loading the external subs with DVDs. Or wait for Haruhiko to comment on this.

Do you also get an "Integer division by zero" error in MPC when seeking in your sample DVD?
__________________
MPC-HC 2.2.1

Last edited by clsid; 29th March 2009 at 00:00.
clsid is offline   Reply With Quote
Old 29th March 2009, 01:58   #7018  |  Link
haruhiko_yamagata
Registered User
 
Join Date: Feb 2006
Location: Japan
Posts: 1,560
Quote:
Originally Posted by ikarad View Post
I found a problem with ffdshow and MPC HOMEcinema

If I want to see DVD movie with separated subtitles (which doesn't on the dvd), subtitle aren't display if I use open dvd fuinction of MPC Homecinema and subtitle function of FFDSHOW.
I use mpc homecinema 1018 and ffdshow 2812
I have re-enabled external subtitles file for DVD. I disabled for a reason, DVDs may have DVD subtitles and closed caption. If three kind of subtitles are displayed at the same time, it's just a mess. And this really happens (strictly speaking, external subtitles are not displayed at the same time as DVD subtitles, but if DVD subtitles disappear, external subtitles appear immediately...), ffdshow just does not crash.
__________________
[ Download ffdshow | Wiki ]
haruhiko_yamagata is offline   Reply With Quote
Old 29th March 2009, 02:56   #7019  |  Link
haruhiko_yamagata
Registered User
 
Join Date: Feb 2006
Location: Japan
Posts: 1,560
Quote:
Originally Posted by Amour View Post
Here is my translation update:
https://sourceforge.net/tracker/?fun...41&atid=867362

It also fixes some English phrases, so I had to edit other translations as well. This explains the number of modified files in this patch.
I couldn't apply the patch for encoding reason. Please pack modified files in a zip, rather than a patch.
__________________
[ Download ffdshow | Wiki ]
haruhiko_yamagata is offline   Reply With Quote
Old 29th March 2009, 05:28   #7020  |  Link
morsa
the dumbest
 
Join Date: Oct 2002
Location: Malvinas
Posts: 494
Does it open DcvproHD MXFs ?

Is it planned for the future?
morsa is offline   Reply With Quote
Reply

Tags
ffdshow, ffdshow tryouts, ffdshow-mt, ffplay, icl


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 03:56.


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