Re: [FFmpeg-trac] #7252(undetermined:closed): SIGSEGV when the ffplay is terminated with Ctrl+C before video appears

2018-06-09 Thread FFmpeg
#7252: SIGSEGV when the ffplay is terminated with Ctrl+C before video appears
-+-
 Reporter:  KTSamy   |Owner:
 Type:  defect   |   Status:  closed
 Priority:  important|Component:
  Version:  git-master   |  undetermined
 Keywords:  SIGSEGV  |   Resolution:
  crash  |  needs_more_info
 Blocking:   |   Blocked By:
Analyzed by developer:  0|  Reproduced by developer:  0
-+-

Comment (by KTSamy):

 Replying to [comment:6 cehoyos]:
 > Feel free to test the following change:
 > {{{
 > diff --git a/fftools/ffplay.c b/fftools/ffplay.c
 > index 84ba667..5ace5cd 100644
 > --- a/fftools/ffplay.c
 > +++ b/fftools/ffplay.c
 > @@ -3106,7 +3106,11 @@ static void stream_cycle_channel(VideoState *is,
 int codec_type)
 >  int old_index;
 >  AVStream *st;
 >  AVProgram *p = NULL;
 > -int nb_streams = is->ic->nb_streams;
 > +int nb_streams;
 > +
 > +if (!is->ic)
 > +return;
 > +nb_streams = is->ic->nb_streams;
 >
 >  if (codec_type == AVMEDIA_TYPE_VIDEO) {
 >  start_index = is->last_video_stream;
 > }}}

 This fixes the issue. Thanks :)

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7252(undetermined:closed): SIGSEGV when the ffplay is terminated with Ctrl+C before video appears

2018-06-09 Thread FFmpeg
#7252: SIGSEGV when the ffplay is terminated with Ctrl+C before video appears
-+-
 Reporter:  KTSamy   |Owner:
 Type:  defect   |   Status:  closed
 Priority:  important|Component:
  Version:  git-master   |  undetermined
 Keywords:  SIGSEGV  |   Resolution:
  crash  |  needs_more_info
 Blocking:   |   Blocked By:
Analyzed by developer:  0|  Reproduced by developer:  0
-+-

