Re: [FFmpeg-devel] Return value of av_log_format_line

2016-04-17 Thread Andreas Weis
>> I was trying to use a custom log callback and noticed that this pretty >> much requires using av_log_format_line(), as the interpretation of the >> format string is not trivial. > > Uh what? It's just snprintf formatting. What av_log_format_line() is > adding additional information, which in

[FFmpeg-devel] Color Calculations

2016-04-17 Thread Chris
About a year ago I posted some concerns about color accuracy and received this response: > The specific code I'm referring to is at the end of colorspace.h > > #define RGB_TO_Y(r1, g1, b1, shift) > #define RGB_TO_U(r1, g1, b1, shift) > #define RGB_TO_V(r1, g1, b1, shift) >A quick search over

Re: [FFmpeg-devel] [PATCH]lavc/fic: Be less verbose for invisible or empty cursor

2016-04-17 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ag.or.at> writes: > Attached patch fixes ticket #5174, there seems to be nothing > invalid about a cursor outside of the screen or an empty cursor. Ping. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Hendrik Leppkes
On Sun, Apr 17, 2016 at 9:16 PM, Jan Ekstrom wrote: > On Sun, Apr 17, 2016 at 10:08 PM, Carl Eugen Hoyos wrote: >> >> Does attached make it better? > > So the difference between the two conversion functions is that one is > Rec.601 in limited range, and the

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Hendrik Leppkes
On Sun, Apr 17, 2016 at 8:55 PM, Reimar Döffinger wrote: > On Sun, Apr 17, 2016 at 09:41:32PM +0300, Jan Ekstrom wrote: >> On Sun, Apr 17, 2016 at 9:21 PM, Reimar Döffinger >> wrote: >> > In particular, I have an uncomfortable suspicion that >>

[FFmpeg-devel] [PATCH v9 3/3][GSOC] avformat/tee: Handling slave failure in tee muxer

2016-04-17 Thread sebechlebskyjan
From: Jan Sebechlebsky Adds per slave option 'onfail' to the tee muxer allowing an output to fail,so other slave outputs can continue. Signed-off-by: Jan Sebechlebsky --- This is embarassing, sorry for that! You're right in both, I've

Re: [FFmpeg-devel] [PATCH v8 3/3][GSOC] avformat/tee: Handling slave failure in tee muxer

