[FFmpeg-devel] [PATCH] avformat/ftp: Solve a crash bug when network occur a exception

2017-03-19 Thread tiejun.peng
: tiejun.peng --- libavformat/ftp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/ftp.c b/libavformat/ftp.c index 0663b47..3f1bf2e 100644 --- a/libavformat/ftp.c +++ b/libavformat/ftp.c @@ -206,6 +206,9 @@ static int ftp_send_command(FTPContext *s, const char *command, if

[FFmpeg-devel] [PATCH v2] avformat/ftp: Solve a crash bug when network occur a exception

2017-03-20 Thread tiejun.peng
: tiejun.peng --- libavformat/ftp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/ftp.c b/libavformat/ftp.c index 0663b47..9aa7a45 100644 --- a/libavformat/ftp.c +++ b/libavformat/ftp.c @@ -206,6 +206,9 @@ static int ftp_send_command(FTPContext *s, const char *command, if

[FFmpeg-devel] [PATCH] libavformat/id3v2: add some ID3v2.3 tags convertion

2017-11-19 Thread tiejun.peng
Signed-off-by: tiejun.peng --- libavformat/id3v2.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 6c216ba..1cf759b 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -56,6 +56,11 @@ const AVMetadataConv

[FFmpeg-devel] [PATCH] libavformat/mov:the "stco" box parse no need return eof.

2017-11-19 Thread tiejun.peng
missed in "stco" box and the other box data is full will not cause the whole mp4 file fail. Signed-off-by: tiejun.peng --- libavformat/mov.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 5c9f926..78b7bf7 100644 --- a/libavformat

[FFmpeg-devel] [PATCH] libavformat/id3v2: add some ID3v2.3 tags convertion

2017-11-27 Thread tiejun.peng
Signed-off-by: tiejun.peng --- libavformat/id3v2.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 6c216ba..1cf759b 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -56,6 +56,11 @@ const AVMetadataConv

[FFmpeg-devel] [PATCH] libavformat/mov:the "stco" box parse no need return eof.

2017-11-29 Thread tiejun.peng
discard corrupted track and good track have chance to play. Signed-off-by: tiejun.peng --- libavformat/mov.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index c901859..5c2ce39 100644 --- a/libavformat/mov.c +++ b/libavformat

[FFmpeg-devel] [PATCH] lavf/mov: atom box parsing return eof cause play fail

2017-12-04 Thread tiejun.peng
1.add warning info about corrupted atom box parsing. 2.atom box parsing return eof cause mov_read_close called in mov_read_header and user have no chance to play the file. Signed-off-by: tiejun.peng --- libavformat/mov.c | 46 +++--- 1 file changed, 35

[FFmpeg-devel] [PATCH] libavformat/id3v2: add some ID3v2.3 tags convertion

2017-12-04 Thread tiejun.peng
Signed-off-by: tiejun.peng --- libavformat/id3v2.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 6c216ba..1cf759b 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -56,6 +56,11 @@ const AVMetadataConv

[FFmpeg-devel] [PATCH] lavf/mov: atom box parsing return eof cause play fail

2017-12-06 Thread tiejun.peng
fix eof lead to play fail. Signed-off-by: tiejun.peng --- libavformat/mov.c | 59 +++ 1 file changed, 42 insertions(+), 17 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index c901859..870fdd6 100644 --- a/libavformat/mov.c

[FFmpeg-devel] [PATCH] lavf/mp3dec: fix mp3 file probe fail

2017-12-06 Thread tiejun.peng
fix #6895: https://trac.ffmpeg.org/ticket/6895 stream:https://trac.ffmpeg.org/attachment/ticket/6895/music_mp3 Signed-off-by: tiejun.peng --- libavformat/mp3dec.c | 4 1 file changed, 4 insertions(+) diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c index a76fe32..286eb68 100644

Re: [FFmpeg-devel] [PATCH] lavf/mp3dec: fix mp3 file probe fail

2017-12-07 Thread Tiejun.Peng
ons and patches"; Subject: Re: [FFmpeg-devel] [PATCH] lavf/mp3dec: fix mp3 file probe fail 2017-12-06 10:27 GMT+01:00 tiejun.peng : > fix #6895: https://trac.ffmpeg.org/ticket/6895 The patch breaks issue3327-libc-2.17.so > stream:https://trac.ffmpeg.org/attachment/ticket/6895/music_mp3 W

[FFmpeg-devel] [PATCH] lavf/mov: atom box parsing return eof cause play fail

2017-12-07 Thread tiejun.peng
fix eof lead to play fail. Signed-off-by: tiejun.peng --- libavformat/mov.c | 47 --- 1 file changed, 36 insertions(+), 11 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index c901859..6c3567f 100644 --- a/libavformat/mov.c +++ b

Re: [FFmpeg-devel] [PATCH] lavf/mov: atom box parsing return eofcause play fail

2017-12-08 Thread Tiejun.Peng
-devel] [PATCH] lavf/mov: atom box parsing return eofcause play fail On Thu, Dec 07, 2017 at 05:47:46PM +0800, tiejun.peng wrote: > fix eof lead to play fail. > > Signed-off-by: tiejun.peng > --- > libavformat/mov.c | 47 --- >

Re: [FFmpeg-devel] [PATCH] lavf/mp3dec: fix mp3 file probe fail

2017-12-08 Thread Tiejun.Peng
can this commit be merged into master? -- Original -- From: "Tiejun.Peng";; Send time: Thursday, Dec 7, 2017 5:32 PM To: "FFmpeg development discussions and patches"; Subject: Re: [FFmpeg-devel] [PATCH] lavf/mp3dec: fix mp3 file probe fai

[FFmpeg-devel] [PATCH] lavf/mov: add some useful warning log of eof

2017-12-08 Thread tiejun.peng
Signed-off-by: tiejun.peng --- libavformat/mov.c | 43 +-- 1 file changed, 33 insertions(+), 10 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index c901859..9982204 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1991,8

[FFmpeg-devel] [PATCH] lavf/mov: modify code indentation

2017-12-08 Thread tiejun.peng
Signed-off-by: tiejun.peng --- libavformat/mov.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 9982204..180b6f4 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -6630,13 +6630,13 @@ static int

[FFmpeg-devel] [PATCH V2] lavf/mov: atom box parsing return eof cause play fail

2017-12-08 Thread tiejun.peng
fix eof lead to play fail. Signed-off-by: tiejun.peng --- libavformat/mov.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 180b6f4..870fdd6 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -6632,7 +6632,9 @@ static int

Re: [FFmpeg-devel] [PATCH] lavf/mp3dec: fix mp3 file probe fail

2017-12-08 Thread Tiejun.Peng
ginal -- From: "Carl Eugen Hoyos";; Send time: Saturday, Dec 9, 2017 0:21 AM To: "FFmpeg development discussions and patches"; Subject: Re: [FFmpeg-devel] [PATCH] lavf/mp3dec: fix mp3 file probe fail 2017-12-08 17:13 GMT+01:00 Tiejun.Peng : > can this commit b

Re: [FFmpeg-devel] [PATCH] lavf/mp3dec: fix mp3 file probe fail

2017-12-08 Thread Tiejun.Peng
i just repair of the probe. -- Original -- From: "wm4";; Send time: Thursday, Dec 7, 2017 9:16 PM To: "ffmpeg-devel"; Subject: Re: [FFmpeg-devel] [PATCH] lavf/mp3dec: fix mp3 file probe fail On Wed, 6 Dec 2017 17:27:43 +0800 "tiejun.peng" wrote: > f

Re: [FFmpeg-devel] [PATCH] lavf/mov: atom box parsing returneofcause play fail

2017-12-11 Thread Tiejun.Peng
ime: Saturday, Dec 9, 2017 3:36 AM To: "FFmpeg development discussions and patches"; Subject: Re: [FFmpeg-devel] [PATCH] lavf/mov: atom box parsing returneofcause play fail On Sat, Dec 09, 2017 at 12:06:47AM +0800, Tiejun.Peng wrote: > yes, i have checked this case and i have do

[FFmpeg-devel] [PATCH] libavformat/avidec: subtitle stream disable some non-interleaved process

2017-09-09 Thread tiejun.peng
non-interleaved process call avio_seek frequently, it will cause some performance issues especially in network play scene, such as http/ftp protocol. Signed-off-by: tiejun.peng --- libavformat/avidec.c | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/libavformat