Comment (by cehoyos):

 Feel free to test the following change:
 {{{
 diff --git a/fftools/ffplay.c b/fftools/ffplay.c
 index 84ba667..5ace5cd 100644
 --- a/fftools/ffplay.c
 +++ b/fftools/ffplay.c
 @@ -3106,7 +3106,11 @@ static void stream_cycle_channel(VideoState *is,
 int codec_type)
  int old_index;
  AVStream *st;
  AVProgram *p = NULL;
 -int nb_streams = is->ic->nb_streams;
 +int nb_streams;
 +
 +if (!is->ic)
 +return;
 +nb_streams = is->ic->nb_streams;

  if (codec_type == AVMEDIA_TYPE_VIDEO) {
  start_index = is->last_video_stream;
 }}}

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7252(undetermined:closed): SIGSEGV when the ffplay is terminated with Ctrl+C before video appears

2018-06-09 Thread FFmpeg
#7252: SIGSEGV when the ffplay is terminated with Ctrl+C before video appears
-+-
 Reporter:  KTSamy   |Owner:
 Type:  defect   |   Status:  closed
 Priority:  important|Component:
  Version:  git-master   |  undetermined
 Keywords:  SIGSEGV  |   Resolution:
  crash  |  needs_more_info
 Blocking:   |   Blocked By:
Analyzed by developer:  0|  Reproduced by developer:  0
-+-

Comment (by cehoyos):

 Replying to [comment:4 KTSamy]:
 > Replying to [comment:3 cehoyos]:
 > > Replying to [comment:2 KTSamy]:
 > > > {{{
 > > > ktsamy:~ thiru$ ffplay_g
 "https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8;
 > > > ffplay version 3.4.git Copyright (c) 2003-2018 the FFmpeg developers
 > > > }}}
 > > Looks old and unsupported.
 >
 > Nope. This was built from the recent master branch

 In this case, you are using a broken source snapshot, try
 http://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7252(undetermined:closed): SIGSEGV when the ffplay is terminated with Ctrl+C before video appears

2018-06-09 Thread FFmpeg
#7252: SIGSEGV when the ffplay is terminated with Ctrl+C before video appears
-+-
 Reporter:  KTSamy   |Owner:
 Type:  defect   |   Status:  closed
 Priority:  important|Component:
  Version:  git-master   |  undetermined
 Keywords:  SIGSEGV  |   Resolution:
  crash  |  needs_more_info
 Blocking:   |   Blocked By:
Analyzed by developer:  0|  Reproduced by developer:  0
-+-

Comment (by KTSamy):

 Replying to [comment:3 cehoyos]:
 > Replying to [comment:2 KTSamy]:
 > > {{{
 > > ktsamy:~ thiru$ ffplay_g
 "https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8;
 > > ffplay version 3.4.git Copyright (c) 2003-2018 the FFmpeg developers
 > > }}}
 > Looks old and unsupported.

 Nope. This was built from the yesterday's latest master branch (Last
 commit is 7b80df677aa85c7d5cba457de915eac6108ec4e8 ). The RELEASE file of
 the master branch is not updated after the release of 4.0. That is leading
 to the confusion. I have already raised this on dev IRC sometime back.

 '''As I mentioned earlier, I can reproduce it from the builds of
 officially recommended builds too (https://evermeet.cx/ffmpeg/ &
 https://ffmpeg.zeranoe.com/builds/ ). It looks like an issue with newer
 MacOS versions. I can even reproduce the issue with 3.4.X & 4.0 builds.'''

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #6293(avformat:closed): pcm_s24be over RTP

2018-06-09 Thread FFmpeg
#6293: pcm_s24be over RTP
-+
 Reporter:  hba  |Owner:
 Type:  enhancement  |   Status:  closed
 Priority:  wish |Component:  avformat
  Version:  git-master   |   Resolution:  fixed
 Keywords:  rtp  |   Blocked By:
 Blocking:   |  Reproduced by developer:  0
Analyzed by developer:  0|
-+
Changes (by cehoyos):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 Fixed in 75bd01090f5b93eb1d2b4543d1c01031281879a4

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #6198(avcodec:open): qdrw: files fails to decode

2018-06-09 Thread FFmpeg
#6198: qdrw: files fails to decode
-+---
 Reporter:  ami_stuff|Owner:
 Type:  enhancement  |   Status:  open
 Priority:  wish |Component:  avcodec
  Version:  git-master   |   Resolution:
 Keywords:  qdraw|   Blocked By:
 Blocking:   |  Reproduced by developer:  1
Analyzed by developer:  0|
-+---
Changes (by cehoyos):

 * status:  new => open
 * reproduced:  0 => 1
 * component:  undetermined => avcodec
 * priority:  normal => wish
 * version:  unspecified => git-master
 * keywords:   => qdraw
 * type:  defect => enhancement


--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #6146(avformat:closed): use ImageDescription version>=2 with v210 in quicktime

2018-06-09 Thread FFmpeg
#6146: use ImageDescription version>=2 with v210 in quicktime
+
 Reporter:  dericed |Owner:
 Type:  defect  |   Status:  closed
 Priority:  normal  |Component:  avformat
  Version:  git-master  |   Resolution:  fixed
 Keywords:  mov |   Blocked By:
 Blocking:  |  Reproduced by developer:  0
Analyzed by developer:  0   |
+
Changes (by cehoyos):

 * status:  new => closed
 * resolution:   => fixed
 * version:  unspecified => git-master
 * component:  undetermined => avformat


