Re: [FFmpeg-devel] [PATCH 2/2] Adding closed caption decoder

2014-12-04 Thread Anshul Maheshwari
On Thu, Dec 4, 2014 at 5:43 PM, Nicolas George wrote: > Le quartidi 14 frimaire, an CCXXIII, Anshul a écrit : > > Yes while doing that only I realized, if we use "i" then cc must be in > > first stream. > > When I had multiple stream(with audio), then I was not able to map subcc > > to my video

Re: [FFmpeg-devel] [PATCH 2/2] Adding closed caption decoder

2015-01-05 Thread Anshul Maheshwari
e > > > user knows why what she sees is corrupted > > done > > > > attached new patchs, for column number, I have done lots of changes, > > you might want to reread the patch. > > [...] > > > +/** > > + * @param ctx closed caption context

Re: [FFmpeg-devel] [FFmpeg-cvslog] Adding Closed caption Support

2015-01-12 Thread Anshul Maheshwari
On 01/12/2015 04:16 PM, Clément Bœsch wrote: On Sun, Jan 11, 2015 at 11:15:35PM +0100, Anshul Maheshwari wrote: ffmpeg | branch: master | Anshul Maheshwari | Tue Jan 6 12:41:34 2015 +0530| [4b6262610bd516320b3fca71ef03ff9bf1aa5066] | committer: Michael Niedermayer Adding Closed caption

Re: [FFmpeg-devel] [FFmpeg-cvslog] Adding Closed caption Support

2015-01-12 Thread Anshul Maheshwari
On Tue, Jan 13, 2015 at 11:24 AM, Anshul Maheshwari wrote: > On 01/12/2015 04:16 PM, Clément Bœsch wrote: > > On Sun, Jan 11, 2015 at 11:15:35PM +0100, Anshul Maheshwari wrote: > > ffmpeg | branch: master | Anshul Maheshwari | Tue > Jan 6 1

Re: [FFmpeg-devel] [PATCH 2/3] libavcodec/ccaption_dec: clean up and standardize white space

2016-01-07 Thread Anshul Maheshwari
On Tue, Jan 5, 2016 at 8:58 AM, Aman Gupta wrote: > From: Aman Gupta > > --- > libavcodec/ccaption_dec.c | 98 > ++- > 1 file changed, 45 insertions(+), 53 deletions(-) > > diff --git a/libavcodec/ccaption_dec.c b/libavcodec/ccaption_dec.c > index 4e4

Re: [FFmpeg-devel] [PATCH 1/3] libavcodec/ccaption_dec: remove unnecessary include

2016-01-07 Thread Anshul Maheshwari
On Tue, Jan 5, 2016 at 8:58 AM, Aman Gupta wrote: > From: Aman Gupta > > --- > libavcodec/ccaption_dec.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/libavcodec/ccaption_dec.c b/libavcodec/ccaption_dec.c > index 9f67caa..4e478e0 100644 > --- a/libavcodec/ccaption_dec.c > +++ b/libavc

Re: [FFmpeg-devel] [PATCH 03/10] libavcodec/ccaption_dec: add calculate_duration option

2016-01-08 Thread Anshul Maheshwari
On Thu, Jan 7, 2016 at 6:10 AM, Aman Gupta wrote: > > Aman Gupta wrote: > > > --- a/libavcodec/ccaption_dec.c > > > +++ b/libavcodec/ccaption_dec.c > > > @@ -150,6 +150,7 @@ struct Screen { > > > > > > typedef struct CCaptionSubContext { > > > AVClass *class; > > > +int calculate_durat

Re: [FFmpeg-devel] [PATCH 03/10] libavcodec/ccaption_dec: add calculate_duration option

2016-01-08 Thread Anshul Maheshwari
On Fri, Jan 8, 2016 at 3:51 PM, Anshul Maheshwari wrote: > > > On Thu, Jan 7, 2016 at 6:10 AM, Aman Gupta wrote: > > > Aman Gupta wrote: >> > > --- a/libavcodec/ccaption_dec.c >> > > +++ b/libavcodec/ccaption_dec.c >> > > @@ -150,6 +

Re: [FFmpeg-devel] [PATCH 04/10] libavcodec/ccaption_dec: reap_screen after flipping on EOC

2016-01-08 Thread Anshul Maheshwari
On Thu, Jan 7, 2016 at 6:14 AM, Aman Gupta wrote: > Probably should have written a longer commit message here. The EOC command > stands for "end of caption" aka "display buffer". It's used with POPON > mode, where characters are written to an off-screen buffer and EOC flips > the buffers to displ

[FFmpeg-devel] [PATCH] MAINTAINERS: add Subtitle maintainer

2014-07-13 Thread Anshul Maheshwari
From: Anshul Maheshwari --- MAINTAINERS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index d06030b..65c5ce0 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -132,6 +132,8 @@ Generic Parts: tableprint.c, tableprint.h Reimar Doeffinger fixed point

[FFmpeg-devel] [PATCH] disable compule_edt in case of filters

2014-07-14 Thread Anshul Maheshwari
From: Anshul Maheshwari --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 3d23ee6..0b1f930 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2283,7 +2283,7 @@ static int init_input_stream(int ist_index, char *error, int error_len) ist

[FFmpeg-devel] [PATCH] disable compule_edt in case of filters

2014-07-14 Thread Anshul Maheshwari
--- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 3d23ee6..0b1f930 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2283,7 +2283,7 @@ static int init_input_stream(int ist_index, char *error, int error_len) ist->dec_ctx->thread_safe_callbac

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: add Subtitle maintainer

2014-07-14 Thread Anshul Maheshwari
On 7/13/14, Michael Niedermayer wrote: > On Sun, Jul 13, 2014 at 02:05:46PM +0200, Clément Bœsch wrote: >> On Sun, Jul 13, 2014 at 03:32:19PM +0530, Anshul Maheshwari wrote: >> > From: Anshul Maheshwari >> > >> > --- >> > MAINTAINERS | 2 ++ >>

[FFmpeg-devel] Adding AVClass in v4l2enc

2014-07-31 Thread Anshul Maheshwari
Because of no AVClass.I was getting segmentation fault. FFmpeg Cmd that I was using is given below. ./ffmpeg -re -i ~/test_videos/dvbsubtest.ts -f v4l2 /dev/video0 -Anshul From df27814e31a29624f69b23e9790ae6ab42817d8b Mon Sep 17 00:00:00 2001 From: Anshul Maheswhwari Date: Thu, 31 Jul 2014 20:59