Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-12 Thread Eoff, Ullysses A
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of > Michael Niedermayer > Sent: Friday, July 12, 2019 11:21 AM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump fi

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-12 Thread Michael Niedermayer
On Wed, Jul 10, 2019 at 07:54:32PM +, Eoff, Ullysses A wrote: > > -Original Message- > > From: Eoff, Ullysses A > > Sent: Tuesday, July 09, 2019 6:45 PM > > To: ffmpeg-devel@ffmpeg.org > > Cc: Eoff, Ullysses A > > Subject: [PATCH] avfilter: add rawdump filter > > > > This filter

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Paul B Mahol
On 7/10/19, Eoff, Ullysses A wrote: >> -Original Message- >> From: Eoff, Ullysses A >> Sent: Tuesday, July 09, 2019 6:45 PM >> To: ffmpeg-devel@ffmpeg.org >> Cc: Eoff, Ullysses A >> Subject: [PATCH] avfilter: add rawdump filter >> >> This filter enables raw frames to be dumped to a >>

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Eoff, Ullysses A
> -Original Message- > From: Eoff, Ullysses A > Sent: Tuesday, July 09, 2019 6:45 PM > To: ffmpeg-devel@ffmpeg.org > Cc: Eoff, Ullysses A > Subject: [PATCH] avfilter: add rawdump filter > > This filter enables raw frames to be dumped to a > file before they are sent through the

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Gyan
On 10-07-2019 10:15 PM, Eoff, Ullysses A wrote: -Original Message- From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of Gyan Sent: Wednesday, July 10, 2019 7:33 AM To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter On 10

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Eoff, Ullysses A
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of Gyan > Sent: Wednesday, July 10, 2019 7:33 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter > > > > On 10-07-20

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Eoff, Ullysses A
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of > Nicolas George > Sent: Wednesday, July 10, 2019 7:53 AM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdum

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Eoff, Ullysses A
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of > Nicolas George > Sent: Wednesday, July 10, 2019 8:05 AM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdum

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Nicolas George
Eoff, Ullysses A (12019-07-10): > Agree. There are many ways to specify format. But there are some formats > which one might want to dump that some hw drivers can't output directly > without conversion. In that case, your goal to avoid conversion is moot. Regards, -- Nicolas George

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Eoff, Ullysses A
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of Lynne > Sent: Wednesday, July 10, 2019 7:52 AM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter > > &g

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Eoff, Ullysses A
> -Original Message- > From: Nicolas George [mailto:geo...@nsup.org] > Sent: Wednesday, July 10, 2019 7:37 AM > To: FFmpeg development discussions and patches > Cc: Eoff, Ullysses A > Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter > > U.

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Nicolas George
Eoff, Ullysses A (12019-07-10): > For the record, this "static" is a problem if multiple rawdump filters are > specified in the graph. The initial reason for this was to open the file for > writing on the first init (to overwrite any pre-existing file), then open for > appending on successive

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Lynne
; >> >> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf >> >> >> Of Paul B Mahol >> >> >> Sent: Wednesday, July 10, 2019 15:55 >> >> >> To: FFmpeg development discussions and patches > >> >> de...@ff

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Eoff, Ullysses A
> From: Eoff, Ullysses A > +static av_cold int rawdump_init(AVFilterContext *avctx) > +{ > +RawDumpContext *ctx = avctx->priv; > +static char *mode = "w"; For the record, this "static" is a problem if multiple rawdump filters are specified in the graph. The initial reason for this was to

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Nicolas George
U. Artie Eoff (12019-07-09): > +FILE *rawdump_file; Independently from the question of whether this filter is useful or not, I think the dump should have used AVIO. Regards, -- Nicolas George signature.asc Description: PGP signature ___

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Gyan
On 10-07-2019 07:51 PM, Eoff, Ullysses A wrote: -Original Message- From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of Hendrik Leppkes Sent: Wednesday, July 10, 2019 4:13 AM To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Paul B Mahol
> >> >> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On >> >> >> Behalf >> >> >> Of Paul B Mahol >> >> >> Sent: Wednesday, July 10, 2019 15:55 >> >> >> To: FFmpeg development discussions and patches &

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Eoff, Ullysses A
> -Original Message- > From: Paul B Mahol [mailto:one...@gmail.com] > Sent: Wednesday, July 10, 2019 7:20 AM > To: Eoff, Ullysses A > Cc: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter > > On 7/10/19,

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Eoff, Ullysses A
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of > Hendrik Leppkes > Sent: Wednesday, July 10, 2019 4:13 AM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filte

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Paul B Mahol
2019 15:55 >> >> To: FFmpeg development discussions and patches > >> de...@ffmpeg.org> >> >> Cc: Eoff, Ullysses A >> >> Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter >> >> >> >> On 7/10/19, U. Artie Eoff wr

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Eoff, Ullysses A
> -Original Message- > From: Paul B Mahol [mailto:one...@gmail.com] > Sent: Wednesday, July 10, 2019 3:25 AM > To: FFmpeg development discussions and patches > Cc: Eoff, Ullysses A > Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter > > On 7/

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Hendrik Leppkes
tches > de...@ffmpeg.org> > > Cc: Eoff, Ullysses A > > Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter > > > > On 7/10/19, U. Artie Eoff wrote: > > > This filter enables raw frames to be dumped to a > > > file before they are sen

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Paul B Mahol
>> Cc: Eoff, Ullysses A >> Subject: Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter >> >> On 7/10/19, U. Artie Eoff wrote: >> > This filter enables raw frames to be dumped to a >> > file before they are sent through the auto-inserted >>

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Fu, Linjie
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Paul B Mahol > Sent: Wednesday, July 10, 2019 15:55 > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Cc: Eoff, Ullysses A > Subject: Re: [FFmpeg

Re: [FFmpeg-devel] [PATCH] avfilter: add rawdump filter

2019-07-10 Thread Paul B Mahol
On 7/10/19, U. Artie Eoff wrote: > This filter enables raw frames to be dumped to a > file before they are sent through the auto-inserted > scaler filter and useful when you want unscaled > raw frames in an output file. > Why? -f rawvideo doesn't work for you?