Comment:

 I believe this was fixed in 1e5f9234166408daf536407117499d3affa34234

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #5834(build system:closed): LoadLibrary/dlopen not found for avisynth

2018-06-09 Thread FFmpeg
#5834: LoadLibrary/dlopen not found for avisynth
-+-
 Reporter:  mhauke   |Owner:
 Type:  defect   |   Status:  closed
 Priority:  normal   |Component:  build
  Version:  git-master   |  system
 Keywords:   |   Resolution:
 Blocking:   |  needs_more_info
Analyzed by developer:  0|   Blocked By:
 |  Reproduced by developer:  0
-+-
Changes (by cehoyos):

 * status:  new => closed
 * resolution:   => needs_more_info


--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #5725(avformat:closed): ffmpeg: error during decoding mp3 with APE tag

2018-06-09 Thread FFmpeg
#5725: ffmpeg: error during decoding mp3 with APE tag
-+
 Reporter:  AstralStorm  |Owner:
 Type:  defect   |   Status:  closed
 Priority:  normal   |Component:  avformat
  Version:  git-master   |   Resolution:  fixed
 Keywords:  mp3  |   Blocked By:
 Blocking:   |  Reproduced by developer:  0
Analyzed by developer:  0|
-+
Changes (by cehoyos):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 Fixed by Dale Curtis in 42323c3e3a600288e4bf1cefe952486ffc29d280

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #5184(undetermined:open): Incorrect pts at start of avi file

2018-06-09 Thread FFmpeg
#5184: Incorrect pts at start of avi file
-+-
 Reporter:  Misaki   |Owner:
 Type:  defect   |   Status:  open
 Priority:  normal   |Component:
  Version:  git-master   |  undetermined
 Keywords:  avi dts  |   Resolution:
 Blocking:   |   Blocked By:
Analyzed by developer:  0|  Reproduced by developer:  1
-+-

Comment (by cehoyos):

 Workaround is to use `-fflags +genpts`

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #5756(undetermined:open): Robustness issue with nul character in ASS subtitle streams

2018-06-09 Thread FFmpeg
#5756: Robustness issue with nul character in ASS subtitle streams
-+-
 Reporter:  lelegard |Owner:
 Type:  defect   |   Status:  open
 Priority:  normal   |Component:
  Version:  git-master   |  undetermined
 Keywords:  ass mkv  |   Resolution:
 Blocking:   |   Blocked By:
Analyzed by developer:  0|  Reproduced by developer:  1
-+-
Changes (by cehoyos):

 * keywords:  ass => ass mkv
 * status:  new => open
 * type:  enhancement => defect
 * reproduced:  0 => 1


--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7155(ffmpeg:reopened): Add option to stop writing at position relative to EOF

2018-06-09 Thread FFmpeg
#7155: Add option to stop writing at position relative to EOF
-+
 Reporter:  clone206 |Owner:
 Type:  enhancement  |   Status:  reopened
 Priority:  wish |Component:  ffmpeg
  Version:  unspecified  |   Resolution:
 Keywords:   |   Blocked By:
 Blocking:   |  Reproduced by developer:  0
Analyzed by developer:  0|
-+

Comment (by clone206):

 Reproduce what?

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7252(undetermined:closed): SIGSEGV when the ffplay is terminated with Ctrl+C before video appears

2018-06-09 Thread FFmpeg
#7252: SIGSEGV when the ffplay is terminated with Ctrl+C before video appears
-+-
 Reporter:  KTSamy   |Owner:
 Type:  defect   |   Status:  closed
 Priority:  important|Component:
  Version:  git-master   |  undetermined
 Keywords:  SIGSEGV  |   Resolution:
  crash  |  needs_more_info
 Blocking:   |   Blocked By:
Analyzed by developer:  0|  Reproduced by developer:  0
-+-