2016-04-17 Thread Marton Balint
On Sun, 17 Apr 2016, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky Adds per slave option 'onfail' to the tee muxer allowing an output to fail,so other slave outputs can continue. [..] static int tee_write_trailer(AVFormatContext *avf) {

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Reimar Döffinger
On Sun, Apr 17, 2016 at 09:24:29PM +0200, Reimar Döffinger wrote: > On Sun, Apr 17, 2016 at 09:08:45PM +0200, Carl Eugen Hoyos wrote: > > -YUV_TO_RGB1(cb, cr); > > -YUV_TO_RGB2(r, g, b, y); > > +if (ctx->hdtv > 0) { > > +YUV_TO_RGB1_CCIR(cb, cr); > > +

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Reimar Döffinger
On Sun, Apr 17, 2016 at 09:08:45PM +0200, Carl Eugen Hoyos wrote: > -YUV_TO_RGB1(cb, cr); > -YUV_TO_RGB2(r, g, b, y); > +if (ctx->hdtv > 0) { > +YUV_TO_RGB1_CCIR(cb, cr); > +YUV_TO_RGB2_CCIR(r, g, b, y); > +} else { > +

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Jan Ekstrom
On Sun, Apr 17, 2016 at 10:08 PM, Carl Eugen Hoyos wrote: > > Does attached make it better? So the difference between the two conversion functions is that one is Rec.601 in limited range, and the other is Rec.709 in limited range? If so, that seems correct. The actual coded

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Carl Eugen Hoyos
On Sunday 17 April 2016 08:41:32 pm Jan Ekstrom wrote: > On Sun, Apr 17, 2016 at 9:21 PM, Reimar Döffinger > > wrote: > > In particular, I have an uncomfortable suspicion that > > PGS might be designed to match the movie's colour space, > > in which case neither variant

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Carl Eugen Hoyos
On Sunday 17 April 2016 08:41:32 pm Jan Ekstrom wrote: > Yes, the YCbCr values in palettes are matched accordingly against the > video stream. As per the specification: > "Y, Cr and Cb shall have the same color matrix as the associated HDMV > Video stream: 525-60/625-50 (Rec.601); 1080i, 720p

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Reimar Döffinger
On Sun, Apr 17, 2016 at 09:49:58PM +0300, Jan Ekstrom wrote: > On Sun, Apr 17, 2016 at 9:44 PM, wm4 wrote: > > > > Ah that's funny. This indeed ruins everything. It looks like subtitle > > decoders should simply output YUV, and until we can fix it, a private > > option

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Jan Ekstrom
On Sun, Apr 17, 2016 at 9:55 PM, Reimar Döffinger wrote: > ?!??? > These two kind of contradict each other, at least if the HDMV video > stream uses a full range color matrix (or is that not allowed?). Just poked at this and it seems indeed that the following values are

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Reimar Döffinger
On Sun, Apr 17, 2016 at 09:41:32PM +0300, Jan Ekstrom wrote: > On Sun, Apr 17, 2016 at 9:21 PM, Reimar Döffinger > wrote: > > In particular, I have an uncomfortable suspicion that > > PGS might be designed to match the movie's colour space, > > in which case neither

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Reimar Döffinger
On Sun, Apr 17, 2016 at 06:38:12PM +, Carl Eugen Hoyos wrote: > Reimar Döffinger gmx.de> writes: > > In particular, I have an uncomfortable suspicion that > > PGS might be designed to match the movie's colour space, > > in which case neither variant would give correct results > > but instead

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Jan Ekstrom
On Sun, Apr 17, 2016 at 9:44 PM, wm4 wrote: > > Ah that's funny. This indeed ruins everything. It looks like subtitle > decoders should simply output YUV, and until we can fix it, a private > option could change between the colorspaces? Well, the colorimetry is at least

Re: [FFmpeg-devel] [PATCH]lavc/webp: Warn if anim chunk is not read

2016-04-17 Thread Carl Eugen Hoyos
Michael Niedermayer niedermayer.cc> writes: > > webp.c |2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > 6a8ad3a804cb624b509c6bff37b2dc1359dc43c7 patchwebpwarn.diff > > probably ok Patch applied. Thank you, Carl Eugen ___

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Carl Eugen Hoyos
Jan Ekstrom gmail.com> writes: > On Sun, Apr 17, 2016 at 6:25 PM, Carl Eugen Hoyos wrote: > > Attached patch fixes ticket #4637 for me. > Can you please explain the difference between these two > YCbCr-to-RGB conversion functions? I fear you don't accept "it looks black instead of gray" as

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread wm4
On Sun, 17 Apr 2016 21:41:32 +0300 Jan Ekstrom wrote: > On Sun, Apr 17, 2016 at 9:21 PM, Reimar Döffinger > wrote: > > In particular, I have an uncomfortable suspicion that > > PGS might be designed to match the movie's colour space, > > in which case

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread wm4
On Sun, 17 Apr 2016 17:54:00 + (UTC) Carl Eugen Hoyos wrote: > wm4 googlemail.com> writes: > > > > > > Attached patch fixes ticket #4637 for me. > > > > > > > This looks like an entirely random change with no explanation > > > > or justification given. > > >

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Jan Ekstrom
On Sun, Apr 17, 2016 at 9:21 PM, Reimar Döffinger wrote: > In particular, I have an uncomfortable suspicion that > PGS might be designed to match the movie's colour space, > in which case neither variant would give correct results > but instead it would have to depend on

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Carl Eugen Hoyos
Reimar Döffinger gmx.de> writes: > On Sun, Apr 17, 2016 at 05:54:00PM +, Carl Eugen Hoyos wrote: > > wm4 googlemail.com> writes: > > > What proves that the sample you have renders correctly now? > > > > Nothing. > > > > You think that it is more likely that the sample was > >

Re: [FFmpeg-devel] [PATCH 1/2 v3] avfilter: add readvitc filter

2016-04-17 Thread Carl Eugen Hoyos
Tobias Rapp noa-archive.com> writes: > > $ ffprobe -of compact=p=0 -show_entries frame=pkt_pts:frame_tags > > -f lavfi movie=sample-vitc.avi,readvitc > > > > Output looks identical to yuv420p so I guess white is ok... > > (I assume you also converted the sample file to GBRP.) Sorry for the

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Jan Ekstrom
On Sun, Apr 17, 2016 at 6:25 PM, Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes ticket #4637 for me. > > Please comment, Carl Eugen Hi, Can you please explain the difference between these two YCbCr-to-RGB conversion functions? The result, if it is now black, seems to

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Reimar Döffinger
On Sun, Apr 17, 2016 at 05:54:00PM +, Carl Eugen Hoyos wrote: > wm4 googlemail.com> writes: > > What proves that the sample you have renders correctly now? > > Nothing. > > You think that it is more likely that the sample was > intentionally made to fool the vlc developers than to > help

[FFmpeg-devel] [PATCH v8 3/3][GSOC] avformat/tee: Handling slave failure in tee muxer

2016-04-17 Thread sebechlebskyjan
From: Jan Sebechlebsky Adds per slave option 'onfail' to the tee muxer allowing an output to fail,so other slave outputs can continue. Signed-off-by: Jan Sebechlebsky --- Sorry I've missed those. It is fixed in this patch. Regards, Jan

Re: [FFmpeg-devel] Return value of av_log_format_line

2016-04-17 Thread Reimar Döffinger
On Sun, Apr 17, 2016 at 01:18:42PM +0200, Andreas Weis wrote: > Since av_log_format_line calls snprintf internally, that might be as > trivial as just forwarding the return value from that call. This probably wasn't done because snprintf isn't always implemented 100% right in this regard (too

Re: [FFmpeg-devel] [PATCH 4/4] vc2enc: only warn on a non-standard base video format

2016-04-17 Thread Rostislav Pehlivanov
On 17 April 2016 at 03:40, Michael Niedermayer wrote: > > is this a spec compliance or a profile compliance issue or something > else ? > > from just the Commit message above it sounds a bit like a profile / > hw decoder limitation, in which case this patch with a

Re: [FFmpeg-devel] [PATCH v5 2/3] avformat/tee: Fix leaks in tee muxer when open_slave fails

2016-04-17 Thread Marton Balint
On Fri, 15 Apr 2016, Jan Sebechlebsky wrote: On 04/15/2016 02:28 AM, Marton Balint wrote: On Thu, 14 Apr 2016, Marton Balint wrote: On Tue, 12 Apr 2016, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky Calling close_slave in case error is to be

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Carl Eugen Hoyos
wm4 googlemail.com> writes: > > > > Attached patch fixes ticket #4637 for me. > > > > > This looks like an entirely random change with no explanation > > > or justification given. > > > > I don't understand: > > We have a sample that looks broken with current FFmpeg and fine > > with the

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread wm4
On Sun, 17 Apr 2016 17:39:34 + (UTC) Carl Eugen Hoyos wrote: > wm4 googlemail.com> writes: > > > On Sun, 17 Apr 2016 17:25:04 +0200 > > Carl Eugen Hoyos ag.or.at> wrote: > > > > > Hi! > > > > > > Attached patch fixes ticket #4637 for me. > > > This looks like an

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Carl Eugen Hoyos
wm4 googlemail.com> writes: > On Sun, 17 Apr 2016 17:25:04 +0200 > Carl Eugen Hoyos ag.or.at> wrote: > > > Hi! > > > > Attached patch fixes ticket #4637 for me. > This looks like an entirely random change with no explanation > or justification given. I don't understand: We have a sample

Re: [FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread wm4
On Sun, 17 Apr 2016 17:25:04 +0200 Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes ticket #4637 for me. > > Please comment, Carl Eugen This looks like an entirely random change with no explanation or justification given. It may as well break working combinations of

[FFmpeg-devel] [PATCH]lavc/pgssubdec: Fix palette colourspace

2016-04-17 Thread Carl Eugen Hoyos
Hi! Attached patch fixes ticket #4637 for me. Please comment, Carl Eugen diff --git a/libavcodec/pgssubdec.c b/libavcodec/pgssubdec.c index 07a2a78..36ebbcb 100644 --- a/libavcodec/pgssubdec.c +++ b/libavcodec/pgssubdec.c @@ -354,8 +354,8 @@ static int parse_palette_segment(AVCodecContext

Re: [FFmpeg-devel] Return value of av_log_format_line

2016-04-17 Thread wm4
On Sun, 17 Apr 2016 13:18:42 +0200 Andreas Weis wrote: > Hi everyone! > > I was trying to use a custom log callback and noticed that this pretty > much requires using av_log_format_line(), as the interpretation of the > format string is not trivial. Uh what? It's

Re: [FFmpeg-devel] [PATCH] vp9: ignore frame_context_index field in key-/intraonly-frames.

2016-04-17 Thread Ronald S. Bultje
Hi, On Sun, Apr 17, 2016 at 6:17 AM, wm4 wrote: > On Sat, 16 Apr 2016 13:56:18 -0400 > "Ronald S. Bultje" wrote: > > > Reproduces a bug to remain consistent with libvpx' behaviour. > > --- > > libavcodec/vp9.c | 2 ++ > > 1 file changed, 2

Re: [FFmpeg-devel] [PATCH] vf_scale: support bt2020 in in/out_color_matrix properties.

2016-04-17 Thread Ronald S. Bultje
Hi, On Fri, Apr 15, 2016 at 8:02 PM, Michael Niedermayer wrote: > On Fri, Apr 15, 2016 at 02:26:47PM -0400, Ronald S. Bultje wrote: > > --- > > libavfilter/vf_scale.c | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > LGTM (if noone else objects)

Re: [FFmpeg-devel] [PATCH 2/3] configure: Do not create/install versioned DLLs on OS/2.

2016-04-17 Thread Dmitriy Kuminov
On 2016-04-17 05:21:31 +, KO Myung-Hun said: Even if it's a bug of ramfs.ifs, its bug should be considered when using ln -s. Yes, and in this particular case configure handles it safely. It results into a false fallback though because the symlink dir check is performed in TMPDIR which

[FFmpeg-devel] Return value of av_log_format_line

2016-04-17 Thread Andreas Weis
Hi everyone! I was trying to use a custom log callback and noticed that this pretty much requires using av_log_format_line(), as the interpretation of the format string is not trivial. Unfortunately this approach offers no way of determining the size of the output buffer for the log message.

Re: [FFmpeg-devel] [PATCH] vp9: ignore frame_context_index field in key-/intraonly-frames.

2016-04-17 Thread wm4
On Sat, 16 Apr 2016 13:56:18 -0400 "Ronald S. Bultje" wrote: > Reproduces a bug to remain consistent with libvpx' behaviour. > --- > libavcodec/vp9.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c > index 5c6f176..70d9c4b