Comment (by cehoyos):

 Replying to [comment:2 KTSamy]:
 > {{{
 > ktsamy:~ thiru$ ffplay_g
 "https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8;
 > ffplay version 3.4.git Copyright (c) 2003-2018 the FFmpeg developers
 > }}}
 Looks old and unsupported.

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7239(ffmpeg:closed): No error for attempted conversion from text subtitles to bitmap subtitles.

2018-06-09 Thread FFmpeg
#7239: No error for attempted conversion from text subtitles to bitmap 
subtitles.
--+--
 Reporter:  smallishzulu  |Owner:
 Type:  defect|   Status:  closed
 Priority:  minor |Component:  ffmpeg
  Version:  git-master|   Resolution:  fixed
 Keywords:  sub   |   Blocked By:
 Blocking:|  Reproduced by developer:  0
Analyzed by developer:  0 |
--+--
Changes (by cehoyos):

 * status:  reopened => closed
 * resolution:   => fixed


Comment:

 Should be fixed in 5686c4489a017209367c03fbc40011db7134581a

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7155(ffmpeg:reopened): Add option to stop writing at position relative to EOF

2018-06-09 Thread FFmpeg
#7155: Add option to stop writing at position relative to EOF
-+
 Reporter:  clone206 |Owner:
 Type:  enhancement  |   Status:  reopened
 Priority:  wish |Component:  ffmpeg
  Version:  unspecified  |   Resolution:
 Keywords:   |   Blocked By:
 Blocking:   |  Reproduced by developer:  0
Analyzed by developer:  0|
-+

Comment (by cehoyos):

 Replying to [comment:12 clone206]:

 > Also, sorry if it wasn't clear, but I never reported a bug

 This is not true, you just didn't explain how we can reproduce.

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7252(undetermined:closed): SIGSEGV when the ffplay is terminated with Ctrl+C before video appears

2018-06-09 Thread FFmpeg
#7252: SIGSEGV when the ffplay is terminated with Ctrl+C before video appears
-+-
 Reporter:  KTSamy   |Owner:
 Type:  defect   |   Status:  closed
 Priority:  important|Component:
  Version:  git-master   |  undetermined
 Keywords:  SIGSEGV  |   Resolution:
  crash  |  needs_more_info
 Blocking:   |   Blocked By:
Analyzed by developer:  0|  Reproduced by developer:  0
-+-

Comment (by KTSamy):

 I am not much familiar with debugging tools. I have tried

 {{{
 sudo gdb ffplay_g
 r -i https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8
 }}}


 the result was

 {{{
 (gdb) r -i https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8
 Starting program: /usr/local/bin/ffplay_g -i
 https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8
 [New Thread 0x1103 of process 68309]
 [New Thread 0xf03 of process 68309]
 Warning:
 Cannot insert breakpoint -1.
 Cannot access memory at address 0xf782

 Command aborted.
 }}}


 I am not sure whether you have tried it on macOS or not. I am on Mac OS X
 10.13.5 (17F77)

 Here is my terminal output

 {{{
 ktsamy:~ thiru$ ffplay_g
 "https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8;
 ffplay version 3.4.git Copyright (c) 2003-2018 the FFmpeg developers
   built with Apple LLVM version 9.0.0 (clang-900.0.39.2)
   configuration: --enable-static --disable-shared --disable-doc --enable-
 gpl --enable-version3 --enable-nonfree --enable-pthreads --pkg-config-
 flags=--static --enable-libxml2 --enable-gmp --enable-gnutls --enable-sdl2
   libavutil  56. 18.102 / 56. 18.102
   libavcodec 58. 20.100 / 58. 20.100
   libavformat58. 17.100 / 58. 17.100
   libavdevice58.  4.100 / 58.  4.100
   libavfilter 7. 25.100 /  7. 25.100
   libswscale  5.  2.100 /  5.  2.100
   libswresample   3.  2.100 /  3.  2.100
   libpostproc55.  2.100 / 55.  2.100
 [hls,applehttp @ 0x1028a2000] Opening
 
'https://bitdash-a.akamaihd.net/content/sintel/hls/audio/stereo/en/128kbit.m3u8'
 for reading
 Segmentation fault: 11=   0 aq=0KB vq=0KB sq=0B f=0/0
 ktsamy:~ thiru$ ffplay_g
 "https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8;
 ffplay version 3.4.git Copyright (c) 2003-2018 the FFmpeg developers
   built with Apple LLVM version 9.0.0 (clang-900.0.39.2)
   configuration: --enable-static --disable-shared --disable-doc --enable-
 gpl --enable-version3 --enable-nonfree --enable-pthreads --pkg-config-
 flags=--static --enable-libxml2 --enable-gmp --enable-gnutls --enable-sdl2
   libavutil  56. 18.102 / 56. 18.102
   libavcodec 58. 20.100 / 58. 20.100
   libavformat58. 17.100 / 58. 17.100
   libavdevice58.  4.100 / 58.  4.100
   libavfilter 7. 25.100 /  7. 25.100
   libswscale  5.  2.100 /  5.  2.100
   libswresample   3.  2.100 /  3.  2.100
   libpostproc55.  2.100 / 55.  2.100
 [hls,applehttp @ 0x10306a800] Opening
 
'https://bitdash-a.akamaihd.net/content/sintel/hls/audio/stereo/en/128kbit.m3u8'
 for reading
 [https @ 0x1038f7200] Opening
 
'https://bitdash-a.akamaihd.net/content/sintel/hls/audio/stereo/none/128kbit.m3u8'
 for reading
 [https @ 0x1038f7200] Opening
 
'https://bitdash-a.akamaihd.net/content/sintel/hls/audio/surround/en/320kbit.m3u8'
 for reading
 [https @ 0x1038f7200] Opening
 
'https://bitdash-a.akamaihd.net/content/sintel/hls/audio/stereo/none/128kbit.m3u8'
 for reading
 [https @ 0x1038f7200] Opening
 'https://bitdash-a.akamaihd.net/content/sintel/hls/video/250kbit.m3u8' for
 reading
 [https @ 0x1038f7200] Opening
 'https://bitdash-a.akamaihd.net/content/sintel/hls/video/500kbit.m3u8' for
 reading
 [https @ 0x1038f7200] Opening
 'https://bitdash-a.akamaihd.net/content/sintel/hls/video/800kbit.m3u8' for
 reading
 [https @ 0x1038f7200] Opening
 'https://bitdash-a.akamaihd.net/content/sintel/hls/video/1100kbit.m3u8'
 for reading
 [https @ 0x1038f7200] Opening
 'https://bitdash-a.akamaihd.net/content/sintel/hls/video/1500kbit.m3u8'
 for reading
 [https @ 0x1038f7200] Opening
 'https://bitdash-a.akamaihd.net/content/sintel/hls/video/4000kbit.m3u8'
 for reading
 Segmentation fault: 11=   0 aq=0KB vq=0KB sq=0B f=0/0
 ktsamy:~ thiru$
 }}}

 I can even reproduce it with latest builds from
 https://ffmpeg.zeranoe.com/builds/

 The following are the context from mac's bug reporting option context

 {{{
 Process:   ffplay_g [68095]
 Path:  /usr/local/bin/ffplay_g
 Identifier:ffplay_g
 Version:   0
 Code Type: X86-64 (Native)
 Parent Process:bash [33400]
 Responsible:   ffplay_g [68095]
 User ID:   503

 Date/Time: 

Re: [FFmpeg-trac] #7155(ffmpeg:reopened): Add option to stop writing at position relative to EOF

2018-06-09 Thread FFmpeg
#7155: Add option to stop writing at position relative to EOF
-+
 Reporter:  clone206 |Owner:
 Type:  enhancement  |   Status:  reopened
 Priority:  wish |Component:  ffmpeg
  Version:  unspecified  |   Resolution:
 Keywords:   |   Blocked By:
 Blocking:   |  Reproduced by developer:  0
Analyzed by developer:  0|
-+

Comment (by clone206):

 cehoyos,

 In what way is -sseof not working? For those of us interested in possibly
 contributing, it would be good to know, as I haven't had any issues with
 that option, which has been available for some time now.

 Also, sorry if it wasn't clear, but I never reported a bug that needs
 fixing, but rather a feature request. If there is any documentation on how
 to properly make a feature request I would gladly familiarize myself with
 it.

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7250(avcodec:new): There are several potential out-of-bounds access vulnerabilities because of missing check for avctx->height and avctx->width

2018-06-09 Thread FFmpeg
#7250: There are several potential out-of-bounds access vulnerabilities because 
of
missing check for avctx->height and avctx->width
+---
 Reporter:  Yooha   |Owner:
 Type:  defect  |   Status:  new
 Priority:  normal  |Component:  avcodec
  Version:  git-master  |   Resolution:
 Keywords:  crash   |   Blocked By:
 Blocking:  |  Reproduced by developer:  0
Analyzed by developer:  0   |
+---

Comment (by cehoyos):

 When you send your patches to the FFmpeg development mailing list, please
 do not forget to use a non-default name for the author field.

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7155(ffmpeg:reopened): Add option to stop writing at position relative to EOF

2018-06-09 Thread FFmpeg
#7155: Add option to stop writing at position relative to EOF
-+
 Reporter:  clone206 |Owner:
 Type:  enhancement  |   Status:  reopened
 Priority:  wish |Component:  ffmpeg
  Version:  unspecified  |   Resolution:
 Keywords:   |   Blocked By:
 Blocking:   |  Reproduced by developer:  0
Analyzed by developer:  0|
-+
Changes (by cehoyos):

 * priority:  normal => wish
 * component:  undetermined => ffmpeg


Comment:

 I didn't consider `-sseof` ''working'' for any interpretation but if that
 is what you need, it may be possible.

 Please do not forget to report the original bug, it would be nice to fix
 it.

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7229(avfilter:new): Compilation error with --enable-libfreetype

2018-06-09 Thread FFmpeg
#7229: Compilation error with --enable-libfreetype
-+
 Reporter:  CoRoNe   |Owner:
 Type:  defect   |   Status:  new
 Priority:  normal   |Component:  avfilter
  Version:  git-master   |   Resolution:
 Keywords:  libfreetype  |   Blocked By:
 Blocking:   |  Reproduced by developer:  0
Analyzed by developer:  0|
-+
Changes (by cehoyos):

 * keywords:  multiple definition of freetype libfreetype => libfreetype


--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7251(avcodec:new): Memory/Resource Leak in avcodec_open2() on failure

2018-06-09 Thread FFmpeg
#7251: Memory/Resource Leak in avcodec_open2() on failure
-+-
 Reporter:  jlsantiago0  |Owner:
 Type:  defect   |   Status:  new
 Priority:  normal   |Component:  avcodec
  Version:  git-master   |   Resolution:
 Keywords:  mpeg2video   |   Blocked By:
  leak   |  Reproduced by developer:  0
 Blocking:   |
Analyzed by developer:  0|
-+-
Changes (by cehoyos):

 * keywords:  memory leak, resource leak => mpeg2video leak


Comment:

 To simplify the reviewing process please use the same bracing style as the
 rest of the source file (visible twice in your patch file).

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


Re: [FFmpeg-trac] #7252(undetermined:closed): SIGSEGV when the ffplay is terminated with Ctrl+C before video appears

2018-06-09 Thread FFmpeg
#7252: SIGSEGV when the ffplay is terminated with Ctrl+C before video appears
-+-
 Reporter:  KTSamy   |Owner:
 Type:  defect   |   Status:  closed
 Priority:  important|Component:
  Version:  git-master   |  undetermined
 Keywords:  SIGSEGV  |   Resolution:
  crash  |  needs_more_info
 Blocking:   |   Blocked By:
Analyzed by developer:  0|  Reproduced by developer:  0
-+-
Changes (by cehoyos):

 * keywords:  SIGSEGV ffplay => SIGSEGV crash
 * priority:  normal => important
 * status:  new => closed
 * component:  ffplay => undetermined
 * resolution:   => needs_more_info


Comment:

 Please reopen this ticket if you can provide backtrace, disassembly and
 register dump as explained on https://ffmpeg.org/bugreports.html
 {{{
 $ ffplay https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8
 ffplay version N-91255-g7b80df6 Copyright (c) 2003-2018 the FFmpeg
 developers
   built with gcc 6.4.0 (GCC)
   configuration: --enable-gpl --enable-gnutls
   libavutil  56. 18.102 / 56. 18.102
   libavcodec 58. 20.100 / 58. 20.100
   libavformat58. 17.100 / 58. 17.100
   libavdevice58.  4.100 / 58.  4.100
   libavfilter 7. 25.100 /  7. 25.100
   libswscale  5.  2.100 /  5.  2.100
   libswresample   3.  2.100 /  3.  2.100
   libpostproc55.  2.100 / 55.  2.100
 [hls,applehttp @ 0x7fd8c940] Opening
 
'https://bitdash-a.akamaihd.net/content/sintel/hls/audio/stereo/en/128kbit.m3u8'
 for reading
 [https @ 0x7fd8c0015dc0] Opening
 
'https://bitdash-a.akamaihd.net/content/sintel/hls/audio/stereo/none/128kbit.m3u8'
 for reading
 [https @ 0x7fd8c0015dc0] Opening
 
'https://bitdash-a.akamaihd.net/content/sintel/hls/audio/surround/en/320kbit.m3u8'
 for reading
 [https @ 0x7fd8c0015dc0] Opening
 
'https://bitdash-a.akamaihd.net/content/sintel/hls/audio/stereo/none/128kbit.m3u8'
 for reading
 [https @ 0x7fd8c0015dc0] Opening
 'https://bitdash-a.akamaihd.net/content/sintel/hls/video/250kbit.m3u8' for
 reading
 [https @ 0x7fd8c0015dc0] Opening
 'https://bitdash-a.akamaihd.net/content/sintel/hls/video/500kbit.m3u8' for
 reading
 ^C
 $
 }}}

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac


[FFmpeg-trac] #7252(ffplay:new): SIGSEGV when the ffplay is terminated with Ctrl+C before video appears

2018-06-09 Thread FFmpeg
#7252: SIGSEGV when the ffplay is terminated with Ctrl+C before video appears
-+-
 Reporter:  KTSamy   | Type:  defect
   Status:  new  | Priority:  normal
Component:  ffplay   |  Version:  git-
 Keywords:  SIGSEGV  |  master
  ffplay |   Blocked By:
 Blocking:   |  Reproduced by developer:  0
Analyzed by developer:  0|
-+-
 When ffplay is closed using ctrl+c before the video surface appears, it
 results in with SIGSEGV in MacOS.

 Can be reproduced with latest ffplay build from master branch.
 Sample URL:
 "https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8;


 {{{
 Crashed Thread:0  Dispatch queue: com.apple.main-thread

 Exception Type:EXC_BAD_ACCESS (SIGSEGV)
 Exception Codes:   KERN_INVALID_ADDRESS at 0x002c
 Exception Note:EXC_CORPSE_NOTIFY

 Termination Signal:Segmentation fault: 11
 Termination Reason:Namespace SIGNAL, Code 0xb
 Terminating Process:   exc handler [0]



 }}}

--
Ticket URL: 
FFmpeg 
FFmpeg issue tracker
___
FFmpeg-trac mailing list
FFmpeg-trac@avcodec.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-trac