From trac at avcodec.org Sun Dec 1 01:03:39 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 00:03:39 -0000 Subject: [FFmpeg-trac] #3185(FFprobe:new): ffprobe do not handle HEVC correctly Message-ID: <035.7aa9727883108df1a1e67cce212e46b5@avcodec.org> #3185: ffprobe do not handle HEVC correctly ---------------------------------+--------------------------------------- Reporter: figgis | Type: defect Status: new | Priority: normal Component: FFprobe | Version: unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ---------------------------------+--------------------------------------- Summary of the bug: How to reproduce: {{{ I encoded some frames using the HM-encoder. This is what the decoder says: $ ./TAppDecoderStatic -b foreman_352x288.hevc HM software: Decoder Version [12.1][Linux][GCC 4.7.3][64 bit] POC 0 TId: 0 ( I-SLICE, QP 32 ) [DT 0.020] [L0 ] [L1 ] [:,,,(unk)] POC 1 TId: 0 ( P-SLICE, QP 35 ) [DT 0.000] [L0 0 ] [L1 ] [:,,,(unk)] POC 2 TId: 0 ( B-SLICE, QP 34 ) [DT 0.000] [L0 1 0 ] [L1 1 0 ] [:,,,(unk)] POC 3 TId: 0 ( B-SLICE, QP 35 ) [DT 0.010] [L0 2 1 0 ] [L1 2 1 0 ] [:,,,(unk)] POC 4 TId: 0 ( B-SLICE, QP 33 ) [DT 0.010] [L0 3 2 1 0 ] [L1 3 2 1 0 ] [:,,,(unk)] Total Time: 0.040 sec. This is the output from ffprobe for the first frame: $ ./ffprobe -show_frames ~/src/jctvc-hm/bin/foreman_352x288.hevc ffprobe version N-58684-gf068aed Copyright (c) 2007-2013 the FFmpeg developers built on Nov 30 2013 23:52:44 with gcc 4.7 (Ubuntu/Linaro 4.7.3-1ubuntu1) configuration: --enable-libx264 --enable-gpl --enable-libmp3lame libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 21.102 / 55. 21.102 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, hevc, from '/home/fp/src/jctvc-hm/bin/foreman_352x288.hevc': Duration: N/A, bitrate: N/A Stream #0:0: Video: hevc (Main), yuv420p(tv), 352x288, 25 fps, 25 tbr, 1200k tbn, 25 tbc [FRAME] media_type=video key_frame=1 pkt_pts=0 pkt_pts_time=0.000000 pkt_dts=0 pkt_dts_time=0.000000 pkt_duration=48000 pkt_duration_time=0.040000 pkt_pos=0 pkt_size=3695 width=352 height=288 pix_fmt=yuv420p sample_aspect_ratio=N/A pict_type=? coded_picture_number=0 display_picture_number=0 interlaced_frame=0 top_field_first=0 repeat_pict=0 [/FRAME] in the above, pict_type do not display the correct frame-type, also coded_picture_number and display_picture_number always displays as zero. HEVC reference decoder/encoder uses the slize-type do determine the type, i.e. I, P, B. Valid code in the reference decoder is Lib/TLibDecoder/TDecGop.cpp:219 Char c = (pcSlice->isIntra() ? 'I' : pcSlice->isInterP() ? 'P' : 'B'); if (!pcSlice->isReferenced()) c += 32; //-- For time output for each slice printf("\nPOC %4d TId: %1d ( %c-SLICE, QP%3d ) ", pcSlice->getPOC(), pcSlice->getTLayer(), c, pcSlice->getSliceQp() ); See e.g. table 7.7, page 77. in HEVC-standard http://www.itu.int/rec/T-REC-H.265-201304-I/en }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 01:19:12 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 00:19:12 -0000 Subject: [FFmpeg-trac] #3185(FFprobe:new): ffprobe do not handle HEVC correctly In-Reply-To: <035.7aa9727883108df1a1e67cce212e46b5@avcodec.org> References: <035.7aa9727883108df1a1e67cce212e46b5@avcodec.org> Message-ID: <050.7f2e24fec51912de2714f29069ea99a7@avcodec.org> #3185: ffprobe do not handle HEVC correctly ------------------------------------+----------------------------------- Reporter: figgis | Owner: Type: defect | Status: new Priority: normal | Component: FFprobe Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by figgis): * version: unspecified => git-master -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 04:18:07 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 03:18:07 -0000 Subject: [FFmpeg-trac] #3185(avcodec:new): ffprobe do not handle HEVC correctly In-Reply-To: <035.7aa9727883108df1a1e67cce212e46b5@avcodec.org> References: <035.7aa9727883108df1a1e67cce212e46b5@avcodec.org> Message-ID: <050.c8f35c79994783fda3ecd77627c10619@avcodec.org> #3185: ffprobe do not handle HEVC correctly ------------------------------------+----------------------------------- Reporter: figgis | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: hevc | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * keywords: => hevc * component: FFprobe => avcodec -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 10:33:47 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 09:33:47 -0000 Subject: [FFmpeg-trac] #3186(undetermined:new): H264 decoding: truncated SEI Message-ID: <042.32c7a77c829e2d432530b1022cafd113@avcodec.org> #3186: H264 decoding: truncated SEI -------------------------------------+------------------------------------- Reporter: | Type: defect Underground78 | Priority: normal Status: new | Version: git- Component: | master undetermined | Blocked By: Keywords: | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: This [http://www.datafilehost.com/d/16fa50e6 sample] doesn't show any video when played with recent versions of ffplay. The log reports a log of truncated SEI. How to reproduce: {{{ > ffplay.exe Lilyhammer_sample.ts ffplay version N-58684-gf068aed Copyright (c) 2003-2013 the FFmpeg developers built on Nov 30 2013 22:01:46 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable- librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo- aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 21.102 / 55. 21.102 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [h264 @ 0253d080] SEI type 1 size 56 truncated at 53 Last message repeated 4 times [h264 @ 0253d080] SEI type 1 size 56 truncated at 53 Last message repeated 8 times ... [mpegts @ 0253cb40] decoding for stream 0 failed Input #0, mpegts, from 'Lilyhammer_sample.ts': Duration: 00:00:50.92, start: 4200.000000, bitrate: 9065 kb/s Program 1 Stream #0:0[0x1011]: Video: h264 (High) (HDMV / 0x564D4448), yuv420p(tv, bt709), 1280x720 [SAR 1:1 DAR 16:9], 50 fps, 50 tbr, 90k tbn, 100 tbc Stream #0:1[0x1100](rus): Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 448 kb/s Stream #0:2[0x1101](nor): Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 448 kb/s SDL_OpenAudio (6 channels): DirectSound CreateSoundBuffer: Invalid parameter SDL_OpenAudio (4 channels): DirectSound CreateSoundBuffer: Invalid parameter [h264 @ 053a7860] SEI type 1 size 56 truncated at 53 [h264 @ 06091b20] SEI type 1 size 56 truncated at 53 ... }}} Original report: https://trac.mpc-hc.org/ticket/3793 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 11:23:31 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 10:23:31 -0000 Subject: [FFmpeg-trac] #3186(avcodec:open): H264 decoding: truncated SEI In-Reply-To: <042.32c7a77c829e2d432530b1022cafd113@avcodec.org> References: <042.32c7a77c829e2d432530b1022cafd113@avcodec.org> Message-ID: <057.07712c3a0f3de956440b1ba5889dd2be@avcodec.org> #3186: H264 decoding: truncated SEI -------------------------------------+------------------------------------- Reporter: | Owner: Underground78 | Status: open Type: defect | Component: avcodec Priority: important | Resolution: Version: git-master | Blocked By: Keywords: h264 | Reproduced by developer: 1 regression | Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => h264 regression * priority: normal => important * status: new => open * component: undetermined => avcodec * reproduced: 0 => 1 Comment: Looks like a regression since 65c2fe71 related to ticket #2738 Workaround is to use {{{-flags2 showall}}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 11:43:25 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 10:43:25 -0000 Subject: [FFmpeg-trac] #3179(undetermined:open): Transcoding a transport stream with a timestamp wrap does not work with -copyts (was: Transcoding a "concatenated" video stream with -copyts does not work) In-Reply-To: <037.84af5b8ecf216bb61cc1e6fd75d6db88@avcodec.org> References: <037.84af5b8ecf216bb61cc1e6fd75d6db88@avcodec.org> Message-ID: <052.db8c055dccc4ca8d64a8723c6c43e1f2@avcodec.org> #3179: Transcoding a transport stream with a timestamp wrap does not work with -copyts -------------------------------------+------------------------------------- Reporter: aurelien | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: copyts | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * component: FFmpeg => undetermined * reproduced: 0 => 1 Comment: I uploaded a sample to http://samples.ffmpeg.org/ffmpeg- bugs/trac/ticket3179/ Transcoding drops the beginning of the video, leading to massive A/V desync. {{{ $ ffmpeg -copyts -i wrap.ts -qscale 10 out.ts ffmpeg version N-58684-gf068aed Copyright (c) 2000-2013 the FFmpeg developers built on Dec 1 2013 11:25:37 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 21.102 / 55. 21.102 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [mpeg2video @ 0x2e0cdc0] Invalid frame dimensions 0x0. Last message repeated 13 times [NULL @ 0x2e15560] start time is not set in estimate_timings_from_pts [NULL @ 0x2e16fa0] start time is not set in estimate_timings_from_pts [mpegts @ 0x2de7900] PES packet size mismatch Last message repeated 3 times [mpegts @ 0x2de7900] Could not find codec parameters for stream 5 (Unknown: none ([6][0][0][0] / 0x0006)): unknown codec Consider increasing the value for the 'analyzeduration' and 'probesize' options [mpegts @ 0x2de7900] Could not find codec parameters for stream 6 (Unknown: none ([5][0][0][0] / 0x0005)): unknown codec Consider increasing the value for the 'analyzeduration' and 'probesize' options Input #0, mpegts, from 'wrap.ts': Duration: 00:00:35.32, start: -21.053622, bitrate: 4750 kb/s Program 1001 Stream #0:0[0x7d1]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p(tv), 720x576 [SAR 64:45 DAR 16:9], max. 3500 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x7db](ger): Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stereo, s16p, 160 kb/s (clean effects) Stream #0:2[0x7dc](eng): Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stereo, s16p, 160 kb/s (clean effects) Stream #0:3[0x7f9](ger): Audio: ac3 ([6][0][0][0] / 0x0006), 48000 Hz, stereo, fltp, 448 kb/s (clean effects) Stream #0:4[0x835](ger): Subtitle: dvb_teletext ([6][0][0][0] / 0x0006) Stream #0:5[0x836]: Unknown: none ([6][0][0][0] / 0x0006) Stream #0:6[0x1f41]: Unknown: none ([5][0][0][0] / 0x0005) Program 1002 Program 1003 Program 1004 Program 1005 Program 1006 Program 1007 Program 1008 Program 1009 Program 1011 Program 1012 Program 1101 Program 1102 Program 1103 Program 1105 Program 1010 Please use -q:a or -q:v, -qscale is ambiguous Output #0, mpegts, to 'out.ts': Metadata: encoder : Lavf55.21.102 Stream #0:0: Video: mpeg2video, yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream #0:1(ger): Audio: mp2, 48000 Hz, stereo, s16, 128 kb/s (clean effects) Stream mapping: Stream #0:0 -> #0:0 (mpeg2video -> mpeg2video) Stream #0:1 -> #0:1 (mp2 -> mp2) Press [q] to stop, [?] for help [mpegts @ 0x2de7900] PES packet size mismatchme=00:00:07.88 bitrate=2109.2kbits/s dup=0 drop=495 [mpeg2video @ 0x2e0cdc0] invalid cbp -1 at 25 12 [mpeg2video @ 0x2e0cdc0] Warning MVs not available [mpeg2video @ 0x2e0cdc0] concealing 1080 DC, 1080 AC, 1080 MV errors in B frame [mp2 @ 0x2e0e840] incomplete frame Error while decoding stream #0:1: Invalid data found when processing input frame= 360 fps=0.0 q=10.0 Lsize= 3766kB time=00:00:14.36 bitrate=2148.2kbits/s dup=0 drop=495 video:2891kB audio:543kB subtitle:0 global headers:0kB muxing overhead 9.658197% }}} I cannot reproduce the problem with a bigger sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 13:56:23 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 12:56:23 -0000 Subject: [FFmpeg-trac] #3184(avformat:closed): sfd: de/muxing does not properly work for cri adx and ac3 In-Reply-To: <036.d900b9b995699645fc8e33308702f478@avcodec.org> References: <036.d900b9b995699645fc8e33308702f478@avcodec.org> Message-ID: <051.dd5e0d36f739bd904918cae2b4b488b2@avcodec.org> #3184: sfd: de/muxing does not properly work for cri adx and ac3 -------------------------------------+------------------------------------- Reporter: Soukyuu | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: mpegps | Blocked By: sofdec ac3 | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: mpegps => mpegps sofdec ac3 * status: open => closed * resolution: => fixed Comment: Decoding AC-3 should be fixed in 4ba90392 thank you for the sample! Regarding encoding: Consider opening an enhancement request, but please explain the use-case. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 13:58:21 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 12:58:21 -0000 Subject: [FFmpeg-trac] #3181(avformat:closed): default to opus codec for *.opus output files In-Reply-To: <037.1d2b1c588a6e734d9c1ea38039f9f335@avcodec.org> References: <037.1d2b1c588a6e734d9c1ea38039f9f335@avcodec.org> Message-ID: <052.9adc14de66bf96682f54f337475cffbe@avcodec.org> #3181: default to opus codec for *.opus output files -------------------------------------+------------------------------------- Reporter: LinAGKar | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: opus ogg | Blocked By: speex | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Should be fixed in 2ccc6ff0 - thank you for the report! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 15:03:20 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 14:03:20 -0000 Subject: [FFmpeg-trac] #3187(undetermined:new): Please add SFD muxing Message-ID: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> #3187: Please add SFD muxing -------------------------------------+------------------------------------- Reporter: Soukyuu | Type: Status: new | enhancement Component: | Priority: normal undetermined | Version: git- Keywords: | master Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Greetings. I am part of a fan project which attempts to fix the broken localization of the Ar tonelico 2 game. The official Western localization was sloppy and introduced game breaking bugs, which even made the game hang up on a boss encounter. Those are things our project is attempting to fix. Part of it involves adding translations to the videos in form of subtitles (the game includes both the English and the Japanese voice tracks). There is a tool floating around the net which allows to mux m1v+adx, but none which would allow muxing m1v+adx+ac3 into sfd. Having fixed almost everything except for the 5.1 opening sequence (which was left completely untranslated in the Western versions), I'd really appreciate if FFMPEG added sfd muxing functionality. The patch will require people to have already have a copy of the game as it will be distributed as .xdelta for the iso only. There are other games which use cri's adx/sofdec package, so it wouldn't only be for this single game, but for us, this is the main reason at the moment. (On another note, thanks for fixing the demuxing bug so fast) I can provide samples if needed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 16:13:40 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 15:13:40 -0000 Subject: [FFmpeg-trac] #3187(avformat:new): Please add SFD muxing In-Reply-To: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> References: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> Message-ID: <051.98b47e287f2db77f71cef3c97cd01cda@avcodec.org> #3187: Please add SFD muxing -------------------------------------+------------------------------------- Reporter: Soukyuu | Owner: Type: enhancement | Status: new Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: sofdec | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => mpegps sofdec * priority: normal => wish * component: undetermined => avformat Comment: What is the existing tool? Is it open-source? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 16:32:22 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 15:32:22 -0000 Subject: [FFmpeg-trac] #3187(avformat:new): Please add SFD muxing In-Reply-To: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> References: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> Message-ID: <051.38584a5b81365bc3a8bd88b4125985d7@avcodec.org> #3187: Please add SFD muxing -------------------------------------+------------------------------------- Reporter: Soukyuu | Owner: Type: enhancement | Status: new Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: sofdec | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by Soukyuu): From what I see, it's a wrapper around the .dll ripped out of SEGA's movie creator, so sadly, it's not. The tool is called Sfdmux, comes as an .exe and the corresponding .dll -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 17:24:53 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 16:24:53 -0000 Subject: [FFmpeg-trac] #3187(avformat:open): Please add SFD muxing In-Reply-To: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> References: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> Message-ID: <051.833d72b399b43f7c802f9980cb4ea9f4@avcodec.org> #3187: Please add SFD muxing -------------------------------------+------------------------------------- Reporter: Soukyuu | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: sofdec | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 1 19:32:15 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 01 Dec 2013 18:32:15 -0000 Subject: [FFmpeg-trac] #3180(avformat:open): flv demuxer does not decode the aac audio properly In-Reply-To: <037.57e6a24978880d4e54f7e8047d7817b7@avcodec.org> References: <037.57e6a24978880d4e54f7e8047d7817b7@avcodec.org> Message-ID: <052.e11ecc1ba6eec992c78f0e4a03c2c533@avcodec.org> #3180: flv demuxer does not decode the aac audio properly ------------------------------------+------------------------------------ Reporter: merbanan | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: flv aac | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by merbanan): diff --git a/libavcodec/mpeg4audio.c b/libavcodec/mpeg4audio.c index 0fb9b96..2f29408 100644 --- a/libavcodec/mpeg4audio.c +++ b/libavcodec/mpeg4audio.c @@ -125,8 +125,8 @@ int avpriv_mpeg4audio_get_config(MPEG4AudioConfig *c, const uint8_t *buf, c->ext_object_type = get_object_type(&gb); if (c->ext_object_type == AOT_SBR && (c->sbr = get_bits1(&gb)) == 1) c->ext_sample_rate = get_sample_rate(&gb, &c->ext_sampling_index); - if (get_bits_left(&gb) > 11 && get_bits(&gb, 11) == 0x548) - c->ps = get_bits1(&gb); +// if (get_bits_left(&gb) > 11 && get_bits(&gb, 11) == 0x548) +// c->ps = get_bits1(&gb); break; } else get_bits1(&gb); // skip 1 bit This patch makes the file decode properly. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 01:30:36 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 00:30:36 -0000 Subject: [FFmpeg-trac] #3167(avformat:new): Creating/Remuxing AVI files results in unplayable AVI for hardware player Philips DVP640 In-Reply-To: <037.07a0ac713855bc20dc9c70773a6982a9@avcodec.org> References: <037.07a0ac713855bc20dc9c70773a6982a9@avcodec.org> Message-ID: <052.cbdbcffce2e21ea8349b47d6322efdf7@avcodec.org> #3167: Creating/Remuxing AVI files results in unplayable AVI for hardware player Philips DVP640 ------------------------------------+------------------------------------ Reporter: userid99 | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: avi | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by userid99): Yes, output file "out.avi" (attached) plays just fine. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 02:54:28 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 01:54:28 -0000 Subject: [FFmpeg-trac] #3186(avcodec:closed): H264 decoding: truncated SEI In-Reply-To: <042.32c7a77c829e2d432530b1022cafd113@avcodec.org> References: <042.32c7a77c829e2d432530b1022cafd113@avcodec.org> Message-ID: <057.f937b098013cf027c198a247988dc457@avcodec.org> #3186: H264 decoding: truncated SEI -------------------------------------+------------------------------------- Reporter: | Owner: Underground78 | Status: closed Type: defect | Component: avcodec Priority: important | Resolution: fixed Version: git-master | Blocked By: Keywords: h264 | Reproduced by developer: 1 regression | Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Michael in e3d7a397 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 08:25:53 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 07:25:53 -0000 Subject: [FFmpeg-trac] #3165(undetermined:closed): Kannada language sub-titles are not rendered correctly. In-Reply-To: <035.b256015df63a6034203b1b9688e8fcf6@avcodec.org> References: <035.b256015df63a6034203b1b9688e8fcf6@avcodec.org> Message-ID: <050.8deb83a1fb4c62c9ff8a63eb21107880@avcodec.org> #3165: Kannada language sub-titles are not rendered correctly. -------------------------------------+------------------------------------- Reporter: nagesh | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: sub srt | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by nagesh): I am also able to confirm that, with harfbuzz support in libass, I am able to see the rendering correctly. I have attached my 'notes' when trying to add this support. These notes are an extension of the [https://trac.ffmpeg.org/wiki/UbuntuCompilationGuide Ubuntu compilation guide] in the wiki. Just in case, some one else is interested in replicating the same. Once again, many thanks for your help ! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 11:25:15 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 10:25:15 -0000 Subject: [FFmpeg-trac] #3145(FFmpeg:new): Header inconsistencies for a certain range of video bit rate In-Reply-To: <036.13010cd7329da63f62b951e9df582d56@avcodec.org> References: <036.13010cd7329da63f62b951e9df582d56@avcodec.org> Message-ID: <051.2bab0df695b9676d75ea58d8e6065734@avcodec.org> #3145: Header inconsistencies for a certain range of video bit rate -------------------------------------+------------------------------------- Reporter: olitoli | Owner: Type: defect | Status: new Priority: normal | Component: FFmpeg Version: 2.1 | Resolution: Keywords: xvid avi | Blocked By: video bitrate | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): To make this a valid ticket, please test current git head and please provide the command line together with the complete, uncut console output for the failing command (that is the command that produces the file that cannot be played). Is the problem only reproducible using an external library (libxvid) or also with the native ASP encoder: {{{-vcodec mpeg4}}} And please test if this isn't just related to the filesize: {{{ $ ffmpeg -f lavfi -i testsrc=s=720x576 -qscale 2 -fs 900M outhighbitrate.avi $ ffmpeg -f lavfi -i testsrc=s=720x576 -qscale 20 -fs 2300M outlowbitrate.avi }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 11:31:27 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 10:31:27 -0000 Subject: [FFmpeg-trac] #3141(undetermined:open): ffprobe doesn't show the maximum number of reference frames In-Reply-To: <035.b0b3d080f4b69b0576cfc2f07205c304@avcodec.org> References: <035.b0b3d080f4b69b0576cfc2f07205c304@avcodec.org> Message-ID: <050.d79f8966bb88b658806448f7c3b3d4fc@avcodec.org> #3141: ffprobe doesn't show the maximum number of reference frames -------------------------------------+------------------------------------- Reporter: julian | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | undetermined Keywords: h264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => h264 * priority: normal => wish * version: 2.1 => git-master * status: new => open * type: defect => enhancement -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 11:59:55 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 10:59:55 -0000 Subject: [FFmpeg-trac] #3188(avcodec:new): vp9 crash (fuzzed input, MT regression) Message-ID: <035.8877fa649ff5661356c4d468d7943ca3@avcodec.org> #3188: vp9 crash (fuzzed input, MT regression) -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: important | Component: avcodec Version: git- | Keywords: vp9 master | regression Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- {{{ ? ./ffmpeg -threads 1 -f ivf -c:v vp9 -i ~/samples/vp9/fuzzed0.ivf -f null - ffmpeg version N-58699-ge3d7a39 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 2 2013 11:55:32 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-x11grab --enable-libvorbis --samples=/home/ux/fate-samples --enable-libfreetype --enable-libvpx --cpu=native --cc='ccache cc' libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Truncating packet of size 402024711 to 1663093 Input #0, ivf, from '/home/ux/samples/vp9/fuzzed0.ivf': Duration: N/A, start: 0.000001, bitrate: N/A Stream #0:0: Video: vp9 (vP[25]0 / 0x30195076), yuv420p, 256x244, 0k tbr, 0k tbn, 0k tbc Output #0, null, to 'pipe:': Metadata: encoder : Lavf55.22.100 Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 256x244, q=2-31, 200 kb/s, 90k tbn, 0k tbc Stream mapping: Stream #0:0 -> #0:0 (vp9 -> rawvideo) Press [q] to stop, [?] for help zsh: segmentation fault (core dumped) ./ffmpeg -threads 1 -f ivf -c:v vp9 -i ~/samples/vp9/fuzzed0.ivf -f null - }}} {{{ ? gdb --args ./ffmpeg_g -threads 1 -f ivf -c:v vp9 -i ~/samples/vp9/fuzzed0.ivf -f null - GNU gdb (GDB) 7.6.1 Copyright (C) 2013 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-unknown-linux-gnu". For bug reporting instructions, please see: ... Reading symbols from /home/ux/src/ffmpeg/ffmpeg_g...done. (gdb) r Starting program: /home/ux/src/ffmpeg/./ffmpeg_g -threads 1 -f ivf -c:v vp9 -i /home/ux/samples/vp9/fuzzed0.ivf -f null - warning: no loadable sections found in added symbol-file system-supplied DSO at 0x7ffff7ffa000 warning: Could not load shared library symbols for linux-vdso.so.1. Do you need "set solib-search-path" or "set sysroot"? [Thread debugging using libthread_db enabled] Using host libthread_db library "/usr/lib/libthread_db.so.1". ffmpeg version N-58699-ge3d7a39 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 2 2013 11:55:32 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-x11grab --enable-libvorbis --samples=/home/ux/fate-samples --enable-libfreetype --enable-libvpx --cpu=native --cc='ccache cc' libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Truncating packet of size 402024711 to 1663093 Input #0, ivf, from '/home/ux/samples/vp9/fuzzed0.ivf': Duration: N/A, start: 0.000001, bitrate: N/A Stream #0:0: Video: vp9 (vP[25]0 / 0x30195076), yuv420p, 256x244, 0k tbr, 0k tbn, 0k tbc [New Thread 0x7ffff39a3700 (LWP 29856)] [New Thread 0x7ffff31a2700 (LWP 29857)] [New Thread 0x7ffff29a1700 (LWP 29858)] [New Thread 0x7ffff21a0700 (LWP 29859)] [New Thread 0x7ffff199f700 (LWP 29860)] Output #0, null, to 'pipe:': Metadata: encoder : Lavf55.22.100 Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 256x244, q=2-31, 200 kb/s, 90k tbn, 0k tbc Stream mapping: Stream #0:0 -> #0:0 (vp9 -> rawvideo) Press [q] to stop, [?] for help Program received signal SIGSEGV, Segmentation fault. 0x00007ffff4a3aa20 in __memcpy_sse2_unaligned () from /usr/lib/libc.so.6 (gdb) bt #0 0x00007ffff4a3aa20 in __memcpy_sse2_unaligned () from /usr/lib/libc.so.6 #1 0x00000000009cd0b1 in vp9_alloc_frame (f=0x16c4b18, ctx=0x16c3540) at libavcodec/vp9.c:268 #2 vp9_decode_frame (ctx=0x16c3540, frame=0x16b6920, got_frame=0x7fffffffe1fc, pkt=) at libavcodec/vp9.c:3512 #3 0x0000000000947e30 in avcodec_decode_video2 (avctx=0x16c3540, picture=picture at entry=0x16b6920, got_picture_ptr=got_picture_ptr at entry=0x7fffffffe1fc, avpkt=avpkt at entry=0x7fffffffe480) at libavcodec/utils.c:2064 #4 0x00000000004787b3 in decode_video (ist=ist at entry=0x16c39a0, pkt=pkt at entry=0x7fffffffe480, got_output=got_output at entry=0x7fffffffe1fc) at ffmpeg.c:1695 #5 0x000000000046639a in output_packet (pkt=0x7fffffffe420, ist=0x16c39a0) at ffmpeg.c:1908 #6 process_input (file_index=) at ffmpeg.c:3216 #7 transcode_step () at ffmpeg.c:3312 #8 transcode () at ffmpeg.c:3364 #9 main (argc=, argv=) at ffmpeg.c:3544 (gdb) }}} {{{ 76bd878d959c79ef17ed90cc7d13dffea9327ee2 is the first bad commit commit 76bd878d959c79ef17ed90cc7d13dffea9327ee2 Author: Ronald S. Bultje Date: Sat Nov 30 09:08:54 2013 -0500 vp9: add a 2-pass decoding mode, and add frame-mt support. For a random 1080p sample, decoding time went from 9.7sec (1 threads) to 6.0sec (2 threads) and 5.2sec (4 threads) in 2-pass decoding mode. I don't have any samples that use the parallelmode feature, but the gains should be higher. }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 12:00:20 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 11:00:20 -0000 Subject: [FFmpeg-trac] #3133(undetermined:new): Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC In-Reply-To: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> References: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> Message-ID: <049.df455c0bab16428549662bef76069310@avcodec.org> #3133: Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC -------------------------------------+------------------------------------- Reporter: EricV | Owner: Type: defect | Status: new Priority: important | Component: Version: git-master | undetermined Keywords: vdpau | Resolution: regression | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ordroid): Short update: I've bisected the problem down to this range (five commits). 50fb8c is known good and 66056f is bad. Will continue the search, but may take a couple of days before I have time again. Maybe someone can spot the error in this 650 line VDPAU diff :) {{{50fb8c1114b9c2b7d299cbc17a18a457d12069a8..66056f74a1e9c1baa910841e0c966cb3b74f0634}}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 12:07:28 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 11:07:28 -0000 Subject: [FFmpeg-trac] #3133(undetermined:new): Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC In-Reply-To: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> References: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> Message-ID: <049.ff9c425acf8fbd5218b16d85cd89ae1e@avcodec.org> #3133: Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC -------------------------------------+------------------------------------- Reporter: EricV | Owner: Type: defect | Status: new Priority: important | Component: Version: git-master | undetermined Keywords: vdpau | Resolution: regression | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Thank you! You only have to do one more test to know the offending commit: If you test 9547e3ee or c3b29023, we will know which commit introduced the regression. (I usually never guess, I did it in this frame because of the continuous flaming and you know how it ended...) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 12:08:17 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 11:08:17 -0000 Subject: [FFmpeg-trac] #3188(avcodec:new): vp9 crash (fuzzed input, MT regression) In-Reply-To: <035.8877fa649ff5661356c4d468d7943ca3@avcodec.org> References: <035.8877fa649ff5661356c4d468d7943ca3@avcodec.org> Message-ID: <050.a5a712dc6b4bc682d8d450b948571556@avcodec.org> #3188: vp9 crash (fuzzed input, MT regression) -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: vp9 | Blocked By: regression crash SIGSEGV | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: vp9 regression => vp9 regression crash SIGSEGV -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 12:11:11 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 11:11:11 -0000 Subject: [FFmpeg-trac] #3133(undetermined:new): Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC In-Reply-To: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> References: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> Message-ID: <049.07538ef8969c1b6722a18d6670045432@avcodec.org> #3133: Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC -------------------------------------+------------------------------------- Reporter: EricV | Owner: Type: defect | Status: new Priority: important | Component: Version: git-master | undetermined Keywords: vdpau | Resolution: regression | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Just test c3b29023 - the other commits are mostly cosmetic. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 12:52:04 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 11:52:04 -0000 Subject: [FFmpeg-trac] #3133(undetermined:new): Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC In-Reply-To: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> References: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> Message-ID: <049.5c21d080f1009512c6cbaa1a73e3cb84@avcodec.org> #3133: Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC -------------------------------------+------------------------------------- Reporter: EricV | Owner: Type: defect | Status: new Priority: important | Component: Version: git-master | undetermined Keywords: vdpau | Resolution: regression | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ordroid): c3b29023 is bad and git bisect claims 2852740 as the culprit. Will stay on 549294fbb or thereabout until further notice :) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 13:49:37 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 12:49:37 -0000 Subject: [FFmpeg-trac] #3133(avcodec:open): Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC In-Reply-To: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> References: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> Message-ID: <049.158b8fb1673b7c999947499e643a734a@avcodec.org> #3133: Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC -------------------------------------+------------------------------------- Reporter: EricV | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: vdpau | Blocked By: regression | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * component: undetermined => avcodec -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 15:05:28 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 14:05:28 -0000 Subject: [FFmpeg-trac] #3133(avcodec:open): Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC In-Reply-To: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> References: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> Message-ID: <049.e40b14934a6ad2897bdef054decb8af5@avcodec.org> #3133: Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC -------------------------------------+------------------------------------- Reporter: EricV | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: vdpau | Blocked By: regression | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:49 ordroid]: > Will stay on 549294fbb or thereabout until further notice :) A significantly less buggy version is for example 50fb8c11 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 15:45:43 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 14:45:43 -0000 Subject: [FFmpeg-trac] #3133(avcodec:open): Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC In-Reply-To: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> References: <034.499996d7291778d6aaf432a91c019e51@avcodec.org> Message-ID: <049.cf97e18be84c7c81c814e3176f3ed3f8@avcodec.org> #3133: Incompatibilities beween ffmpeg 2.0.2 and 2.1 exposed via XBMC -------------------------------------+------------------------------------- Reporter: EricV | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: vdpau | Blocked By: regression | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ordroid): Already on 50fb8c11 actually. Decided to just go for the last known good commit instead of fighting with the build (as with some of the bisecting points..). Considering my work here done for now, but I'm happy to test any patches. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 21:42:27 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 20:42:27 -0000 Subject: [FFmpeg-trac] #3189(undetermined:new): video audio recording, A-V drift Message-ID: <035.5e8612718c8506167964cb4a6c4ab49e@avcodec.org> #3189: video audio recording, A-V drift -------------------------------------+------------------------------------- Reporter: unknow | Type: defect Status: new | Priority: wish Component: | Version: git- undetermined | master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Hello, video/audio sync drift while doing real time recording with mp4 or mkv while with ffm it's totaly fine {{{ ffmpeg -re -f alsa -i default -f x11grab -r 25 -s 1152x864 -i :0.0 -acodec libfaac -vcodec libx264 -preset superfast -threads 1 ~/rec.mkv # or .mp4 }}} (the -re flags isn't needed to reproduce, in #615, starting at comment 23, i tested with other audio/video codec) the same commande with .ffm output make the audio/video in sync convert the .ffm back to mkv don't make the video/audio go out of sync this isn't realy important to me since i can record in .ffm and remux in mkv or other if needed {{{ ffmpeg version N-42597-g7f11c53 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 1 2013 18:51:08 with gcc 4.8 (Debian 4.8.2-1) configuration: --enable-gpl --enable-version3 --enable-nonfree --enable- shared --enable-gnutls --enable-fontconfig --enable-libmp3lame --enable- libfreetype --enable-libfaac --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libtheora --enable-libvo-aacenc --enable- libvorbis --enable-libvpx --enable-libx264 --enable-openssl --enable- x11grab --enable-avresample libavutil 52. 54.100 / 52. 54.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 21.101 / 55. 21.101 libavdevice 55. 5.100 / 55. 5.100 libavfilter 3. 91.100 / 3. 91.100 libavresample 1. 1. 0 / 1. 1. 0 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 }}} thanks for reading and maybe looking into it, i will maybe do some more testing if i have the time. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 21:58:19 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 20:58:19 -0000 Subject: [FFmpeg-trac] #3190(avfilter:new): vf_pad/ff_fill_rectangle corrupts memory and crashes Message-ID: <035.607a7d50a0c3fe21817e34149deebf3f@avcodec.org> #3190: vf_pad/ff_fill_rectangle corrupts memory and crashes ----------------------------------+-------------------------------------- Reporter: MarkZV | Type: defect Status: new | Priority: normal Component: avfilter | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+-------------------------------------- Memory is corrupted by the followed command: {{{ $ ffmpeg -f lavfi -i smptehdbars -vf "pad=320:960:0:240,crop=w=320:h=240:x=0:y=if(lt(t\,0)\,240\,if(lt(t\,2)\,240-64*t\,112)),pad=320:1080:0:120" -f null -t 2.5 - ffmpeg version N-58712-ga6c455c Copyright (c) 2000-2013 the FFmpeg developers built on Dec 2 2013 12:01:53 with gcc 4.8.2 (MacPots gcc48 4.8.2_0) configuration: --enable-swscale --enable-avfilter --cc=/opt/local/bin /gcc-mp-4.8 --arch=x86_64 --enable-yasm --enable-debug=3 --disable- optimizations --disable-stripping --assert-level=2 --enable-memory- poisoning libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 Input #0, lavfi, from 'smptehdbars': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Output #0, null, to 'pipe:': Metadata: encoder : Lavf55.22.100 Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 320x1080 [SAR 1:1 DAR 8:27], q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (rawvideo -> rawvideo) Press [q] to stop, [?] for help Segmentation fault $ }}} {{{ Program received signal EXC_BAD_ACCESS, Could not access memory. Reason: KERN_INVALID_ADDRESS at address: 0x0000000101ad2000 0x00007fffffe008b7 in __memcpy () (gdb) bt #0 0x00007fffffe008b7 in __memcpy () #1 0x0000000100052b22 in __inline_memcpy_chk (__dest=0x101ad1f40, __src=0x101aaa800, __len=320) at secure/_string.h:58 #2 0x0000000100054026 in ff_fill_rectangle (draw=0x102b00408, color=0x102b00438, dst=0x102b02ca0, dst_linesize=0x102b02ce0, dst_x=0, dst_y=360, w=320, h=720) at libavfilter/drawutils.c:276 #3 0x000000010008a95d in filter_frame (inlink=0x102b00ac0, in=0x102b02ca0) at libavfilter/vf_pad.c:330 #4 0x000000010004bf45 in ff_filter_frame_framed (link=0x102b00ac0, frame=0x102b02ca0) at libavfilter/avfilter.c:1072 #5 0x000000010004c49f in ff_filter_frame (link=0x102b00ac0, frame=0x102b02ca0) at libavfilter/avfilter.c:1147 #6 0x000000010006b733 in filter_frame (link=0x102b00780, frame=0x102b02ca0) at libavfilter/vf_crop.c:297 #7 0x000000010004bf45 in ff_filter_frame_framed (link=0x102b00780, frame=0x102b02ca0) at libavfilter/avfilter.c:1072 #8 0x000000010004c49f in ff_filter_frame (link=0x102b00780, frame=0x102b02ca0) at libavfilter/avfilter.c:1147 #9 0x000000010008aae1 in filter_frame (inlink=0x102b00e20, in=0x0) at libavfilter/vf_pad.c:355 #10 0x000000010004bf45 in ff_filter_frame_framed (link=0x102b00e20, frame=0x102b02a00) at libavfilter/avfilter.c:1072 #11 0x000000010004c49f in ff_filter_frame (link=0x102b00e20, frame=0x102b02a00) at libavfilter/avfilter.c:1147 #12 0x0000000100052aa0 in request_frame (link=0x102b00e20) at libavfilter/buffersrc.c:491 #13 0x0000000100051e52 in av_buffersrc_add_frame_internal (ctx=0x102b00d00, frame=0x102b024e0, flags=4) at libavfilter/buffersrc.c:170 #14 0x0000000100051b73 in av_buffersrc_add_frame_flags (ctx=0x102b00d00, frame=0x102b024e0, flags=4) at libavfilter/buffersrc.c:107 #15 0x000000010001cdfa in decode_video (ist=0x1028010c0, pkt=0x7fff5fbfeba0, got_output=0x7fff5fbfec0c) at ffmpeg.c:1778 #16 0x000000010001d63b in output_packet (ist=0x1028010c0, pkt=0x7fff5fbfed90) at ffmpeg.c:1908 #17 0x0000000100022f3e in process_input (file_index=0) at ffmpeg.c:3216 #18 0x00000001000232a2 in transcode_step () at ffmpeg.c:3312 #19 0x00000001000233bc in transcode () at ffmpeg.c:3364 #20 0x0000000100023908 in main (argc=12, argv=0x7fff5fbff278) at ffmpeg.c:3544 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 22:05:50 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 21:05:50 -0000 Subject: [FFmpeg-trac] #3191(undetermined:new): Add support for G722.1 Message-ID: <036.633ed039f1131d2169104e7def449007@avcodec.org> #3191: Add support for G722.1 -------------------------------------+------------------------------------- Reporter: psc1963 | Type: Status: new | enhancement Component: | Priority: wish undetermined | Version: Keywords: | unspecified Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- I would like to be able to convert a G722.1 RTP audio stream to wav format for listening purposes, but this wideband ITU codec is currently not supported in ffmpeg. I would love to see this supported in a future release! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 22:48:53 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 21:48:53 -0000 Subject: [FFmpeg-trac] #3189(undetermined:new): video audio recording, A-V drift In-Reply-To: <035.5e8612718c8506167964cb4a6c4ab49e@avcodec.org> References: <035.5e8612718c8506167964cb4a6c4ab49e@avcodec.org> Message-ID: <050.35ad8526421b8125535a01325ea778a2@avcodec.org> #3189: video audio recording, A-V drift -------------------------------------+------------------------------------- Reporter: unknow | Owner: Type: defect | Status: new Priority: wish | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Are external libraries (libx264, libfaac) necessary to reproduce the problem or does it also happen with {{{-vcodec mpeg4 -acodec aac -strict -2}}}? To make this a valid ticket, please provide your command line together with the complete, uncut console output. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 23:32:59 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 22:32:59 -0000 Subject: [FFmpeg-trac] #3191(avcodec:new): Add support for G722.1 In-Reply-To: <036.633ed039f1131d2169104e7def449007@avcodec.org> References: <036.633ed039f1131d2169104e7def449007@avcodec.org> Message-ID: <051.e5b5613b65df698fe47efa164915f06c@avcodec.org> #3191: Add support for G722.1 -------------------------------------+----------------------------------- Reporter: psc1963 | Owner: Type: enhancement | Status: new Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Changes (by cehoyos): * version: unspecified => git-master * component: undetermined => avcodec Comment: Please provide sample(s). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 2 23:48:48 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 22:48:48 -0000 Subject: [FFmpeg-trac] #3191(avcodec:new): Add support for G722.1 In-Reply-To: <036.633ed039f1131d2169104e7def449007@avcodec.org> References: <036.633ed039f1131d2169104e7def449007@avcodec.org> Message-ID: <051.3d8eac173ea26e07800f787479bc2db0@avcodec.org> #3191: Add support for G722.1 -------------------------------------+----------------------------------- Reporter: psc1963 | Owner: Type: enhancement | Status: new Priority: wish | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by psc1963): Attached a file containing the RTP payload for a G722.1 stream at 20 ms packetizations. If a sample including the RTP headers is needed, I'll be glad to attach it. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 00:00:22 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 02 Dec 2013 23:00:22 -0000 Subject: [FFmpeg-trac] #3190(avfilter:open): vf_pad/ff_fill_rectangle corrupts memory and crashes In-Reply-To: <035.607a7d50a0c3fe21817e34149deebf3f@avcodec.org> References: <035.607a7d50a0c3fe21817e34149deebf3f@avcodec.org> Message-ID: <050.16edae94ed10f3d96086987f93477ef0@avcodec.org> #3190: vf_pad/ff_fill_rectangle corrupts memory and crashes -------------------------------------+------------------------------------- Reporter: MarkZV | Owner: Type: defect | Status: open Priority: important | Component: avfilter Version: git-master | Resolution: Keywords: crash | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => crash regression * priority: normal => important * status: new => open * reproduced: 0 => 1 Comment: Regression since b077d8d9 {{{ ==20243== Invalid write of size 8 ==20243== at 0x4C2C55D: memcpy@@GLIBC_2.14 (in /usr/lib64/valgrind /vgpreload_memcheck-amd64-linux.so) ==20243== by 0x4EBF7D: ff_fill_rectangle (drawutils.c:276) ==20243== by 0x4BB2E7: filter_frame (vf_pad.c:330) ==20243== by 0x489F45: ff_filter_frame_framed (avfilter.c:1072) ==20243== by 0x48B008: ff_filter_frame (avfilter.c:1147) ==20243== by 0x489F45: ff_filter_frame_framed (avfilter.c:1072) ==20243== by 0x48B008: ff_filter_frame (avfilter.c:1147) ==20243== by 0x4BB1E2: filter_frame (vf_pad.c:355) ==20243== by 0x489F45: ff_filter_frame_framed (avfilter.c:1072) ==20243== by 0x48B008: ff_filter_frame (avfilter.c:1147) ==20243== by 0x48F0C1: request_frame (buffersrc.c:491) ==20243== by 0x48F321: av_buffersrc_add_frame_internal (buffersrc.c:170) ==20243== Address 0x7764138 is not stack'd, malloc'd or (recently) free'd }}} Reverting b077d8d9 only for libavfilter/vf_crop.c fixes the crash. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 06:32:06 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 05:32:06 -0000 Subject: [FFmpeg-trac] #3192(undetermined:new): Dropped Frames With Overlay Filter Message-ID: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> #3192: Dropped Frames With Overlay Filter -------------------------------------+------------------------------------- Reporter: ian_m | Type: defect Status: new | Priority: normal Component: | Version: git- undetermined | master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Using the overlay filter to overlay video from a webcam onto x11grab causes many dropped frames. The frames seem to come in short bursts followed by a large number of dropped frames. This is easily seen by inserting showinfo into the x11grab stream before it is sent to the overlay filter. The attached file shows this behaviour. If the overlay filter isn't used, the frames appear to have approximately the correct timestamps as shown in the second attachment. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 08:04:32 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 07:04:32 -0000 Subject: [FFmpeg-trac] #3193(undetermined:new): swr/aresample: invalid read with MP3 Message-ID: <035.cafe11bd4e29372658881f9bd5de16af@avcodec.org> #3193: swr/aresample: invalid read with MP3 -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: Version: git- | undetermined master | Keywords: swr Blocked By: | aresample Reproduced by developer: 0 | Blocking: | Analyzed by developer: 0 -------------------------------------+------------------------------------- {{{ ? ./ffmpeg -f lavfi -i aevalsrc=0 -t 5 silence.mp3 ffmpeg version N-58723-g0cc5011 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 3 2013 07:47:03 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-version3 --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable- libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable- x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable- libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --disable-runtime-cpudetect --enable-libcelt --enable-libopencv --enable-frei0r --enable-libcaca --enable-libiec61883 --enable-libopencore-amrwb --enable-libopencore-amrnb --enable-libopus --enable-libpulse --enable-libspeex --assert-level=2 --enable-libzmq --enable-libschroedinger libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, lavfi, from 'aevalsrc=0': Duration: N/A, start: 0.000000, bitrate: 2822 kb/s Stream #0:0: Audio: pcm_f64le, 44100 Hz, mono, dbl, 2822 kb/s Output #0, mp3, to 'silence.mp3': Metadata: TSSE : Lavf55.22.100 Stream #0:0: Audio: mp3 (libmp3lame), 44100 Hz, mono, s32p Stream mapping: Stream #0:0 -> #0:0 (pcm_f64le -> libmp3lame) Press [q] to stop, [?] for help size= 40kB time=00:00:05.01 bitrate= 64.7kbits/s video:0kB audio:39kB subtitle:0 global headers:0kB muxing overhead 0.562815% }}} {{{ ? valgrind ./ffmpeg_g -i silence.mp3 -ar 8000 -f null - ==1559== Memcheck, a memory error detector ==1559== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al. ==1559== Using Valgrind-3.9.0 and LibVEX; rerun with -h for copyright info ==1559== Command: ./ffmpeg_g -i silence.mp3 -ar 8000 -f null - ==1559== ffmpeg version N-58723-g0cc5011 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 3 2013 07:47:03 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-version3 --enable-fontconfig --enable-libfreetype --enable-libmp3lame --enable-libvorbis --enable- libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable- x11grab --enable-libopenjpeg --enable-libass --enable-libmodplug --enable- libv4l2 --cc=colorgcc --samples=/home/ubitux/fate-samples --prefix=/tmp/ffinstall --disable-runtime-cpudetect --enable-libcelt --enable-libopencv --enable-frei0r --enable-libcaca --enable-libiec61883 --enable-libopencore-amrwb --enable-libopencore-amrnb --enable-libopus --enable-libpulse --enable-libspeex --assert-level=2 --enable-libzmq --enable-libschroedinger libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, mp3, from 'silence.mp3': Metadata: encoder : Lavf55.22.100 Duration: 00:00:05.04, start: 0.000000, bitrate: 64 kb/s Stream #0:0: Audio: mp3, 44100 Hz, mono, s16p, 64 kb/s Output #0, null, to 'pipe:': Metadata: encoder : Lavf55.22.100 Stream #0:0: Audio: pcm_s16le, 8000 Hz, mono, s16, 128 kb/s Stream mapping: Stream #0:0 -> #0:0 (mp3 -> pcm_s16le) Press [q] to stop, [?] for help ==1559== Invalid read of size 16 ==1559== at 0xB4408D: swri_resample_int16_ssse3 (resample_template.c:122) ==1559== by 0xB446D9: multiple_resample (resample.c:321) ==1559== by 0xB3BBC4: resample (swresample.c:569) ==1559== by 0xB3C83F: swr_convert_internal.part.3 (swresample.c:681) ==1559== by 0xB3D163: swr_convert (swresample.c:769) ==1559== by 0x4EBD8C: filter_frame (af_aresample.c:202) ==1559== by 0x497526: ff_filter_frame_framed (avfilter.c:1072) ==1559== by 0x49968B: ff_filter_frame (avfilter.c:1147) ==1559== by 0x497526: ff_filter_frame_framed (avfilter.c:1072) ==1559== by 0x49968B: ff_filter_frame (avfilter.c:1147) ==1559== by 0x49DE91: request_frame (buffersrc.c:491) ==1559== by 0x49DBF4: av_buffersrc_add_frame_internal (buffersrc.c:170) ==1559== Address 0x1313b772 is 2,290 bytes inside a block of size 2,304 alloc'd ==1559== at 0x4C29D00: memalign (in /usr/lib/valgrind /vgpreload_memcheck-amd64-linux.so) ==1559== by 0x4C29E17: posix_memalign (in /usr/lib/valgrind /vgpreload_memcheck-amd64-linux.so) ==1559== by 0xB9E8F9: av_malloc (mem.c:94) ==1559== by 0xB90BA7: av_buffer_alloc (buffer.c:70) ==1559== by 0xB914CB: av_buffer_pool_get (buffer.c:305) ==1559== by 0x962A9E: avcodec_default_get_buffer2 (utils.c:597) ==1559== by 0x96342E: ff_get_buffer (utils.c:933) ==1559== by 0x86F6AA: mp_decode_frame (mpegaudiodec_template.c:1608) ==1559== by 0x86FC2D: decode_frame (mpegaudiodec_template.c:1684) ==1559== by 0x9652BE: avcodec_decode_audio4 (utils.c:2212) ==1559== by 0x4882AA: decode_audio (ffmpeg.c:1554) ==1559== by 0x472A92: main (ffmpeg.c:1905) ==1559== size=N/A time=00:00:05.04 bitrate=N/A video:0kB audio:78kB subtitle:0 global headers:0kB muxing overhead -100.027409% ==1559== ==1559== HEAP SUMMARY: ==1559== in use at exit: 6,169 bytes in 5 blocks ==1559== total heap usage: 4,690 allocs, 4,685 frees, 245,319,293 bytes allocated ==1559== ==1559== LEAK SUMMARY: ==1559== definitely lost: 6,024 bytes in 1 blocks ==1559== indirectly lost: 0 bytes in 0 blocks ==1559== possibly lost: 0 bytes in 0 blocks ==1559== still reachable: 145 bytes in 4 blocks ==1559== suppressed: 0 bytes in 0 blocks ==1559== Rerun with --leak-check=full to see details of leaked memory ==1559== ==1559== For counts of detected and suppressed errors, rerun with: -v ==1559== ERROR SUMMARY: 64 errors from 1 contexts (suppressed: 2 from 2) }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 08:08:22 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 07:08:22 -0000 Subject: [FFmpeg-trac] #3193(undetermined:new): swr/aresample: invalid read with MP3 In-Reply-To: <035.cafe11bd4e29372658881f9bd5de16af@avcodec.org> References: <035.cafe11bd4e29372658881f9bd5de16af@avcodec.org> Message-ID: <050.0b551b560edae0c373e51d2113fd6670@avcodec.org> #3193: swr/aresample: invalid read with MP3 -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: swr | Resolution: aresample | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ubitux): Also present in mmx2, no problem found with -ssse3 -mmx2. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 09:51:43 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 08:51:43 -0000 Subject: [FFmpeg-trac] #3190(avfilter:closed): vf_pad/ff_fill_rectangle corrupts memory and crashes In-Reply-To: <035.607a7d50a0c3fe21817e34149deebf3f@avcodec.org> References: <035.607a7d50a0c3fe21817e34149deebf3f@avcodec.org> Message-ID: <050.8ae1361ac9f0945a83a9f85b8dbd1bad@avcodec.org> #3190: vf_pad/ff_fill_rectangle corrupts memory and crashes -------------------------------------+------------------------------------- Reporter: MarkZV | Owner: Type: defect | Status: closed Priority: important | Component: avfilter Version: git-master | Resolution: fixed Keywords: crash | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Michael in 0cc5011f -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 09:52:49 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 08:52:49 -0000 Subject: [FFmpeg-trac] #3190(avfilter:closed): vf_pad/ff_fill_rectangle corrupts memory and crashes In-Reply-To: <035.607a7d50a0c3fe21817e34149deebf3f@avcodec.org> References: <035.607a7d50a0c3fe21817e34149deebf3f@avcodec.org> Message-ID: <050.65d145d5c5dbc6a2575134e48cb966ab@avcodec.org> #3190: vf_pad/ff_fill_rectangle corrupts memory and crashes -------------------------------------+------------------------------------- Reporter: MarkZV | Owner: Type: defect | Status: closed Priority: important | Component: avfilter Version: git-master | Resolution: fixed Keywords: pad crash | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: crash regression => pad crash regression -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 10:33:49 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 09:33:49 -0000 Subject: [FFmpeg-trac] #3192(undetermined:new): Dropped Frames With Overlay Filter In-Reply-To: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> References: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> Message-ID: <049.e77096a913fd996f854fb0d17ef5a17a@avcodec.org> #3192: Dropped Frames With Overlay Filter -------------------------------------+------------------------------------- Reporter: ian_m | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): What happens if you significantly decrease the x11grab resolution (640x480 or 400x200)? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 10:41:20 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 09:41:20 -0000 Subject: [FFmpeg-trac] #3192(undetermined:new): Dropped Frames With Overlay Filter In-Reply-To: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> References: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> Message-ID: <049.01a8a951bb27354da9b0e51c38fb9086@avcodec.org> #3192: Dropped Frames With Overlay Filter -------------------------------------+------------------------------------- Reporter: ian_m | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ian_m): I get the same behavior, even at 400x200. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 10:44:05 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 09:44:05 -0000 Subject: [FFmpeg-trac] #3192(undetermined:new): Dropped Frames With Overlay Filter In-Reply-To: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> References: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> Message-ID: <049.2d4120dd87d9aaf691170fb7c12e1389@avcodec.org> #3192: Dropped Frames With Overlay Filter -------------------------------------+------------------------------------- Reporter: ian_m | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ubitux): Wouldn't that be related to the nanosleep hack used to sync with the framerate? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 11:20:54 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 10:20:54 -0000 Subject: [FFmpeg-trac] #3192(undetermined:new): Dropped Frames With Overlay Filter In-Reply-To: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> References: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> Message-ID: <049.5390d4e27ecf500a18b01e1cb7102880@avcodec.org> #3192: Dropped Frames With Overlay Filter -------------------------------------+------------------------------------- Reporter: ian_m | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ian_m): I wrote the attached patch to make x11grab respect AVFMT_FLAGS_NONBLOCK but it didn't seem to fix the issue. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 12:01:07 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 11:01:07 -0000 Subject: [FFmpeg-trac] #3192(undetermined:new): Dropped Frames With Overlay Filter In-Reply-To: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> References: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> Message-ID: <049.ea9e90728ad3a2e5f6a8d18fe833571d@avcodec.org> #3192: Dropped Frames With Overlay Filter -------------------------------------+------------------------------------- Reporter: ian_m | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Is the problem also reproducible if you replace {{{-f x11grab -video_size 1680x1050 -framerate 30 -i :0.0}}} in your command line with {{{-f lavfi -i testsrc=s=1680x1050:r=30}}}? The following works fine here: {{{ $ ffmpeg -f x11grab -s 1920x1200 -i :0 -f v4l2 -s 320x176 -i /dev/video1 -filter_complex overlay -qscale 2 out.avi }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 12:15:27 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 11:15:27 -0000 Subject: [FFmpeg-trac] #3192(undetermined:new): Dropped Frames With Overlay Filter In-Reply-To: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> References: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> Message-ID: <049.b6ca45b7673dff7ddb96180b82085e42@avcodec.org> #3192: Dropped Frames With Overlay Filter -------------------------------------+------------------------------------- Reporter: ian_m | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ian_m): No, if I use the testsrc instead of x11grab it seems to work. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 13:10:28 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 12:10:28 -0000 Subject: [FFmpeg-trac] #3192(undetermined:new): Dropped Frames With Overlay Filter In-Reply-To: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> References: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> Message-ID: <049.89671249bc75403f06444798df8ac356@avcodec.org> #3192: Dropped Frames With Overlay Filter -------------------------------------+------------------------------------- Reporter: ian_m | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): > frame= 551 fps= 22 q=-1.0 Lsize= 3615kB time=00:00:24.63 bitrate=1202.2kbits/s As pointed out on the mailing list, this indicates the problem is also reproducible without overlay: Your system does not reach the requested frame rate. Try with overlay and a framerate of ~15. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 13:29:56 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 12:29:56 -0000 Subject: [FFmpeg-trac] #3192(undetermined:new): Dropped Frames With Overlay Filter In-Reply-To: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> References: <034.47e9d733a6a686c5e75c0f003d556b3d@avcodec.org> Message-ID: <049.25dc90b56cd0d229acd74f7984c41270@avcodec.org> #3192: Dropped Frames With Overlay Filter -------------------------------------+------------------------------------- Reporter: ian_m | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ian_m): Lowering the framerate does not seem to help. It seems that in the nonoverlay version, it takes a second or so for everything to initialize so the framerate x264 sees starts low and converges towards 30. In the overlay version the framerate is stuck at around 5-6 fps. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 15:30:28 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 14:30:28 -0000 Subject: [FFmpeg-trac] #2367(undetermined:closed): input_format / -pixel_format => libv4l2: error dequeuing buf: Resource temporarily unavailable In-Reply-To: <035.d2966d1bd63202a6b3b61ad910e68791@avcodec.org> References: <035.d2966d1bd63202a6b3b61ad910e68791@avcodec.org> Message-ID: <050.d8127a06806b343e77455e417e4964d0@avcodec.org> #2367: input_format / -pixel_format => libv4l2: error dequeuing buf: Resource temporarily unavailable -------------------------------------+------------------------------------- Reporter: MrNice | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: v4l2 | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * version: 1.1.3 => unspecified * resolution: => invalid Comment: The original issue was fixed at the time the ticket was opened, the other problem needs a separate ticket. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 17:07:09 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 16:07:09 -0000 Subject: [FFmpeg-trac] #3194(avcodec:new): valgrind leak on example package Message-ID: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> #3194: valgrind leak on example package ---------------------------------+---------------------------------- Reporter: andreyv | Type: defect Status: new | Priority: normal Component: avcodec | Version: 2.1.1 Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ---------------------------------+---------------------------------- Hi I've found valgrind leak when making and running valgrind on examples/decoding_encoding from latest 2.1 branch. A small example is in doc/example , called decoding_encoding Leak summary: ==22764== 56 bytes in 1 blocks are possibly lost in loss record 1 of 1 ==22764== at 0x402BE68: malloc (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so) ==22764== by 0x85753B0: av_malloc (in /usr/ffmpeg/build/LibFFMPEG/ffmpeg-2.1/doc/examples/decoding_encoding) ==22764== by 0x807A353: video_decode_example (decoding_encoding.c:107) ==22764== by 0x807A3FF: main (decoding_encoding.c:174) Actually, I have the same issue in my big application. I switched from 0.8 branch to 2.1 branch, changed API and most of the files decoded fine. However, I am working on a valgrind leak summary always in the same place for all codecs (actually it is start of decoder allocation). Why does it happening ? What I am doing wrong ? Could you help me with this issue ? How to reproduce: make 2.1 branch with or anything else , I tried many different configurations ./configure --prefix="/usr/ffmpeg/build/LibFFMPEG" --extra- ldflags="-L/usr/ffmpeg/build/LibFFMPEG/lib" --bindir="/usr/ffmpeg/build/LibFFMPEG/bin" --enable-pthreads --extra- libs="-ldl" --extra-cflags="-I/usr/ffmpeg/build/LibFFMPEG/include" --enable-nonfree --enable-gpl --disable-vaapi --disable-debug --disable- iconv --disable-doc --disable-encoders --enable-memalign-hack' 2. make examples from doc/examples 3 run valgrind --tool=memcheck --leak-check=full --show-reachable=yes --verbose --track-origins=yes ./decoding_encoding -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 3 18:30:43 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 03 Dec 2013 17:30:43 -0000 Subject: [FFmpeg-trac] #3194(avcodec:new): valgrind leak on example package In-Reply-To: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> References: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> Message-ID: <051.268b321b5c44758306256b422f3ed9db@avcodec.org> #3194: valgrind leak on example package ---------------------------------+----------------------------------- Reporter: andreyv | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: 2.1.1 | Resolution: Keywords: leak | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ---------------------------------+----------------------------------- Changes (by cehoyos): * keywords: => leak Comment: Is the leak reproducible with current FFmpeg git head? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 09:04:08 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 08:04:08 -0000 Subject: [FFmpeg-trac] #3193(undetermined:open): swr/aresample: invalid read with MP3 In-Reply-To: <035.cafe11bd4e29372658881f9bd5de16af@avcodec.org> References: <035.cafe11bd4e29372658881f9bd5de16af@avcodec.org> Message-ID: <050.779ba548626bdc3dda2ec7cec3c454b9@avcodec.org> #3193: swr/aresample: invalid read with MP3 -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: swr | Resolution: aresample | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 09:26:16 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 08:26:16 -0000 Subject: [FFmpeg-trac] #3195(avformat:new): Can't detect AAC audio in MPEG-PS format Message-ID: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> #3195: Can't detect AAC audio in MPEG-PS format ----------------------------------+--------------------------------------- Reporter: zoominla | Type: defect Status: new | Priority: normal Component: avformat | Version: unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+--------------------------------------- How to reproduce: C:\Users\zoominlazhu>D:\avTools\ffmpeg\ffmpeg-20131202\bin\ffmpeg.exe -i F:\vide o\problem\hang\kasi.mpg -vf scale=480:-1 -y e:\test.mp4 ffmpeg version N-58699-ge3d7a39 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 1 2013 22:01:48 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-av isynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enab le-iconv --enable-libass --enable-libbluray --enable-libcaca --enable- libfreetyp e --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --ena ble-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-l ibopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libsp eex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable- libvo-aa cenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable- libwavp ack --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [mp3 @ 041ccf60] Header missing Last message repeated 8 times [mpeg @ 02662de0] decoding for stream 1 failed [mpeg @ 02662de0] Could not find codec parameters for stream 1 (Audio: mp2, 0 ch annels, s16p): unspecified frame size Consider increasing the value for the 'analyzeduration' and 'probesize' options Input #0, mpeg, from 'F:\video\problem\hang\kasi.mpg': Duration: 00:00:31.10, start: 0.000000, bitrate: 19585 kb/s Stream #0:0[0x1e0]: Video: h264 (Main), yuv420p(tv), 1920x1080 [SAR 1:1 DAR 16:9], 30 fps, 30 tbr, 90k tbn, 60 tbc Stream #0:1[0x1c0]: Audio: mp2, 0 channels, s16p [libx264 @ 04fa2a60] using SAR=1/1 [libx264 @ 04fa2a60] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX [libx264 @ 04fa2a60] profile High, level 2.1 [libx264 @ 04fa2a60] 264 - core 140 r2377 1ca7bb9 - H.264/MPEG-4 AVC codec - Cop yleft 2003-2013 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deb lock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 m e_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chro ma_qp_offset=-2 threads=12 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scene cut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin =0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00 Output #0, mp4, to 'e:\test.mp4': Metadata: encoder : Lavf55.22.100 Stream #0:0: Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuv420p, 480x27 0 [SAR 1:1 DAR 16:9], q=-1--1, 15360 tbn, 30 tbc Stream mapping: Stream #0:0 -> #0:0 (h264 -> libx264) Press [q] to stop, [?] for help frame= 111 fps=0.0 q=29.0 size= 43kB time=00:00:01.76 bitrate= 199.9kbits/ frame= 184 fps=183 q=29.0 size= 409kB time=00:00:04.20 bitrate= 797.3kbits/ frame= 258 fps=171 q=29.0 size= 719kB time=00:00:06.66 bitrate= 883.1kbits/ frame= 340 fps=169 q=29.0 size= 1001kB time=00:00:09.40 bitrate= 872.3kbits/ frame= 412 fps=164 q=29.0 size= 1248kB time=00:00:11.80 bitrate= 866.2kbits/ frame= 490 fps=162 q=29.0 size= 1447kB time=00:00:14.40 bitrate= 823.4kbits/ frame= 563 fps=160 q=29.0 size= 1755kB time=00:00:16.83 bitrate= 854.1kbits/ frame= 636 fps=158 q=29.0 size= 2018kB time=00:00:19.26 bitrate= 858.2kbits/ frame= 711 fps=157 q=29.0 size= 2338kB time=00:00:21.76 bitrate= 880.0kbits/ frame= 796 fps=158 q=29.0 size= 2579kB time=00:00:24.60 bitrate= 858.7kbits/ frame= 903 fps=164 q=-1.0 Lsize= 2674kB time=00:00:30.03 bitrate= 729.3kbits /s video:2664kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.384850% [libx264 @ 04fa2a60] frame I:17 Avg QP:23.55 size: 12137 [libx264 @ 04fa2a60] frame P:463 Avg QP:26.69 size: 4597 [libx264 @ 04fa2a60] frame B:423 Avg QP:28.78 size: 927 [libx264 @ 04fa2a60] consecutive B-frames: 20.8% 49.4% 2.3% 27.5% [libx264 @ 04fa2a60] mb I I16..4: 10.2% 65.6% 24.2% [libx264 @ 04fa2a60] mb P I16..4: 2.0% 6.9% 3.2% P16..4: 32.7% 20.2% 12.6% 0.0% 0.0% skip:22.4% [libx264 @ 04fa2a60] mb B I16..4: 0.1% 0.3% 0.3% B16..8: 29.6% 6.6% 2.0% direct: 1.7% skip:59.4% L0:35.6% L1:50.3% BI:14.1% [libx264 @ 04fa2a60] 8x8 transform intra:58.7% inter:60.8% [libx264 @ 04fa2a60] coded y,uvDC,uvAC intra: 72.5% 80.0% 51.7% inter: 22.0% 19. 1% 4.0% [libx264 @ 04fa2a60] i16 v,h,dc,p: 38% 37% 6% 19% [libx264 @ 04fa2a60] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 20% 15% 5% 7% 9% 7% 8% 9% [libx264 @ 04fa2a60] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 26% 17% 13% 6% 8% 10% 6% 8% 6% [libx264 @ 04fa2a60] i8c dc,h,v,p: 46% 21% 25% 8% [libx264 @ 04fa2a60] Weighted P-Frames: Y:10.4% UV:5.6% [libx264 @ 04fa2a60] ref P L0: 63.2% 20.2% 11.1% 5.2% 0.4% [libx264 @ 04fa2a60] ref B L0: 90.3% 9.1% 0.6% [libx264 @ 04fa2a60] ref B L1: 98.6% 1.4% [libx264 @ 04fa2a60] kb/s:724.74 FFMpeg generate test.mp4 without audio track. It complains to increase analyzeduration, I increase it to 20000000, still the same. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 09:44:02 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 08:44:02 -0000 Subject: [FFmpeg-trac] #3195(avformat:new): Can't detect AAC audio in MPEG-PS format In-Reply-To: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> References: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> Message-ID: <052.dea61640eb5f1aef5ad28013407820ee@avcodec.org> #3195: Can't detect AAC audio in MPEG-PS format -------------------------------------+------------------------------------ Reporter: zoominla | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by zoominla): The file is big, so I upload it and this is the download link: http://mvlib.net/dl/clips/misdectec_aac.mpg -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 13:46:13 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 12:46:13 -0000 Subject: [FFmpeg-trac] #3196(FFmpeg:new): Facing issues by giving raw input video file in ffmpeg code Message-ID: <035.6a6ed92ed50710d0d4122b6b1b0b8029@avcodec.org> #3196: Facing issues by giving raw input video file in ffmpeg code --------------------------------+------------------------------------- Reporter: swathi | Type: defect Status: new | Priority: important Component: FFmpeg | Version: 2.1.1 Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+------------------------------------- hi, I configured ffmpeg and also x264... While giving the following command not linking the libx264 library propery.And also if i write any printfs in my code its not printing anything. ./ffmpeg -f rawvideo -r 50 -s 416x240 -vcodec rawvideo -i input.yuv -intra -qp 9 out.yuv [] -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 15:02:33 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 14:02:33 -0000 Subject: [FFmpeg-trac] #3196(undetermined:closed): Facing issues by giving raw input video file in ffmpeg code In-Reply-To: <035.6a6ed92ed50710d0d4122b6b1b0b8029@avcodec.org> References: <035.6a6ed92ed50710d0d4122b6b1b0b8029@avcodec.org> Message-ID: <050.57f07174a34a49cb8d6969141bd5c49e@avcodec.org> #3196: Facing issues by giving raw input video file in ffmpeg code -------------------------------------+------------------------------------- Reporter: swathi | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * priority: important => normal * resolution: => invalid * status: new => closed * component: FFmpeg => undetermined * version: 2.1.1 => unspecified Comment: Sorry but this is not a support forum and your report does not look like a valid bug report. Consider posting on the user mailing list. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 15:58:33 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 14:58:33 -0000 Subject: [FFmpeg-trac] #3179(undetermined:open): Transcoding a transport stream with a timestamp wrap does not work with -copyts In-Reply-To: <037.84af5b8ecf216bb61cc1e6fd75d6db88@avcodec.org> References: <037.84af5b8ecf216bb61cc1e6fd75d6db88@avcodec.org> Message-ID: <052.899ae2641792dacf514dd5226a01780d@avcodec.org> #3179: Transcoding a transport stream with a timestamp wrap does not work with -copyts -------------------------------------+------------------------------------- Reporter: aurelien | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: copyts | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by aurelien): I don't have any A/V desync with your sample. The beginning of the video is missing but when the woman talks it's OK. {{{ ffmpeg version N-58684-gf068aed Copyright (c) 2000-2013 the FFmpeg developers }}} or {{{ ffmpeg version N-58738-gf3008f3 Copyright (c) 2000-2013 the FFmpeg developers }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 16:19:06 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 15:19:06 -0000 Subject: [FFmpeg-trac] #3195(avformat:open): Can't detect AAC audio in MPEG-PS format In-Reply-To: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> References: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> Message-ID: <052.0f1b03b01b5a2901096efc4118345fe1@avcodec.org> #3195: Can't detect AAC audio in MPEG-PS format ------------------------------------+------------------------------------ Reporter: zoominla | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpeg aac | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => mpeg aac * status: new => open * version: unspecified => git-master * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 16:37:49 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 15:37:49 -0000 Subject: [FFmpeg-trac] #3195(avformat:open): Can't detect AAC audio in MPEG-PS format In-Reply-To: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> References: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> Message-ID: <052.919f02906085b50c13a4c4f3523b71f5@avcodec.org> #3195: Can't detect AAC audio in MPEG-PS format ------------------------------------+------------------------------------ Reporter: zoominla | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpegps aac | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: mpeg aac => mpegps aac Comment: Plays fine with vlc. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 17:01:04 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 16:01:04 -0000 Subject: [FFmpeg-trac] #3194(avcodec:new): valgrind leak on example package In-Reply-To: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> References: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> Message-ID: <051.f9db6566afc49a9afeecade2334c5693@avcodec.org> #3194: valgrind leak on example package ---------------------------------+----------------------------------- Reporter: andreyv | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: 2.1.1 | Resolution: Keywords: leak | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ---------------------------------+----------------------------------- Comment (by andreyv): Hi I've done the same on latest git The configuration this time is ./configure --prefix="/home/andrey/ffmpeg_sources/ffmpeg_latest" --extra- ldflags="-L/home/andrey/ffmpeg_build/lib" --bindir="/home/andrey/ffmpeg_build/bin" --enable-pthreads --extra- libs="-ldl" --extra-cflags="-I/home/andrey/ffmpeg_build/include" --enable- nonfree --enable-gpl --disable-vaapi --disable-iconv --enable-memalign- hack I've commented everything in decode_encode.c and attaching the copy of changed simple example I really do not require to see the problems in decoder or encoder. My problem is a leak on initialization stage. The previous branch my project was linked 0.8 has no this issue I am also ataching the valgrind output for you -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 17:36:26 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 16:36:26 -0000 Subject: [FFmpeg-trac] #2999(avcodec:closed): FFmpeg crashes on decoding H.264 MP4 file In-Reply-To: <038.93f367041852afab54676d093620f500@avcodec.org> References: <038.93f367041852afab54676d093620f500@avcodec.org> Message-ID: <053.7d8bde8f8d848b58fd6891762cfac7ae@avcodec.org> #2999: FFmpeg crashes on decoding H.264 MP4 file -------------------------------------+------------------------------------- Reporter: mbradshaw | Owner: Type: defect | Status: closed Priority: important | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 crash | Blocked By: SIGSEGV | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by michael): * status: reopened => closed * resolution: => fixed Comment: noone in 6 weeks could reproduce the ticket thus assume its fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 17:53:12 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 16:53:12 -0000 Subject: [FFmpeg-trac] #3195(avformat:open): Can't detect AAC audio in MPEG-PS format In-Reply-To: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> References: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> Message-ID: <052.9008fb8b1d975a21f6a0475170cee088@avcodec.org> #3195: Can't detect AAC audio in MPEG-PS format ------------------------------------+------------------------------------ Reporter: zoominla | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpegps aac | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by cehoyos): Workaround would be to use {{{-acodec aac}}} but the output file is completely out-of-sync. Do you know what created the sample? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 18:01:24 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 17:01:24 -0000 Subject: [FFmpeg-trac] #3194(avcodec:new): valgrind leak on example package In-Reply-To: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> References: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> Message-ID: <051.3a4e6f4b5e1064155afd243905f86f20@avcodec.org> #3194: valgrind leak on example package ---------------------------------+----------------------------------- Reporter: andreyv | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: 2.1.1 | Resolution: Keywords: leak | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ---------------------------------+----------------------------------- Comment (by cehoyos): Why do you use {{{--enable-memalign-hack}}} ? Please also remove {{{--enable-pthreads --enable-nonfree}}} from your configure line, both have no effect. The relevant part of your valgrind output is: {{{ ==19116== 56 bytes in 1 blocks are possibly lost in loss record 1 of 1 ==19116== at 0x402BE68: malloc (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so) ==19116== by 0x86816B0: av_malloc (mem.c:86) ==19116== by 0x808CB82: video_decode_example (decoding_encoding.c:557) ==19116== by 0x808CC9B: main (decoding_encoding.c:635) }}} Line 557 of decoding_encoding.c does not contain a call to av_malloc() or do I miss something? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 18:01:31 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 17:01:31 -0000 Subject: [FFmpeg-trac] #3194(avcodec:new): valgrind leak on example package In-Reply-To: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> References: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> Message-ID: <051.10f73b6ac4d363b4f876ac1127e1ec4b@avcodec.org> #3194: valgrind leak on example package ------------------------------------+----------------------------------- Reporter: andreyv | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: leak | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * version: 2.1.1 => git-master -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 18:07:01 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 17:07:01 -0000 Subject: [FFmpeg-trac] #3194(avcodec:new): valgrind leak on example package In-Reply-To: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> References: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> Message-ID: <051.1054543977c784a4c3e045e4b6695353@avcodec.org> #3194: valgrind leak on example package ------------------------------------+----------------------------------- Reporter: andreyv | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: leak | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by andreyv): It is no av_malloc there. It should be called from avcodec_open2. At least it seems to be. The leak in av_malloc as it assign more than enough maybe, that's not freed at the end I've not investigated from source code perspective, only from library usage -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 18:26:59 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 17:26:59 -0000 Subject: [FFmpeg-trac] #3194(avcodec:new): valgrind leak on example package In-Reply-To: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> References: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> Message-ID: <051.4b13817ba4360d74a37daa257e68a52b@avcodec.org> #3194: valgrind leak on example package ------------------------------------+----------------------------------- Reporter: andreyv | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: leak | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by andreyv): Actually I passed my win32 project in Dr. memory and the leak exist there also only on init stage from avcodec_open2 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 4 20:50:14 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 04 Dec 2013 19:50:14 -0000 Subject: [FFmpeg-trac] #3193(undetermined:closed): swr/aresample: invalid read with MP3 In-Reply-To: <035.cafe11bd4e29372658881f9bd5de16af@avcodec.org> References: <035.cafe11bd4e29372658881f9bd5de16af@avcodec.org> Message-ID: <050.39a52c4df49d93141ae2a562c0367843@avcodec.org> #3193: swr/aresample: invalid read with MP3 -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: swr | Resolution: fixed aresample | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by michael): * status: open => closed * resolution: => fixed Comment: Fixed in a6af5da7a2f817d52ea00e2aa93ccf5804afa3e0 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 01:08:41 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 00:08:41 -0000 Subject: [FFmpeg-trac] #512(avutil:closed): libavutil\common.h conversion warnings In-Reply-To: <036.f483bea64fb9914799f2cab413663675@avcodec.org> References: <036.f483bea64fb9914799f2cab413663675@avcodec.org> Message-ID: <051.55a05f5fd0975e37e262044a6d992384@avcodec.org> #512: libavutil\common.h conversion warnings -------------------------------------+----------------------------------- Reporter: DonMoir | Owner: michael Type: enhancement | Status: closed Priority: minor | Component: avutil Version: unspecified | Resolution: wontfix Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+----------------------------------- Comment (by DonMoir): fixed -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 01:51:05 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 00:51:05 -0000 Subject: [FFmpeg-trac] #3197(FFmpeg:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" Message-ID: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" --------------------------------+--------------------------------------- Reporter: ob | Type: defect Status: new | Priority: normal Component: FFmpeg | Version: unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+--------------------------------------- Summary of the bug: Hi, I'm trying to split VOB files cleanly with ffmpeg-2.1.1/Linux (32bit), using {{{-f segment}}}. My goal is to encode the resulting files in parallel on a cluster of machines, before merging everything back. My understanding is that {{{-f segment}}} should create a new output file every time there's a key frame in the stream. However, I'm getting: {{{ Assertion nus->keyframe_pts[k] > last_pts failed at libavformat/nutenc.c:596 }}} The failed assertion is there: {{{ ff_put_v(bc, 1 + 2*flag + 4*n); for (k= j - n; k<=j && ksp_count; k++) { if (nus->keyframe_pts[k] == AV_NOPTS_VALUE) continue; => av_assert0(nus->keyframe_pts[k] > last_pts); ff_put_v(bc, nus->keyframe_pts[k] - last_pts); last_pts = nus->keyframe_pts[k]; } }}} The command I ran was: {{{ ffmpeg -report -i concat:$(echo VTS_01*.VOB | tr ' ' \|) -map 0:1 -map 0:13 -codec copy -f segment output-%08d.nut }}} Full report attached. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 01:53:28 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 00:53:28 -0000 Subject: [FFmpeg-trac] #3177(avcodec:closed): asm error on i686 In-Reply-To: <036.6091537d9f867d9511be2ba94cd66fea@avcodec.org> References: <036.6091537d9f867d9511be2ba94cd66fea@avcodec.org> Message-ID: <051.3e5cf102334cd87a53db73737bca8928@avcodec.org> #3177: asm error on i686 -------------------------------------+------------------------------------- Reporter: andreas | Owner: Type: defect | Status: closed Priority: minor | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by michael): * status: open => closed * resolution: => fixed Comment: Fixed in 0538b29ae8002c44f27bae8a1a6fc6e646998be5 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 02:14:23 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 01:14:23 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.d69e7b6200940965c6c4dcad6bae1417@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: unspecified | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => nut crash abort * priority: normal => important * component: FFmpeg => avformat Comment: Is the problem also reproducible with current FFmpeg git head? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 02:32:08 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 01:32:08 -0000 Subject: [FFmpeg-trac] #3128(avcodec:closed): cavs silently ignores garbage data In-Reply-To: <039.a352855f812617b2d9b5e629a3c22889@avcodec.org> References: <039.a352855f812617b2d9b5e629a3c22889@avcodec.org> Message-ID: <054.acc8ac3b036a4f975229e52f9c99022e@avcodec.org> #3128: cavs silently ignores garbage data ------------------------------------+----------------------------------- Reporter: Timothy_Gu | Owner: Type: defect | Status: closed Priority: minor | Component: avcodec Version: git-master | Resolution: fixed Keywords: cavs | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by michael): * status: open => closed * resolution: => fixed Comment: Fixed in 9ca32b2060ecaf625fb5679bd69c3f579ef03b95 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 03:02:46 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 02:02:46 -0000 Subject: [FFmpeg-trac] #3195(avformat:open): Can't detect AAC audio in MPEG-PS format In-Reply-To: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> References: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> Message-ID: <052.a27b6c76364def237685dea3befb9271@avcodec.org> #3195: Can't detect AAC audio in MPEG-PS format ------------------------------------+------------------------------------ Reporter: zoominla | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpegps aac | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by zoominla): Replying to [comment:4 cehoyos]: I don't know, I get it from internet. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 03:03:28 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 02:03:28 -0000 Subject: [FFmpeg-trac] #2935(undetermined:closed): .nsv at the end of the URL hangs ffmpeg. In-Reply-To: <037.9c07d3a5390ac83ef32428b1878c17e5@avcodec.org> References: <037.9c07d3a5390ac83ef32428b1878c17e5@avcodec.org> Message-ID: <052.1b9c8f48cbd80b622509c038237d5055@avcodec.org> #2935: .nsv at the end of the URL hangs ffmpeg. -------------------------------------+------------------------------------- Reporter: kasper93 | Owner: Type: defect | Status: closed Priority: minor | Component: Version: git-master | undetermined Keywords: http | Resolution: Blocking: | worksforme Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by michael): * status: new => closed * resolution: => worksforme Comment: it takes a while before it errors out but it does not hang -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 03:05:08 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 02:05:08 -0000 Subject: [FFmpeg-trac] #3198(documentation:new): Documentation missing for several bitstream filters Message-ID: <035.844ed2d64b4a2e8d7366b0308a0f4d11@avcodec.org> #3198: Documentation missing for several bitstream filters -------------------------------------+------------------------------------- Reporter: llogan | Owner: Type: | Status: new enhancement | Component: Priority: normal | documentation Version: git- | Keywords: master | Blocking: Blocked By: | Analyzed by developer: 0 Reproduced by developer: 0 | -------------------------------------+------------------------------------- The following bitstream filters are undocumented in `doc/bitstream_filters.texi`: * imx_dump_header * mjpega_dump_header * movsub * mp3_header_compress * mp3_header_decompress * noise * remove_extra -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 03:17:58 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 02:17:58 -0000 Subject: [FFmpeg-trac] #2993(swresample:closed): swr ssse3: invalid read with forced mp3adu In-Reply-To: <038.96a2428a228a15d85b1a7ef64dba0d9b@avcodec.org> References: <038.96a2428a228a15d85b1a7ef64dba0d9b@avcodec.org> Message-ID: <053.22abcd1485d8bd818e98bc7d21f04271@avcodec.org> #2993: swr ssse3: invalid read with forced mp3adu ------------------------------------+-------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: swresample Version: git-master | Resolution: duplicate Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+-------------------------------------- Changes (by michael): * status: open => closed * resolution: => duplicate Comment: Seems fixed and i suspect this was a duplicate of Ticket #3193 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 03:22:54 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 02:22:54 -0000 Subject: [FFmpeg-trac] #2604(undetermined:reopened): flm files cannot be written without explicitly setting the pixel format for rawvideo (was: flm files cannot be written) In-Reply-To: <032.6b496ef42bc3577b00ad74c13261c637@avcodec.org> References: <032.6b496ef42bc3577b00ad74c13261c637@avcodec.org> Message-ID: <047.a3206878bf60f883071e0aec544e668c@avcodec.org> #2604: flm files cannot be written without explicitly setting the pixel format for rawvideo -------------------------------------+------------------------------------- Reporter: str | Owner: Type: defect | Status: reopened Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 03:27:10 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 02:27:10 -0000 Subject: [FFmpeg-trac] #2616(avcodec:open): support matrox mpeg-2 I-frame with alpha codec (m704 fourcc) In-Reply-To: <038.d9494d309e7449d2a8931aa2db7e4442@avcodec.org> References: <038.d9494d309e7449d2a8931aa2db7e4442@avcodec.org> Message-ID: <053.926508d25c0a0d522f7c7b5ff04deedf@avcodec.org> #2616: support matrox mpeg-2 I-frame with alpha codec (m704 fourcc) -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: matrox | Blocked By: mpeg2video alpha | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by michael): Replying to [comment:14 ami_stuff]: > Finally I was able to encode sample with a real alpha channel: > > http://www1.datafilehost.com/d/0436af02 it seems this is "404" -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 03:40:00 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 02:40:00 -0000 Subject: [FFmpeg-trac] #2659(build system:new): Compiling for i386 on 64bit OSX is hard In-Reply-To: <036.f520c8cc9f414b4254f850663ad1b787@avcodec.org> References: <036.f520c8cc9f414b4254f850663ad1b787@avcodec.org> Message-ID: <051.0c1008f9faf74b97e578a56a33de3b6a@avcodec.org> #2659: Compiling for i386 on 64bit OSX is hard -------------------------------------+------------------------------------- Reporter: hendrik | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: i386 OSX | Resolution: Darwin | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by michael): Is this still reproduceable ? (there was a change in the cabac asm code since then) if it still happens maybe another function has to be added under #if BROKEN_COMPILER -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 07:41:48 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 06:41:48 -0000 Subject: [FFmpeg-trac] #2953(undetermined:new): FFmpeg hangs while conversion video using libx264 In-Reply-To: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> References: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> Message-ID: <055.b2a57cd5b94cba225604ac77c15c5c4e@avcodec.org> #2953: FFmpeg hangs while conversion video using libx264 -------------------------------------+------------------------------------- Reporter: gerrysingh7 | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: libx264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by gerrysingh7): HI This is command which u suggested try with disable audio while conversion ffmpeg.exe -i "test_hb1200_7-3-13.mp4" -an -v debug -vcodec libx264 -vprofile baseline -b 480k -y -vf scale=480:270 "test_hb1200_7-3-13-480. So please let me know what else we can do to get this issue resolved. I will appreciate all the help on this. Thanks Gerry -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 07:43:56 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 06:43:56 -0000 Subject: [FFmpeg-trac] #2953(undetermined:new): FFmpeg hangs while conversion video using libx264 In-Reply-To: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> References: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> Message-ID: <055.29ee631329e7ad1c48b273477b21bacc@avcodec.org> #2953: FFmpeg hangs while conversion video using libx264 -------------------------------------+------------------------------------- Reporter: gerrysingh7 | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: libx264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by gerrysingh7): HI This when we run on machine for which i sent the configuration above it stalls in between even with disabled audio. thanks Gerry -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 09:53:40 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 08:53:40 -0000 Subject: [FFmpeg-trac] #2616(avcodec:open): support matrox mpeg-2 I-frame with alpha codec (m704 fourcc) In-Reply-To: <038.d9494d309e7449d2a8931aa2db7e4442@avcodec.org> References: <038.d9494d309e7449d2a8931aa2db7e4442@avcodec.org> Message-ID: <053.835696577ce9cdfa258b5265e4684c2c@avcodec.org> #2616: support matrox mpeg-2 I-frame with alpha codec (m704 fourcc) -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: matrox | Blocked By: mpeg2video alpha | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): http://samples.ffmpeg.org/ffmpeg-bugs/trac/ticket2616/ -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 11:03:32 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 10:03:32 -0000 Subject: [FFmpeg-trac] #3187(avformat:open): Please add SFD muxing In-Reply-To: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> References: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> Message-ID: <051.9ebbb96903eaaffa78f551065a9a7711@avcodec.org> #3187: Please add SFD muxing -------------------------------------+------------------------------------- Reporter: Soukyuu | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: sofdec | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by richardpl): What is SFD, can ffmpeg even demux/play sfd files? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 11:05:10 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 10:05:10 -0000 Subject: [FFmpeg-trac] #3187(avformat:open): SFD muxing (was: Please add SFD muxing) In-Reply-To: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> References: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> Message-ID: <051.dd8f6b20ffd9201f70c164b977e4958e@avcodec.org> #3187: SFD muxing -------------------------------------+------------------------------------- Reporter: Soukyuu | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: sofdec | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 11:13:39 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 10:13:39 -0000 Subject: [FFmpeg-trac] #3198(documentation:open): Documentation missing for several bitstream filters In-Reply-To: <035.844ed2d64b4a2e8d7366b0308a0f4d11@avcodec.org> References: <035.844ed2d64b4a2e8d7366b0308a0f4d11@avcodec.org> Message-ID: <050.47436195305b1b65fca7592fd0bc9619@avcodec.org> #3198: Documentation missing for several bitstream filters -------------------------------------+------------------------------------- Reporter: llogan | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | documentation Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * priority: normal => wish * status: new => open -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 11:14:29 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 10:14:29 -0000 Subject: [FFmpeg-trac] #3195(avformat:open): Can't detect AAC audio in MPEG-PS format In-Reply-To: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> References: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> Message-ID: <052.7915c1a89538880993ec3a4f2d18c84d@avcodec.org> #3195: Can't detect AAC audio in MPEG-PS format ------------------------------------+------------------------------------ Reporter: zoominla | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpegps aac | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by cehoyos): Does any other application except vlc play the file? Patch sent: http://thread.gmane.org/gmane.comp.video.ffmpeg.devel/171850 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 11:18:38 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 10:18:38 -0000 Subject: [FFmpeg-trac] #2953(undetermined:new): FFmpeg hangs while conversion video using libx264 In-Reply-To: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> References: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> Message-ID: <055.e748dab1ff7e79e01aa3c96983671367@avcodec.org> #2953: FFmpeg hangs while conversion video using libx264 -------------------------------------+------------------------------------- Reporter: gerrysingh7 | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: libx264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:20 gerrysingh7]: > This is command which u suggested try with disable audio while conversion > ffmpeg.exe -i "test_hb1200_7-3-13.mp4" -an -v debug -vcodec libx264 -vprofile baseline -b 480k -y -vf scale=480:270 "test_hb1200_7-3-13-480. > > So please let me know what else we can do to get this issue resolved. Does the stall also happen if you remove the scale filter from the command line? Does the stall also happen if you use -f lavfi -i testsrc as input instead of test_hb1200_7-3-13.mp4 ? If you want to shorten the fruitless conversation, please run [http://www.memtest.org/ Memtest86] on the affected system. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 11:19:53 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 10:19:53 -0000 Subject: [FFmpeg-trac] #2993(swresample:closed): swr ssse3: invalid read with forced mp3adu In-Reply-To: <038.96a2428a228a15d85b1a7ef64dba0d9b@avcodec.org> References: <038.96a2428a228a15d85b1a7ef64dba0d9b@avcodec.org> Message-ID: <053.c93889f922c76b071e13565479060238@avcodec.org> #2993: swr ssse3: invalid read with forced mp3adu ------------------------------------+-------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: swresample Version: git-master | Resolution: duplicate Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+-------------------------------------- Comment (by cehoyos): Or rather #3193 was a duplicate of this ticket which both Ubitux and I missed... -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 11:26:26 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 10:26:26 -0000 Subject: [FFmpeg-trac] #3187(avformat:open): SFD muxing In-Reply-To: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> References: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> Message-ID: <051.04d7d36ab4538a7412c4aaf1119e40fb@avcodec.org> #3187: SFD muxing -------------------------------------+------------------------------------- Reporter: Soukyuu | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: sofdec | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): http://samples.ffmpeg.org/game-formats/sfd/ -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 16:26:28 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 15:26:28 -0000 Subject: [FFmpeg-trac] #2953(undetermined:new): FFmpeg hangs while conversion video using libx264 In-Reply-To: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> References: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> Message-ID: <055.17851b92dd818e5afdf70169daa265fc@avcodec.org> #2953: FFmpeg hangs while conversion video using libx264 -------------------------------------+------------------------------------- Reporter: gerrysingh7 | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: libx264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by gerrysingh7): HI, if we remove the scale filter it does not stalled. it converts successfully and if i use -f lavfi -i testsrc as input instead of testhb1200_7_3-3-13.mp4 then it says no such file or directory Thanks Gerry -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 16:54:27 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 15:54:27 -0000 Subject: [FFmpeg-trac] #2953(undetermined:new): FFmpeg hangs while conversion video using libx264 In-Reply-To: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> References: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> Message-ID: <055.b196fda4814448107c7f7c2cde0da022@avcodec.org> #2953: FFmpeg hangs while conversion video using libx264 -------------------------------------+------------------------------------- Reporter: gerrysingh7 | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: libx264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:23 gerrysingh7]: > if i use -f lavfi -i testsrc as input instead of testhb1200_7_3-3-13.mp4 then it says no such file or directory Please provide the failing command line together with the complete, uncut console output. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 18:05:39 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 17:05:39 -0000 Subject: [FFmpeg-trac] #3187(avformat:open): SFD muxing In-Reply-To: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> References: <036.5aa90da91b68462dbb7cecd6dd20d7dd@avcodec.org> Message-ID: <051.75bd8907c47c5b5dbd13a1f2d9cabb55@avcodec.org> #3187: SFD muxing -------------------------------------+------------------------------------- Reporter: Soukyuu | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: sofdec | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by Soukyuu): Yes, FFMPEG is already capable of playing and demuxing SFD. SFD is CRI's SofDec video, a modified mpeg container which hosts mpeg1/2 video, CRI's adx audio and in some cases an additional ac3 audio track. Demuxing ac3 was only recently fixed after I reported a problem with it. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 19:59:15 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 18:59:15 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.aaea24d7a41a9f50d7b2deb5d25295b7@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: unspecified | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ob): I just tested, and yes. I'll attach this report too. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 21:07:14 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 20:07:14 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.afa083b34ef809f00e992527e85b09fe@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: unspecified | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Is the concat filter required to reproduce the problem? Does it also happen if you only copy audio or only video (with -an or -vn)? Are specific samples needed? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 22:06:53 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 21:06:53 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.f912c9e4fa350375b0dc6773f4b101c0@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: unspecified | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ob): Apparently it all works fine if I try without concat. {{{-an}}} and {{{-vn}}} stop on the first file with this message: {{{ Output file #0 does not contain any stream }}} The stream ids are changing between VOBs, which is likely an issue. Here's {{{ffprobe}}} output for all of them: {{{ VTS_01_0.VOB ffprobe version N-58754-ge2bf00c Copyright (c) 2007-2013 the FFmpeg developers built on Dec 5 2013 18:55:53 with gcc 4.8 (Ubuntu/Linaro 4.8.1-10ubuntu9) configuration: --disable-stripping libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 Input #0, mpeg, from 'VTS_01_0.VOB': Duration: 00:00:02.40, start: 0.128389, bitrate: 3618 kb/s Stream #0:0[0x1bf]: Data: dvd_nav_packet Stream #0:1[0x1e0]: Video: mpeg2video (Main), yuv420p(tv, bt470bg), 720x576 [SAR 64:45 DAR 16:9], max. 9800 kb/s, 25 fps, 4.17 tbr, 90k tbn, 50 tbc Stream #0:2[0x21]: Subtitle: dvd_subtitle Stream #0:3[0x20]: Subtitle: dvd_subtitle Unsupported codec with id 1145979222 for input stream 0 =============== VTS_01_1.VOB ffprobe version N-58754-ge2bf00c Copyright (c) 2007-2013 the FFmpeg developers built on Dec 5 2013 18:55:53 with gcc 4.8 (Ubuntu/Linaro 4.8.1-10ubuntu9) configuration: --disable-stripping libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 Input #0, mpeg, from 'VTS_01_1.VOB': Duration: 00:21:40.12, start: 0.053622, bitrate: 6607 kb/s Stream #0:0[0x1bf]: Data: dvd_nav_packet Stream #0:1[0x1e0]: Video: mpeg2video (Main), yuv420p(tv), 720x576 [SAR 64:45 DAR 16:9], max. 7500 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:2[0x2a]: Subtitle: dvd_subtitle Stream #0:3[0x29]: Subtitle: dvd_subtitle Stream #0:4[0x28]: Subtitle: dvd_subtitle Stream #0:5[0x27]: Subtitle: dvd_subtitle Stream #0:6[0x26]: Subtitle: dvd_subtitle Stream #0:7[0x25]: Subtitle: dvd_subtitle Stream #0:8[0x24]: Subtitle: dvd_subtitle Stream #0:9[0x23]: Subtitle: dvd_subtitle Stream #0:10[0x22]: Subtitle: dvd_subtitle Stream #0:11[0x21]: Subtitle: dvd_subtitle Stream #0:12[0x20]: Subtitle: dvd_subtitle Stream #0:13[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Unsupported codec with id 1145979222 for input stream 0 =============== VTS_01_2.VOB ffprobe version N-58754-ge2bf00c Copyright (c) 2007-2013 the FFmpeg developers built on Dec 5 2013 18:55:53 with gcc 4.8 (Ubuntu/Linaro 4.8.1-10ubuntu9) configuration: --disable-stripping libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 [mpeg2video @ 0xa3cb440] Invalid frame dimensions 0x0. Last message repeated 7 times Input #0, mpeg, from 'VTS_01_2.VOB': Duration: 00:21:41.98, start: 1300.273300, bitrate: 6597 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p(tv), 720x576 [SAR 64:45 DAR 16:9], max. 7500 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Stream #0:2[0x1bf]: Data: dvd_nav_packet Stream #0:3[0x2a]: Subtitle: dvd_subtitle Stream #0:4[0x29]: Subtitle: dvd_subtitle Stream #0:5[0x28]: Subtitle: dvd_subtitle Stream #0:6[0x27]: Subtitle: dvd_subtitle Stream #0:7[0x26]: Subtitle: dvd_subtitle Stream #0:8[0x25]: Subtitle: dvd_subtitle Stream #0:9[0x24]: Subtitle: dvd_subtitle Stream #0:10[0x23]: Subtitle: dvd_subtitle Stream #0:11[0x22]: Subtitle: dvd_subtitle Stream #0:12[0x21]: Subtitle: dvd_subtitle Stream #0:13[0x20]: Subtitle: dvd_subtitle Unsupported codec with id 1145979222 for input stream 2 =============== VTS_01_3.VOB ffprobe version N-58754-ge2bf00c Copyright (c) 2007-2013 the FFmpeg developers built on Dec 5 2013 18:55:53 with gcc 4.8 (Ubuntu/Linaro 4.8.1-10ubuntu9) configuration: --disable-stripping libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 [mpeg2video @ 0xa723440] Invalid frame dimensions 0x0. Last message repeated 1 times Input #0, mpeg, from 'VTS_01_3.VOB': Duration: 00:22:44.42, start: 2602.353300, bitrate: 6295 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p(tv), 720x576 [SAR 64:45 DAR 16:9], max. 7500 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x1bf]: Data: dvd_nav_packet Stream #0:2[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Unsupported codec with id 1145979222 for input stream 1 =============== VTS_01_4.VOB ffprobe version N-58754-ge2bf00c Copyright (c) 2007-2013 the FFmpeg developers built on Dec 5 2013 18:55:53 with gcc 4.8 (Ubuntu/Linaro 4.8.1-10ubuntu9) configuration: --disable-stripping libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 [mpeg2video @ 0xad6d440] Invalid frame dimensions 0x0. Input #0, mpeg, from 'VTS_01_4.VOB': Duration: 00:19:27.43, start: 3966.865300, bitrate: 6561 kb/s Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p(tv), 720x576 [SAR 64:45 DAR 16:9], max. 7500 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Stream #0:2[0x1bf]: Data: dvd_nav_packet Unsupported codec with id 1145979222 for input stream 2 =============== }}} Using the original command but with {{{concat:$(echo VTS_01_[1234].VOB | tr ' ' \|)}}} and {{{-map 0}}} fails with: {{{ $ ~/git/ffmpeg/ffmpeg -i concat:$(echo VTS_01_[1234].VOB | tr ' ' \|) -vn -codec copy -f segment output-%08d.nut ffmpeg version N-58754-ge2bf00c Copyright (c) 2000-2013 the FFmpeg developers built on Dec 5 2013 18:55:53 with gcc 4.8 (Ubuntu/Linaro 4.8.1-10ubuntu9) configuration: --disable-stripping libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 Input #0, mpeg, from 'concat:VTS_01_1.VOB|VTS_01_2.VOB|VTS_01_3.VOB|VTS_01_4.VOB': Duration: 01:25:34.24, start: 0.053622, bitrate: 6511 kb/s Stream #0:0[0x1bf]: Data: dvd_nav_packet Stream #0:1[0x1e0]: Video: mpeg2video (Main), yuv420p(tv), 720x576 [SAR 64:45 DAR 16:9], max. 7500 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:2[0x2a]: Subtitle: dvd_subtitle Stream #0:3[0x29]: Subtitle: dvd_subtitle Stream #0:4[0x28]: Subtitle: dvd_subtitle Stream #0:5[0x27]: Subtitle: dvd_subtitle Stream #0:6[0x26]: Subtitle: dvd_subtitle Stream #0:7[0x25]: Subtitle: dvd_subtitle Stream #0:8[0x24]: Subtitle: dvd_subtitle Stream #0:9[0x23]: Subtitle: dvd_subtitle Stream #0:10[0x22]: Subtitle: dvd_subtitle Stream #0:11[0x21]: Subtitle: dvd_subtitle Stream #0:12[0x20]: Subtitle: dvd_subtitle Stream #0:13[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Output #0, segment, to 'output-%08d.nut': Output file #0 does not contain any stream }}} As for the samples, I'm not legally allowed to share them (I guess that's a common issue for you guys). Are some test samples available somewhere so I can reproduce with something you can use too? I suspect that's all because of the changing stream ids but I'm not sure how to work around this. If I process each VOB separately without {{{concat}}}, will I lose audio and/or video continuity? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 22:16:55 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 21:16:55 -0000 Subject: [FFmpeg-trac] #3199(undetermined:new): duration incorrect for mpeg file Message-ID: <036.a39e7f79417cab3ccb82fcae6222e5f6@avcodec.org> #3199: duration incorrect for mpeg file -------------------------------------+------------------------------------- Reporter: DonMoir | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- The file dolbycity.vob has an audio, video, and data stream. The audio and video streams have different durations. The duration computed in ../libavformat/utils.c in estimate_timings_from_pts seems to take first stream it finds and computes that stream duration and this is then propagated to the other streams. The real audio stream duration is 31808 ms. The video stream duration is 32000 ms. Seems estimate_timings_from_pts computes the audio stream duration at 31776 since it lacks the duration of the last packet in it's calculation. 31776 + 32 = 31808. 32 is the duration of the last audio packet in ms. So estimate_timings_from_pts seems to be overkill and not enough ( at same time :) to get accurate results. I think mediainfo is the only program I have that reports the audio duration at 31808 and video duration at 32000 and overall duration at 32000. But I verified those numbers by walking the packet list. It's important I get these durations as exact as possible and for this particular case it is possible but not happening. http://sms.pangolin.com/temp/dolbycity.vob ffmpeg -i dolbycity.vob ffmpeg version N-58733-gf65afef Copyright (c) 2000-2013 the FFmpeg developers built on Dec 3 2013 22:04:42 with gcc 4.8.2 (GCC) configuration: --disable-static --enable-shared --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrw b --enable-libopenjpeg --enable-libopus --enable-librtmp --enable- libschroedinge r --enable-libsoxr --enable-libspeex --enable-libtheora --enable- libtwolame --en able-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable- libvorbis --enable-libvpx --enable-libwavpack --enable-libx264 --enable-libxavs --enable- libxvid --enable-zlib libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, mpeg, from 'dolbycity.vob': Duration: 00:00:31.78, start: 0.049756, bitrate: 5291 kb/s Stream #0:0[0x1bf]: Data: dvd_nav_packet Stream #0:1[0x1e0]: Video: mpeg2video (Main), yuv420p(tv), 720x576 [SAR 16:1 5 DAR 4:3], max. 9800 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:2[0x80]: Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 22:20:53 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 21:20:53 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.fd64b089df21cef61ee264faca34ea55@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: unspecified | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ob): Actually, interestingly enough, it fails if I specify only the first VOB file and the video stream: {{{ $ ~/git/ffmpeg/ffmpeg -i VTS_01_1.VOB -map 0:1 -codec copy -f segment output/output-1-%08d.nut ffmpeg version N-58754-ge2bf00c Copyright (c) 2000-2013 the FFmpeg developers built on Dec 5 2013 18:55:53 with gcc 4.8 (Ubuntu/Linaro 4.8.1-10ubuntu9) configuration: --disable-stripping libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 Input #0, mpeg, from 'VTS_01_1.VOB': Duration: 00:21:40.12, start: 0.053622, bitrate: 6607 kb/s Stream #0:0[0x1bf]: Data: dvd_nav_packet Stream #0:1[0x1e0]: Video: mpeg2video (Main), yuv420p(tv), 720x576 [SAR 64:45 DAR 16:9], max. 7500 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:2[0x2a]: Subtitle: dvd_subtitle Stream #0:3[0x29]: Subtitle: dvd_subtitle Stream #0:4[0x28]: Subtitle: dvd_subtitle Stream #0:5[0x27]: Subtitle: dvd_subtitle Stream #0:6[0x26]: Subtitle: dvd_subtitle Stream #0:7[0x25]: Subtitle: dvd_subtitle Stream #0:8[0x24]: Subtitle: dvd_subtitle Stream #0:9[0x23]: Subtitle: dvd_subtitle Stream #0:10[0x22]: Subtitle: dvd_subtitle Stream #0:11[0x21]: Subtitle: dvd_subtitle Stream #0:12[0x20]: Subtitle: dvd_subtitle Stream #0:13[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Output #0, segment, to 'output/output-1-%08d.nut': Metadata: encoder : Lavf55.22.100 Stream #0:0: Video: mpeg2video, yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, max. 7500 kb/s, 25 fps, 90k tbn, 25 tbc Stream mapping: Stream #0:1 -> #0:0 (copy) Press [q] to stop, [?] for help [nut @ 0x9a05820] Negative pts not supported stream 0, pts -9223372036854775808 av_interleaved_write_frame(): Invalid argument }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 22:43:23 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 21:43:23 -0000 Subject: [FFmpeg-trac] #3177(avcodec:closed): asm error on i686 In-Reply-To: <036.6091537d9f867d9511be2ba94cd66fea@avcodec.org> References: <036.6091537d9f867d9511be2ba94cd66fea@avcodec.org> Message-ID: <051.6c36fa022f446486b05389f77173f531@avcodec.org> #3177: asm error on i686 -------------------------------------+------------------------------------- Reporter: andreas | Owner: Type: defect | Status: closed Priority: minor | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by andreas): Thanks for the explanations and the fix! We backported it into our distribution. Using fate could be an option, but it is not clear whether downloading all the samples would be reasonable for a mainly source based distribution. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 23:34:41 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 22:34:41 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.6f8d830d436b45ef2591f5683cecae49@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * version: unspecified => git-master Comment: Replying to [comment:5 ob]: > Actually, interestingly enough, it fails if I specify only the first VOB file and the video stream: Please cut the sample as small as possible to still reproduce the issue and upload it. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 23:38:10 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 22:38:10 -0000 Subject: [FFmpeg-trac] #3199(avformat:new): duration incorrect for mpeg file In-Reply-To: <036.a39e7f79417cab3ccb82fcae6222e5f6@avcodec.org> References: <036.a39e7f79417cab3ccb82fcae6222e5f6@avcodec.org> Message-ID: <051.62ed9c839aa0ea7075282412f16afd2d@avcodec.org> #3199: duration incorrect for mpeg file ------------------------------------+------------------------------------ Reporter: DonMoir | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpegps | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => mpegps * version: unspecified => git-master * component: undetermined => avformat Comment: {{{ $ ffmpeg -i dolbycity.vob -f null - ffmpeg version N-58755-gaf7562a Copyright (c) 2000-2013 the FFmpeg developers built on Dec 5 2013 23:36:29 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, mpeg, from 'dolbycity.vob': Duration: 00:00:31.78, start: 0.049756, bitrate: 5291 kb/s Stream #0:0[0x1bf]: Data: dvd_nav_packet Stream #0:1[0x1e0]: Video: mpeg2video (Main), yuv420p(tv), 720x576 [SAR 16:15 DAR 4:3], max. 9800 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:2[0x80]: Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s Output #0, null, to 'pipe:': Metadata: encoder : Lavf55.22.100 Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 720x576 [SAR 16:15 DAR 4:3], q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream #0:1: Audio: pcm_s16le, 48000 Hz, 5.1(side), s16, 4608 kb/s Stream mapping: Stream #0:1 -> #0:0 (mpeg2video -> rawvideo) Stream #0:2 -> #0:1 (ac3 -> pcm_s16le) Press [q] to stop, [?] for help [null @ 0x215ee20] Encoder did not produce proper pts, making some up. frame= 800 fps=0.0 q=0.0 Lsize=N/A time=00:00:32.00 bitrate=N/A video:75kB audio:17892kB subtitle:0 global headers:0kB muxing overhead -100.000120% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 5 23:39:40 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 22:39:40 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.fc99b35130251b5d1eb52fd029ab9539@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ob): What method do you prefer for me to cut it? dd with a block size of 2048? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 00:45:01 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 05 Dec 2013 23:45:01 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.49a110e3e597e6276d8551cd773ff77f@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): dd is the recommended method but any other method that produces an output file that allows to reproduce the problem is also fine. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 01:16:19 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 00:16:19 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.b74ceac39d0d9115546babd3cde2bec2@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ob): bad_chunk.vob attached. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 04:26:00 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 03:26:00 -0000 Subject: [FFmpeg-trac] #3195(avformat:open): Can't detect AAC audio in MPEG-PS format In-Reply-To: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> References: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> Message-ID: <052.50a3b7276d7a07526a128bf318a2ecc3@avcodec.org> #3195: Can't detect AAC audio in MPEG-PS format ------------------------------------+------------------------------------ Reporter: zoominla | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: mpegps aac | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by zoominla): Replying to [comment:6 cehoyos]: MediaInfo parses the a/v info correctly. Media Player Classic also plays it fine. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 05:38:41 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 04:38:41 -0000 Subject: [FFmpeg-trac] #2686(avcodec:open): Native AAC encoder collapses at high bitrates on some samples In-Reply-To: <036.46e6f0dcfe0fbeeeee1e7460dc88b12a@avcodec.org> References: <036.46e6f0dcfe0fbeeeee1e7460dc88b12a@avcodec.org> Message-ID: <051.5b3f94b155792d5a93fc85a1a099d9a1@avcodec.org> #2686: Native AAC encoder collapses at high bitrates on some samples -------------------------------------+------------------------------------- Reporter: Kamedo2 | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: aac | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by klaussfreire): I'm close to posting a v8. Main improvement in v8 is, besides various subtle but significant bug fixes, that M/S coding properly works and, I believe, is robust enough to be on by default. But v8 won't have it on by default just yet. So, when I post it (I'm performing a last round of listening tests), be sure to run it with {{{-stereo_mode auto}}} to get results comparable to the other contenders. I just wanted to post the progress report early since this ticket has been silent for a while ;) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:04:31 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:04:31 -0000 Subject: [FFmpeg-trac] #2832(undetermined:new): ffmpeg produces audio with glitch In-Reply-To: <038.6041c4c7d19e2507bdbab0e948d67358@avcodec.org> References: <038.6041c4c7d19e2507bdbab0e948d67358@avcodec.org> Message-ID: <053.a60d87c375c56e181521603fb308a95a@avcodec.org> #2832: ffmpeg produces audio with glitch -------------------------------------+------------------------------------- Reporter: asukhanov | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by boean): /usr/local/bin/ffmpeg -i /idoukou_convert/original/music/2013/587_1385436228.wav -acodec libmp3lame -ac 2 -ar 44100 -ab 320k -y 1.mp3 Output #0, mp3, to '1.mp3': Metadata: TSSE : Lavf55.19.104 Stream #0:0: Audio: mp3 (libmp3lame), 44100 Hz, stereo, s16p, 320 kb/s Stream mapping: Stream #0:0 -> #0:0 (pcm_s16le -> libmp3lame) Press [q] to stop, [?] for help [libmp3lame @ 0x9579740] Trying to remove 1152 samples, but the queue is empty Last message repeated 1079 times [libmp3lame @ 0x9579740] Trying to remove 1152 samples, but the queue is empty Last message repeated 205 times [libmp3lame @ 0x9579740] Trying to remove 1152 samples, but the queue is empty av_interleaved_write_frame(): Immediate exit requested -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:14:22 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:14:22 -0000 Subject: [FFmpeg-trac] #2832(undetermined:new): ffmpeg produces audio with glitch In-Reply-To: <038.6041c4c7d19e2507bdbab0e948d67358@avcodec.org> References: <038.6041c4c7d19e2507bdbab0e948d67358@avcodec.org> Message-ID: <053.0771fa91819443b8bb90cbf3fa2de44a@avcodec.org> #2832: ffmpeg produces audio with glitch -------------------------------------+------------------------------------- Reporter: asukhanov | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Not a regression. The output file sounds completely broken, works fine without {{{-async 1}}}. {{{ $ ffmpeg -i audio_glitch_input.flv -async 1 out.wav ffmpeg version N-58755-gaf7562a Copyright (c) 2000-2013 the FFmpeg developers built on Dec 5 2013 23:36:29 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, flv, from 'audio_glitch_input.flv': Duration: 00:02:46.84, start: 0.000000, bitrate: 322 kb/s Stream #0:0: Audio: mp3, 44100 Hz, mono, s16p, 192 kb/s -async is forwarded to lavfi similarly to -af aresample=async=1:min_hard_comp=0.100000:first_pts=0. Output #0, wav, to 'out.wav': Metadata: ISFT : Lavf55.22.100 Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, mono, s16, 705 kb/s Stream mapping: Stream #0:0 -> #0:0 (mp3 -> pcm_s16le) Press [q] to stop, [?] for help size= 14380kB time=00:02:46.94 bitrate= 705.6kbits/s video:0kB audio:14380kB subtitle:0 global headers:0kB muxing overhead 0.000543% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:14:55 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:14:55 -0000 Subject: [FFmpeg-trac] #2832(undetermined:open): ffmpeg produces audio with glitch In-Reply-To: <038.6041c4c7d19e2507bdbab0e948d67358@avcodec.org> References: <038.6041c4c7d19e2507bdbab0e948d67358@avcodec.org> Message-ID: <053.cc16d8d2ee9dc5f6944d3df52412b4c4@avcodec.org> #2832: ffmpeg produces audio with glitch -------------------------------------+------------------------------------- Reporter: asukhanov | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: async | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => async * status: new => open * version: unspecified => git-master -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:15:17 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:15:17 -0000 Subject: [FFmpeg-trac] #2832(undetermined:open): ffmpeg produces broken audio with -async 1 (was: ffmpeg produces audio with glitch) In-Reply-To: <038.6041c4c7d19e2507bdbab0e948d67358@avcodec.org> References: <038.6041c4c7d19e2507bdbab0e948d67358@avcodec.org> Message-ID: <053.8dd261a1c470a20fd6a98ed58de01c6f@avcodec.org> #2832: ffmpeg produces broken audio with -async 1 -------------------------------------+------------------------------------- Reporter: asukhanov | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: async | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:15:19 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:15:19 -0000 Subject: [FFmpeg-trac] #3200(FFmpeg:new): Trying to remove 1152 samples, but the queue is empty Message-ID: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> #3200: Trying to remove 1152 samples, but the queue is empty --------------------------------+---------------------------------- Reporter: boean | Type: defect Status: new | Priority: normal Component: FFmpeg | Version: 2.1.1 Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+---------------------------------- It's run no stop Last message repeated XXXX times. Stop it by Ctrl+c ffmpeg -i 1385436228.wav -acodec libmp3lame -ac 2 -ar 44100 -ab 320k -y 1.mp3 Duration: 00:03:41.77, bitrate: 1411 kb/s Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, stereo, s16, 1411 kb/s Output #0, mp3, to '1.mp3': Metadata: TSSE : Lavf55.19.104 Stream #0:0: Audio: mp3 (libmp3lame), 44100 Hz, stereo, s16p, 320 kb/s Stream mapping: Stream #0:0 -> #0:0 (pcm_s16le -> libmp3lame) Press [q] to stop, [?] for help [libmp3lame @ 0x9579740] Trying to remove 1152 samples, but the queue is empty Last message repeated 1079 times [libmp3lame @ 0x9579740] Trying to remove 1152 samples, but the queue is empty Last message repeated 205 times [libmp3lame @ 0x9579740] Trying to remove 1152 samples, but the queue is empty av_interleaved_write_frame(): Immediate exit requested Received signal 2: terminating. what's wrong ?What should I do -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:30:04 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:30:04 -0000 Subject: [FFmpeg-trac] #3200(undetermined:new): Trying to remove 1152 samples, but the queue is empty In-Reply-To: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> References: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> Message-ID: <049.e0105d976a5b6eab524e2323c7c7b673@avcodec.org> #3200: Trying to remove 1152 samples, but the queue is empty --------------------------------+---------------------------------------- Reporter: boean | Owner: Type: defect | Status: new Priority: normal | Component: undetermined Version: 2.1.1 | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+---------------------------------------- Changes (by cehoyos): * component: FFmpeg => undetermined Comment: To make this a valid ticket, please provide your command line together with the complete, uncut console output, please test current FFmpeg git head and please provide the input sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:35:30 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:35:30 -0000 Subject: [FFmpeg-trac] #3201(undetermined:new): A/V desync without -async 1 Message-ID: <036.6f9df58f5eb3dbf50e7d4df58e6ce03c@avcodec.org> #3201: A/V desync without -async 1 -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: normal | Component: Version: git- | undetermined master | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- I "fixed" the sample from ticket #3195 with a hex editor to allow testing with MPlayer and older FFmpeg versions. The sample plays fine (no A/V desync) with at least FFplay, MPlayer and vlc, transcoding with FFmpeg leads to a file with severe desync if {{{-async 1}}} was not used. out.avi shows A/V desync: {{{ $ ffmpeg -i detect_aac.mpg -qscale 2 out.avi ffmpeg version N-58799-g5ac5581 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 6 2013 10:16:53 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [aac @ 0x19127a0] get_buffer() failed Input #0, mpeg, from 'detect_aac.mpg': Duration: 00:00:31.10, start: 0.000000, bitrate: 19585 kb/s Stream #0:0[0x1e0]: Video: h264 (Main), yuv420p(tv), 1920x1080 [SAR 1:1 DAR 16:9], 30 fps, 30 tbr, 90k tbn, 60 tbc Stream #0:1[0x1c0]: Audio: aac, 44100 Hz, stereo, fltp, 134 kb/s Please use -q:a or -q:v, -qscale is ambiguous Output #0, avi, to 'out.avi': Metadata: ISFT : Lavf55.22.100 Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 30 tbn, 30 tbc Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 44100 Hz, stereo, fltp, 192 kb/s Stream mapping: Stream #0:0 -> #0:0 (h264 -> mpeg4) Stream #0:1 -> #0:1 (aac -> ac3) Press [q] to stop, [?] for help [aac @ 0x19127a0] Input buffer exhausted before END element found Error while decoding stream #0:1: Invalid data found when processing input frame= 903 fps=160 q=2.0 Lsize= 103095kB time=00:00:31.13 bitrate=27126.9kbits/s video:102338kB audio:704kB subtitle:0 global headers:0kB muxing overhead 0.051418% }}} Works fine with {{{-async 1}}} {{{ $ ffmpeg -i detect_aac.mpg -async 1 -qscale 2 outasync.avi ffmpeg version N-58799-g5ac5581 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 6 2013 10:16:53 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [aac @ 0x21067a0] get_buffer() failed Input #0, mpeg, from 'detect_aac.mpg': Duration: 00:00:31.10, start: 0.000000, bitrate: 19585 kb/s Stream #0:0[0x1e0]: Video: h264 (Main), yuv420p(tv), 1920x1080 [SAR 1:1 DAR 16:9], 30 fps, 30 tbr, 90k tbn, 60 tbc Stream #0:1[0x1c0]: Audio: aac, 44100 Hz, stereo, fltp, 134 kb/s Please use -q:a or -q:v, -qscale is ambiguous -async is forwarded to lavfi similarly to -af aresample=async=1:min_hard_comp=0.100000:first_pts=0. Output #0, avi, to 'outasync.avi': Metadata: ISFT : Lavf55.22.100 Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 30 tbn, 30 tbc Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 44100 Hz, stereo, fltp, 192 kb/s Stream mapping: Stream #0:0 -> #0:0 (h264 -> mpeg4) Stream #0:1 -> #0:1 (aac -> ac3) Press [q] to stop, [?] for help [aac @ 0x21067a0] Input buffer exhausted before END element found Error while decoding stream #0:1: Invalid data found when processing input frame= 903 fps=161 q=2.0 Lsize= 103119kB time=00:00:31.13 bitrate=27133.4kbits/s video:102338kB audio:728kB subtitle:0 global headers:0kB muxing overhead 0.051406% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:42:32 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:42:32 -0000 Subject: [FFmpeg-trac] #3200(undetermined:new): Trying to remove 1152 samples, but the queue is empty In-Reply-To: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> References: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> Message-ID: <049.849e191be7332c63e04564a95bdd107f@avcodec.org> #3200: Trying to remove 1152 samples, but the queue is empty --------------------------------+---------------------------------------- Reporter: boean | Owner: Type: defect | Status: new Priority: normal | Component: undetermined Version: 2.1.1 | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+---------------------------------------- Comment (by boean): /usr/local/bin/ffmpeg -i /idoukou_convert/origi nal/music/2013/587_1385436228.wav -acodec libmp3lame -ac 2 -ar 44100 -ab 320k - y 1.mp3 [root at convert idoukou_convert]# /usr/local/bin/ffmpeg -i /idoukou_convert/origi nal/music/2013/587_1385436228.wav -acodec libmp3lame -ac 2 -ar 44100 -ab 320k - y 1.mp3 ffmpeg version N-58797-g4a0d827 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 6 2013 17:28:48 with gcc 4.1.2 (GCC) 20080704 (Red Hat 4.1.2-54) configuration: --enable-libmp3lame --enable-small --enable-libfaac --enable-li bvorbis --enable-libxvid --disable-ffplay --disable-ffserver --enable- pthreads - -extra-ldflags=-ldl --enable-nonfree --enable-gpl --enable-libfdk_aac libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Guessed Channel Layout for Input Stream #0.0 : stereo Input #0, wav, from '/idoukou_convert/original/music/2013/587_1385436228.wav': Duration: 00:03:41.77, bitrate: 1411 kb/s Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, stereo, s16 , 1411 kb/s Output #0, mp3, to '1.mp3': Metadata: TSSE : Lavf55.22.100 Stream #0:0: Audio: mp3 (libmp3lame), 44100 Hz, stereo, s16p, 320 kb/s Stream mapping: Stream #0:0 -> #0:0 (pcm_s16le -> libmp3lame) Press [q] to stop, [?] for help [libmp3lame @ 0x9daa740] Trying to remove 1152 samples, but the queue is empty Last message repeated 1971 times [libmp3lame @ 0x9daa740] Trying to remove 1152 samples, but the queue is empty Last message repeated 473 times [libmp3lame @ 0x9daa740] Trying to remove 1152 samples, but the queue is empty av_interleaved_write_frame(): Immediate exit requested Received signal 2: terminating. I stop it's execute by Ctrl+c .Otherwise, It's note "Last message repeated XXXXX times" is not stop. The number has been an increase no stop.what's happen? I need help -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:55:05 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:55:05 -0000 Subject: [FFmpeg-trac] #3200(undetermined:new): Trying to remove 1152 samples, but the queue is empty In-Reply-To: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> References: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> Message-ID: <049.9c7b89c062b34391f26db0450c4d4bd8@avcodec.org> #3200: Trying to remove 1152 samples, but the queue is empty --------------------------------+---------------------------------------- Reporter: boean | Owner: Type: defect | Status: new Priority: normal | Component: undetermined Version: 2.1.1 | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+---------------------------------------- Comment (by cehoyos): Please provide the input sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:56:06 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:56:06 -0000 Subject: [FFmpeg-trac] #3200(undetermined:new): Trying to remove 1152 samples, but the queue is empty In-Reply-To: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> References: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> Message-ID: <049.4f770c0ddb9f95661b07713a3ed0f6d0@avcodec.org> #3200: Trying to remove 1152 samples, but the queue is empty -------------------------------------+------------------------------------- Reporter: boean | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * version: 2.1.1 => git-master -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:57:02 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:57:02 -0000 Subject: [FFmpeg-trac] #3201(undetermined:new): A/V desync without -async 1 In-Reply-To: <036.6f9df58f5eb3dbf50e7d4df58e6ce03c@avcodec.org> References: <036.6f9df58f5eb3dbf50e7d4df58e6ce03c@avcodec.org> Message-ID: <051.6a6478035650a178c5f00b49728c7ca6@avcodec.org> #3201: A/V desync without -async 1 -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Sample uploaded to http://samples.ffmpeg.org/ffmpeg-bugs/trac/ticket3201/ -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 10:58:22 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 09:58:22 -0000 Subject: [FFmpeg-trac] #3195(avformat:closed): Can't detect AAC audio in MPEG-PS format In-Reply-To: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> References: <037.a2da7e237b9880b7622e5dce8164fd67@avcodec.org> Message-ID: <052.0ca71c615d24923006735d1191b5340b@avcodec.org> #3195: Can't detect AAC audio in MPEG-PS format ------------------------------------+------------------------------------ Reporter: zoominla | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: mpegps aac | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed in af7562a0 - thank you for the report! I opened ticket #3201 for the A/V desync issue. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 11:59:45 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 10:59:45 -0000 Subject: [FFmpeg-trac] #3172(undetermined:new): Closed captions in mov_text in f4v In-Reply-To: <036.b63a88105283e1b5988f7b5e923efae1@avcodec.org> References: <036.b63a88105283e1b5988f7b5e923efae1@avcodec.org> Message-ID: <051.30849b04a3c85d80855885afc60a0e1c@avcodec.org> #3172: Closed captions in mov_text in f4v -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: enhancement | Status: new Priority: wish | Component: Version: git-master | undetermined Keywords: sub cc mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by compn): from someone that knows more about it than me: "They're essentially just base64'ing the raw cc608/cc708 data wrapped in some transport stream-type packets." -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 13:35:15 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 12:35:15 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.83c2bbef5884f226bcf8aff237e4159a@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): I am unable to reproduce the assertion failure with the sample and command line you provided: {{{ $ ffmpeg -i bad_chunk.vob -map 0:1 -codec copy -f segment output/output-1-%08d.nut ffmpeg version N-58799-g5ac5581 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 6 2013 11:02:07 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 46.100 / 55. 46.100 libavformat 55. 22.101 / 55. 22.101 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, mpeg, from 'bad_chunk.vob': Duration: N/A, start: 0.053622, bitrate: N/A Stream #0:0[0x1bf]: Data: dvd_nav_packet Stream #0:1[0x1e0]: Video: mpeg2video (Main), yuv420p(tv), 720x576 [SAR 64:45 DAR 16:9], max. 7500 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:2[0x2a]: Subtitle: dvd_subtitle Stream #0:3[0x29]: Subtitle: dvd_subtitle Stream #0:4[0x28]: Subtitle: dvd_subtitle Stream #0:5[0x27]: Subtitle: dvd_subtitle Stream #0:6[0x26]: Subtitle: dvd_subtitle Stream #0:7[0x25]: Subtitle: dvd_subtitle Stream #0:8[0x24]: Subtitle: dvd_subtitle Stream #0:9[0x23]: Subtitle: dvd_subtitle Stream #0:10[0x22]: Subtitle: dvd_subtitle Stream #0:11[0x21]: Subtitle: dvd_subtitle Stream #0:12[0x20]: Subtitle: dvd_subtitle [segment @ 0x22e3560] Failed to open segment 'output/output-1-00000000.nut' Output #0, segment, to 'output/output-1-%08d.nut': Metadata: encoder : Lavf55.22.101 Stream #0:0: Video: mpeg2video, yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, max. 7500 kb/s, 25 fps, 90k tbn, 25 tbc Stream mapping: Stream #0:1 -> #0:0 (copy) Could not write header for output file #0 (incorrect codec parameters ?): No such file or directory }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 13:40:37 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 12:40:37 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.c1c1ec4ef3fd854b78cd129e0dc74f69@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ob): I guess the error you got before you edited your post was because the output directory didn't exist, which you apparently fixed. The new error does look like the last one I'm getting. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 13:44:39 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 12:44:39 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.bfc1bf665750c76bb133896d38eacef9@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): But your original report was about an assertion failure (which is an important crash), how can I reproduce it? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 14:20:38 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 13:20:38 -0000 Subject: [FFmpeg-trac] #3202(FFmpeg:new): Coverting Audio to AAC using ffmpeg Message-ID: <036.c0784f168cd485d57471156189976eb0@avcodec.org> #3202: Coverting Audio to AAC using ffmpeg -------------------------------------+------------------------------------- Reporter: sobytes | Type: task Status: new | Priority: normal Component: FFmpeg | Version: Keywords: AAC, Low | unspecified Complexity Profile (LC). | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Hi All I am relatively new to ffmpeg so i trying to get my head around certain things so apologies if this is in the wrong place, but i have been asked to setup a service and they require the format of all audio to be in AAC, Low Complexity Profile (LC). I have been reading through the docs and i can see this command. ffmpeg -i input.wav -c:a libfdk_aac -b:a 128k output.m4a but i dont have libfdk_aac installed with my ffmpeg system i am a bit nervous about messing with my setup as it took me a while to get it all installed. Here is my ffmpeg setup ffmpeg version N-54790-g1816f55-syslint Copyright (c) 2000-2013 the FFmpeg developers built on Jul 17 2013 21:34:32 with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-3) configuration: --prefix=/usr/local/cpffmpeg --enable-shared --enable- nonfree --enable-gpl --enable-pthreads --enable-libopencore-amrnb --enable-decoder=liba52 --enable-libopencore-amrwb --enable-libfaac --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --extra-cflags=-I/usr/local/cpffmpeg/include/ --extra- ldflags=-L/usr/local/cpffmpeg/lib --enable-version3 --extra- version=syslint libavutil 52. 40.100 / 52. 40.100 libavcodec 55. 18.102 / 55. 18.102 libavformat 55. 12.102 / 55. 12.102 libavdevice 55. 3.100 / 55. 3.100 libavfilter 3. 81.101 / 3. 81.101 libswscale 2. 4.100 / 2. 4.100 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 3.100 / 52. 3.100 So i am trying to do the task with a different encoder libfaac which is installed like this. ffmpeg -i BillyGraham_1998.mp3 -c:a libfaac -q:a 330 -cutoff 15000 output.m4a But i get the following errors [buffer @ 0x1e12860] Unable to parse option value "0x0" as image size [buffer @ 0x1e12860] Unable to parse option value "-1" as pixel format [buffer @ 0x1e12860] Unable to parse option value "0x0" as image size [buffer @ 0x1e12860] Error setting option video_size to value 0x0. [graph 0 input from stream 0:1 @ 0x1e12740] Error applying options to the filter. Error opening filters! Any help would be really appreciated thanks -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 14:28:56 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 13:28:56 -0000 Subject: [FFmpeg-trac] #3202(undetermined:closed): Coverting Audio to AAC using ffmpeg In-Reply-To: <036.c0784f168cd485d57471156189976eb0@avcodec.org> References: <036.c0784f168cd485d57471156189976eb0@avcodec.org> Message-ID: <051.169957cd76df00c852305ebd79559957@avcodec.org> #3202: Coverting Audio to AAC using ffmpeg -------------------------------------+------------------------------------- Reporter: sobytes | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: AAC, Low Complexity Profile (LC). => * resolution: => invalid * status: new => closed * component: FFmpeg => undetermined * type: task => defect Comment: This is a bug tracker, not a support forum. Please post all usage questions to the ffmpeg-user user mailing list. Note that it is not necessary to install FFmpeg to run it (I never install). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 14:37:12 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 13:37:12 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.a7b072e0978afef2b34dc482e1921fed@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ob): Yes, this bug drifted a little bit from the original report. I'll try to cut samples from the other VOB files to try and reproduce with {{{concat}}} and content I can upload. I'll update this when I'm done. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 14:50:15 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 13:50:15 -0000 Subject: [FFmpeg-trac] #3202(undetermined:closed): Coverting Audio to AAC using ffmpeg In-Reply-To: <036.c0784f168cd485d57471156189976eb0@avcodec.org> References: <036.c0784f168cd485d57471156189976eb0@avcodec.org> Message-ID: <051.85262ce181c09aa0f8055522e0293993@avcodec.org> #3202: Coverting Audio to AAC using ffmpeg -------------------------------------+------------------------------------- Reporter: sobytes | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by sobytes): Ah right ok apologies -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 16:49:37 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 15:49:37 -0000 Subject: [FFmpeg-trac] #3200(undetermined:new): Trying to remove 1152 samples, but the queue is empty In-Reply-To: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> References: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> Message-ID: <049.e0c15ee851ef414518be9626210bb5e6@avcodec.org> #3200: Trying to remove 1152 samples, but the queue is empty -------------------------------------+------------------------------------- Reporter: boean | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by boean): 2.1.1 version convert mp3 by libmp3lame the OUT.mp3 duration morethan the INPUT audio attachments limit 2.5m .I did not upload the audio file. Any audio file convert to mp3 that report the "Last message repeated XXXXX times"message -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 17:14:17 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 16:14:17 -0000 Subject: [FFmpeg-trac] #3200(undetermined:new): Trying to remove 1152 samples, but the queue is empty In-Reply-To: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> References: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> Message-ID: <049.70bbe4ba6579b25d937fbb800fef4071@avcodec.org> #3200: Trying to remove 1152 samples, but the queue is empty -------------------------------------+------------------------------------- Reporter: boean | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:5 boean]: > 2.1.1 version convert mp3 by libmp3lame the OUT.mp3 duration morethan the INPUT audio attachments limit 2.5m . I may misunderstand but please either upload to http://www.datafilehost.com/ or read http://ffmpeg.org/bugreports.html -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 22:37:42 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 21:37:42 -0000 Subject: [FFmpeg-trac] #3105(undetermined:new): hevc: crash with threads 1 and max_alloc (fuzzed file) In-Reply-To: <038.29daf2b63edefb559240ef64566580ca@avcodec.org> References: <038.29daf2b63edefb559240ef64566580ca@avcodec.org> Message-ID: <053.904fc639a09d0123ce8b40b7d200dc69@avcodec.org> #3105: hevc: crash with threads 1 and max_alloc (fuzzed file) -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: important | Component: Version: unspecified | undetermined Keywords: hevc crash | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ami_stuff): git head {{{ (gdb) r -max_alloc 250000 -threads 5 -i fhevc2_2.ts -f null - Starting program: /media/sdb1/ffmpeg/ffmpeg_g -max_alloc 250000 -threads 5 -i fhevc2_2.ts -f null - [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/i386-linux-gnu/libthread_db.so.1". ffmpeg version 2.1.git Copyright (c) 2000-2013 the FFmpeg developers built on Dec 6 2013 22:22:51 with gcc 4.7 (Debian 4.7.2-5) configuration: --disable-yasm --disable-ffserver --disable-ffprobe --enable-gpl libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 3 times [hevc @ 0x91f6b80] vps_reserved_three_2bits is not three [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] chroma_format_idc != 1 [hevc @ 0x91f6b80] is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented. [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_num_reorder_pics out of range: 30737 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 327759 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 47 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] Too many refs in a short term RPS. [mpegts @ 0x91f2dc0] PES packet size mismatch [hevc @ 0x91f6b80] No profile indication! (4) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 447 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] No profile indication! (8) [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] chroma_format_idc != 1 [hevc @ 0x91f6b80] is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented. [hevc @ 0x91f6b80] vps_reserved_three_2bits is not three [mpegts @ 0x91f2dc0] PES packet size mismatch [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 512 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] SPS id out of range: 319 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] SPS id out of range: 1535 [hevc @ 0x91f6b80] PPS id out of range: 1 [hevc @ 0x91f6b80] vps_reserved_ffff_16bits is not 0xffff [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 3 times [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 767 [hevc @ 0x91f6b80] No profile indication! (0) [mpegts @ 0x91f2dc0] Invalid timestamps stream=0, pts=74784, dts=87568, size=4001 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 983615 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] Invalid coded frame dimensions. [hevc @ 0x91f6b80] vps_reserved_three_2bits is not three [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 2 times [hevc @ 0x91f6b80] vps_reserved_ffff_16bits is not 0xffff [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] SPS id out of range: 393215 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 2 times [hevc @ 0x91f6b80] PPS id out of range: 0 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 184549379 [hevc @ 0x91f6b80] vps_reserved_three_2bits is not three [hevc @ 0x91f6b80] PPS id out of range: 0 [mpegts @ 0x91f2dc0] Invalid timestamps stream=0, pts=123595, dts=16897211, size=4757 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] PPS id out of range: 0 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 239 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] chroma_format_idc != 1 [hevc @ 0x91f6b80] is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented. [mpegts @ 0x91f2dc0] DTS discontinuity in stream 0: packet 17 with DTS 116241, packet 18 with DTS 16897211 [mpegts @ 0x91f2dc0] PES packet size mismatch [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 767 [hevc @ 0x91f6b80] PPS id out of range: 63 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] Too many short term RPS: -1. [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] vps_reserved_ffff_16bits is not 0xffff [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 8575 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] chroma_format_idc != 1 [hevc @ 0x91f6b80] is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented. [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 983615 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] PPS id out of range: 0 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] SPS id out of range: 328271 [hevc @ 0x91f6b80] SPS does not exist [hevc @ 0x91f6b80] PPS id out of range: 0 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 767 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 319 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 983615 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 1535 [mpegts @ 0x91f2dc0] PES packet size mismatch [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] No profile indication! (5) [hevc @ 0x91f6b80] SPS id out of range: 327759 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_reserved_ffff_16bits is not 0xffff [hevc @ 0x91f6b80] No profile indication! (4) [hevc @ 0x91f6b80] SPS id out of range: 327759 [mpegts @ 0x91f2dc0] Invalid timestamps stream=0, pts=178551, dts=191335, size=4205 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 239 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 251806207 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 1535 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 61475 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 327759 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] Too many short term RPS: -1. [mpegts @ 0x91f2dc0] Invalid timestamps stream=0, pts=236236, dts=33787068, size=4573 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] SPS id out of range: 327759 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 5 times [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 1141096591 [mpegts @ 0x91f2dc0] Invalid timestamps stream=0, pts=247500, dts=4295211196, size=4941 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_num_reorder_pics out of range: 1920 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 327759 [mpegts @ 0x91f2dc0] DTS discontinuity in stream 0: packet 34 with DTS 209953, packet 35 with DTS 33787068 [mpegts @ 0x91f2dc0] PES packet size mismatch [mpegts @ 0x91f2dc0] Invalid timestamps stream=0, pts=255010, dts=1299986, size=944 [mpegts @ 0x91f2dc0] PES packet size mismatch Last message repeated 21 times [mpegts @ 0x91f2dc0] probed stream 2 failed [mpegts @ 0x91f2dc0] probed stream 3 failed [mpegts @ 0x91f2dc0] probed stream 4 failed [mpegts @ 0x91f2dc0] probed stream 5 failed [mpegts @ 0x91f2dc0] probed stream 7 failed [mpegts @ 0x91f2dc0] probed stream 8 failed [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 3841 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 1 times [hevc @ 0x91f6b80] SPS id out of range: 319 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_reserved_ffff_16bits is not 0xffff [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 319 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 239 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] log2_parallel_merge_level_minus2 out of range: 75264 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] No profile indication! (8) [hevc @ 0x91f6b80] SPS id out of range: 2424911 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 895 [mpegts @ 0x91f2dc0] Invalid timestamps stream=0, pts=828109, dts=4295234749, size=4727 [hevc @ 0x91f6b80] No profile indication! (0) Last message repeated 2 times [...] [null @ 0x9225ca0] Application provided invalid, non monotonically increasing dts to muxer in stream 0: 4207500 >= 1751250 [hevc @ 0x92fb9e0] No profile indication! (0) [hevc @ 0x92fb9e0] vps_max_dec_pic_buffering_minus1 out of range: 767 [hevc @ 0x92fb9e0] Error parsing NAL unit #1. [hevc @ 0x92fb9e0] No profile indication! (0) [hevc @ 0x92fb9e0] Luma bit depth (9) is different from chroma bit depth (8), this is unsupported. [hevc @ 0x92fb9e0] Error parsing NAL unit #2. [null @ 0x9225ca0] Application provided invalid, non monotonically increasing dts to muxer in stream 0: 4207500 >= 1762500 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 67110399 [hevc @ 0x92f7e00] Inter slices in an IRAP frame. [hevc @ 0x92f7e00] Error parsing NAL unit #1. Input stream #0:0 frame changed from size:320x240 fmt:yuv420p to size:320x208 fmt:yuv420p [hevc @ 0x923fbe0] No start code is found. [Thread 0xb6df8b70 (LWP 12432) exited] [Thread 0xb65f8b70 (LWP 12433) exited] [Thread 0xb75f8b70 (LWP 12431) exited] [Thread 0xb7df8b70 (LWP 12430) exited] [Thread 0xb55f8b70 (LWP 12428) exited] [Thread 0xb5df8b70 (LWP 12429) exited] [Thread 0xb45f8b70 (LWP 12426) exited] [Thread 0xb4df8b70 (LWP 12427) exited] [Thread 0xb3df8b70 (LWP 12425) exited] [New Thread 0xb65f8b70 (LWP 12434)] [New Thread 0xb6df8b70 (LWP 12435)] [New Thread 0xb75f8b70 (LWP 12436)] [New Thread 0xb7df8b70 (LWP 12437)] [New Thread 0xb5df8b70 (LWP 12438)] [New Thread 0xb55f8b70 (LWP 12439)] [New Thread 0xb4df8b70 (LWP 12440)] [New Thread 0xb45f8b70 (LWP 12441)] [New Thread 0xb3df8b70 (LWP 12442)] [null @ 0x9225ca0] Application provided invalid, non monotonically increasing dts to muxer in stream 0: 4207500 >= 1770000 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x9231220] No profile indication! (0) [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 131074 [hevc @ 0x91f6b80] No profile indication! (0) Input stream #0:0 frame changed from size:320x208 fmt:yuv420p to size:320x240 fmt:yuv420p [hevc @ 0x9311dc0] Invalid NAL unit 32, skipping. [hevc @ 0x9311dc0] No profile indication! (0) [Thread 0xb3df8b70 (LWP 12442) exited] [Thread 0xb65f8b70 (LWP 12434) exited] [Thread 0xb5df8b70 (LWP 12438) exited] [Thread 0xb7df8b70 (LWP 12437) exited] [Thread 0xb75f8b70 (LWP 12436) exited] [Thread 0xb45f8b70 (LWP 12441) exited] [Thread 0xb4df8b70 (LWP 12440) exited] [Thread 0xb6df8b70 (LWP 12435) exited] [Thread 0xb55f8b70 (LWP 12439) exited] [New Thread 0xb3df8b70 (LWP 12443)] [New Thread 0xb45f8b70 (LWP 12444)] [New Thread 0xb4df8b70 (LWP 12445)] [New Thread 0xb55f8b70 (LWP 12446)] [New Thread 0xb5df8b70 (LWP 12447)] [New Thread 0xb7df8b70 (LWP 12448)] [New Thread 0xb75f8b70 (LWP 12449)] [New Thread 0xb6df8b70 (LWP 12450)] [New Thread 0xb65f8b70 (LWP 12451)] [null @ 0x9225ca0] Application provided invalid, non monotonically increasing dts to muxer in stream 0: 4207500 >= 1781250 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] vps_max_dec_pic_buffering_minus1 out of range: 767 [hevc @ 0x91f6b80] No profile indication! (0) [hevc @ 0x91f6b80] SPS id out of range: 327759 *** glibc detected *** /media/sdb1/ffmpeg/ffmpeg_g: corrupted double- linked list: 0x092dd620 *** ======= Backtrace: ========= /lib/i386-linux-gnu/libc.so.6(+0x70a8a)[0xb7ea4a8a] /lib/i386-linux-gnu/libc.so.6(+0x723ac)[0xb7ea63ac] /lib/i386-linux-gnu/libc.so.6(cfree+0x6d)[0xb7ea93ed] /media/sdb1/ffmpeg/ffmpeg_g[0x8907d62] ======= Memory map: ======== 08048000-08bcd000 r-xp 00000000 08:11 19892 /media/sdb1/ffmpeg/ffmpeg_g 08bcd000-08bed000 rw-p 00b85000 08:11 19892 /media/sdb1/ffmpeg/ffmpeg_g 08bed000-0b471000 rw-p 00000000 00:00 0 [heap] 41602000-41619000 r-xp 00000000 08:02 10056 /lib/i386-linux- gnu/libz.so.1.2.7 41619000-4161a000 r--p 00016000 08:02 10056 /lib/i386-linux- gnu/libz.so.1.2.7 4161a000-4161b000 rw-p 00017000 08:02 10056 /lib/i386-linux- gnu/libz.so.1.2.7 41628000-41659000 r-xp 00000000 08:02 10014 /lib/i386-linux- gnu/libncursesw.so.5.9 41659000-4165a000 r--p 00030000 08:02 10014 /lib/i386-linux- gnu/libncursesw.so.5.9 4165a000-4165b000 rw-p 00031000 08:02 10014 /lib/i386-linux- gnu/libncursesw.so.5.9 41673000-41676000 r-xp 00000000 08:02 24959 /usr/lib/i386-linux-gnu /libpulse-simple.so.0.0.3 41676000-41677000 r--p 00002000 08:02 24959 /usr/lib/i386-linux-gnu /libpulse-simple.so.0.0.3 41677000-41678000 rw-p 00003000 08:02 24959 /usr/lib/i386-linux-gnu /libpulse-simple.so.0.0.3 4178e000-418c2000 r-xp 00000000 08:02 24566 /usr/lib/i386-linux- gnu/libX11.so.6.3.0 418c2000-418c6000 rw-p 00133000 08:02 24566 /usr/lib/i386-linux- gnu/libX11.so.6.3.0 418c8000-418e9000 r-xp 00000000 08:02 25047 /usr/lib/i386-linux- gnu/libxcb.so.1.1.0 418e9000-418ea000 r--p 00020000 08:02 25047 /usr/lib/i386-linux- gnu/libxcb.so.1.1.0 418ea000-418eb000 rw-p 00021000 08:02 25047 /usr/lib/i386-linux- gnu/libxcb.so.1.1.0 418ed000-418ef000 r-xp 00000000 08:02 24568 /usr/lib/i386-linux- gnu/libXau.so.6.0.0 418ef000-418f0000 rw-p 00001000 08:02 24568 /usr/lib/i386-linux- gnu/libXau.so.6.0.0 418f2000-418f7000 r-xp 00000000 08:02 24574 /usr/lib/i386-linux- gnu/libXdmcp.so.6.0.0 418f7000-418f8000 rw-p 00004000 08:02 24574 /usr/lib/i386-linux- gnu/libXdmcp.so.6.0.0 41913000-41924000 r-xp 00000000 08:02 24575 /usr/lib/i386-linux- gnu/libXext.so.6.4.0 41924000-41925000 rw-p 00010000 08:02 24575 /usr/lib/i386-linux- gnu/libXext.so.6.4.0 41cd1000-41cd3000 r-xp 00000000 08:02 25013 /usr/lib/i386-linux- gnu/libts-0.0.so.0.1.1 41cd3000-41cd4000 rw-p 00001000 08:02 25013 /usr/lib/i386-linux- gnu/libts-0.0.so.0.1.1 41cd6000-41ce4000 r-xp 00000000 08:02 24578 /usr/lib/i386-linux- gnu/libXi.so.6.1.0 41ce4000-41ce5000 rw-p 0000e000 08:02 24578 /usr/lib/i386-linux- gnu/libXi.so.6.1.0 41f58000-41f6e000 r-xp 00000000 08:02 24654 /usr/lib/i386-linux- gnu/libdirect-1.2.so.9.0.1 41f6e000-41f6f000 rw-p 00016000 08:02 24654 /usr/lib/i386-linux- gnu/libdirect-1.2.so.9.0.1 41f94000-41f98000 r-xp 00000000 08:02 9978 /lib/i386-linux- gnu/libattr.so.1.1.0 41f98000-41f99000 r--p 00003000 08:02 9978 /lib/i386-linux- gnu/libattr.so.1.1.0 41f99000-41f9a000 rw-p 00004000 08:02 9978 /lib/i386-linux- gnu/libattr.so.1.1.0 41f9c000-41fa0000 r-xp 00000000 08:02 9985 /lib/i386-linux- gnu/libcap.so.2.22 41fa0000-41fa1000 rw-p 00003000 08:02 9985 /lib/i386-linux- gnu/libcap.so.2.22 41fa3000-41fab000 r-xp 00000000 08:02 10054 /lib/i386-linux- gnu/libwrap.so.0.7.6 41fab000-41fac000 r--p 00007000 08:02 10054 /lib/i386-linux- gnu/libwrap.so.0.7.6 41fac000-41fad000 rw-p 00008000 08:02 10054 /lib/i386-linux- gnu/libwrap.so.0.7.6 41faf000-41fb4000 r-xp 00000000 08:02 24589 /usr/lib/i386-linux- gnu/libXtst.so.6.1.0 41fb4000-41fb5000 rw-p 00004000 08:02 24589 /usr/lib/i386-linux- gnu/libXtst.so.6.1.0 4244e000-42457000 r-xp 00000000 08:02 24707 /usr/lib/i386-linux- gnu/libfusion-1.2.so.9.0.1 42457000-42458000 rw-p 00008000 08:02 24707 /usr/lib/i386-linux- gnu/libfusion-1.2.so.9.0.1 42489000-42491000 r-xp 00000000 08:02 10005 /lib/i386-linux- gnu/libjson.so.0.1.0 42491000-42492000 r--p 00007000 08:02 10005 /lib/i386-linux- gnu/libjson.so.0.1.0 42492000-42493000 rw-p 00008000 08:02 10005 /lib/i386-linux- gnu/libjson.so.0.1.0 42495000-4249a000 r-xp 00000000 08:02 24603 /usr/lib/i386-linux- gnu/libasyncns.so.0.3.1 4249a000-4249b000 rw-p 00004000 08:02 24603 /usr/lib/i386-linux- gnu/libasyncns.so.0.3.1 424a1000-424a7000 r-xp 00000000 08:02 24920 /usr/lib/i386-linux- gnu/libogg.so.0.8.0 424a7000-424a8000 rw-p 00005000 08:02 24920 /usr/lib/i386-linux- gnu/libogg.so.0.8.0 424aa000-424d4000 r-xp 00000000 08:02 25032 /usr/lib/i386-linux- gnu/libvorbis.so.0.4.5 424d4000-424d5000 r--p 00029000 08:02 25032 /usr/lib/i386-linux- gnu/libvorbis.so.0.4.5 424d5000-424d6000 rw-p 0002a000 08:02 25032 /usr/lib/i386-linux- gnu/libvorbis.so.0.4.5 424d8000-42526000 r-xp 00000000 08:02 24551 /usr/lib/i386-linux- gnu/libFLAC.so.8.2.0 42526000-42527000 r--p 0004d000 08:02 24551 /usr/lib/i386-linux- gnu/libFLAC.so.8.2.0 42527000-42528000 rw-p 0004e000 08:02 24551 /usr/lib/i386-linux- gnu/libFLAC.so.8.2.0 42530000-42534000 r-xp 00000000 08:02 10053 /lib/i386-linux- gnu/libuuid.so.1.3.0 42534000-42535000 r--p 00003000 08:02 10053 /lib/i386-linux- gnu/libuuid.so.1.3.0 42535000-42536000 rw-p 00004000 08:02 10053 /lib/i386-linux- gnu/libuuid.so.1.3.0 4254b000-4263e000 r-xp 00000000 08:02 24600 /usr/lib/i386-linux- gnu/libasound.so.2.0.0 4263e000-42642000 r--p 000f2000 08:02 24600 /usr/lib/i386-linux- gnu/libasound.so.2.0.0 42642000-42643000 rw-p 000f6000 08:02 24600 /usr/lib/i386-linux- gnu/libasound.so.2.0.0 4266f000-426b8000 r-xp 00000000 08:02 9989 /lib/i386-linux- gnu/libdbus-1.so.3.7.2 426b8000-426b9000 ---p 00049000 08:02 9989 /lib/i386-linux- gnu/libdbus-1.so.3.7.2 426b9000-426ba000 r--p 00049000 08:02 9989 /lib/i386-linux- gnu/libdbus-1.so.3.7.2 426ba000-426bb000 rw-p 0004a000 08:02 9989 /lib/i386-linux- gnu/libdbus-1.so.3.7.2 426e9000-42705000 r-xp 00000000 08:02 9997 /lib/i386-linux- gnu/libgcc_s.so.1 42705000-42706000 rw-p 0001b000 08:02 9997 /lib/i386-linux- gnu/libgcc_s.so.1 427f8000-427ff000 r-xp 00000000 08:02 24562 /usr/lib/i386-linux- gnu/libSM.so.6.0.1 427ff000-42800000 rw-p 00006000 08:02 24562 /usr/lib/i386-linux- gnu/libSM.so.6.0.1 42802000-42818000 r-xp 00000000 08:02 24556 /usr/lib/i386-linux- gnu/libICE.so.6.3.0 42818000-4281a000 rw-p 00015000 08:02 24556 /usr/lib/i386-linux- gnu/libICE.so.6.3.0 4281a000-4281b000 rw-p 00000000 00:00 0 428aa000-428c7000 r-xp 00000000 08:02 10046 /lib/i386-linux- gnu/libtinfo.so.5.9 428c7000-428c9000 r--p 0001c000 08:02 10046 /lib/i386-linux- gnu/libtinfo.so.5.9 428c9000-428ca000 rw-p 0001e000 08:02 10046 /lib/i386-linux- gnu/libtinfo.so.5.9 42af2000-42b75000 r-xp 00000000 08:02 24655 /usr/lib/i386-linux- gnu/libdirectfb-1.2.so.9.0.1 42b75000-42b78000 rw-p 00082000 08:02 24655 /usr/lib/i386-linux- gnu/libdirectfb-1.2.so.9.0.1 42bb9000-42bba000 r-xp 00000000 08:02 24565 /usr/lib/i386-linux- gnu/libX11-xcb.so.1.0.0 42bba000-42bbb000 rw-p 00000000 08:02 24565 /usr/lib/i386-linux- gnu/libX11-xcb.so.1.0.0 42bc5000-42c13000 r-xp 00000000 08:02 24960 /usr/lib/i386-linux- gnu/libpulse.so.0.14.2 42c13000-42c14000 r--p 0004d000 08:02 24960 /usr/lib/i386-linux- gnu/libpulse.so.0.14.2 42c14000-42c15000 rw-p 0004e000 08:02 24960 /usr/lib/i386-linux- gnu/libpulse.so.0.14.2 42e38000-42f9e000 r-xp 00000000 08:02 25033 /usr/lib/i386-linux- gnu/libvorbisenc.so.2.0.8 42f9e000-42faf000 r--p 00165000 08:02 25033 /usr/lib/i386-linux- gnu/libvorbisenc.so.2.0.8 42faf000-42fb0000 rw-p 00176000 08:02 25033 /usr/lib/i386-linux- gnu/libvorbisenc.so.2.0.8 42fb2000-43018000 r-xp 00000000 08:02 26819 /usr/lib/i386-linux- gnu/pulseaudio/libpulsecommon-2.0.so 43018000-43019000 r--p 00065000 08:02 26819 /usr/lib/i386-linux- gnu/pulseaudio/libpulsecommon-2.0.so 43019000-4301a000 rw-p 00066000 08:02 26819 /usr/lib/i386-linux- gnu/pulseaudio/libpulsecommon-2.0.so 4308c000-430f9000 r-xp 00000000 08:02 24984 /usr/lib/i386-linux- gnu/libsndfile.so.1.0.25 430f9000-430fb000 r--p 0006c000 08:02 24984 /usr/lib/i386-linux- gnu/libsndfile.so.1.0.25 430fb000-430fc000 rw-p 0006e000 08:02 24984 /usr/lib/i386-linux- gnu/libsndfile.so.1.0.25 430fc000-43100000 rw-p 00000000 00:00 0 43102000-431ea000 r-xp 00000000 08:02 10042 /lib/i386-linux- gnu/libslang.so.2.2.4 431ea000-431ec000 r--p 000e8000 08:02 10042 /lib/i386-linux- gnu/libslang.so.2.2.4 431ec000-431fb000 rw-p 000ea000 08:02 10042 /lib/i386-linux- gnu/libslang.so.2.2.4 431fb000-43235000 rw-p 00000000 00:00 0 44162000-441d4000 r-xp 00000000 08:02 24561 /usr/lib/i386-linux- gnu/libSDL-1.2.so.0.11.4 441d4000-441d5000 r--p 00071000 08:02 24561 /usr/lib/i386-linux- gnu/libSDL-1.2.so.0.11.4 441d5000-441d6000 rw-p 00072000 08:02 24561 /usr/lib/i386-linux- gnu/libSDL-1.2.so.0.11.4 441d6000-44200000 rw-p 00000000 00:00 0 44202000-442c9000 r-xp 00000000 08:02 24627 /usr/lib/i386-linux- gnu/libcaca.so.0.99.18 442c9000-442ca000 rw-p 000c6000 08:02 24627 /usr/lib/i386-linux- gnu/libcaca.so.0.99.18 442ca000-442cf000 rw-p 00000000 00:00 0 b0c00000-b0cfc000 rw-p 00000000 00:00 0 b0cfc000-b0d00000 ---p 00000000 00:00 0 b0df9000-b0dfa000 ---p 00000000 00:00 0 b0dfa000-b15f9000 rw-p 00000000 00:00 0 [stack:12370] b15f9000-b15fa000 ---p 00000000 00:00 0 b15fa000-b1df9000 rw-p 00000000 00:00 0 [stack:12369] b1df9000-b1dfa000 ---p 00000000 00:00 0 b1dfa000-b25f9000 rw-p 00000000 00:00 0 [stack:12368] b25f9000-b25fa000 ---p 00000000 00:00 0 b25fa000-b2df9000 rw-p 00000000 00:00 0 [stack:12367] b2df9000-b2dfa000 ---p 00000000 00:00 0 b2dfa000-b35f9000 rw-p 00000000 00:00 0 [stack:12366] b35f9000-b35fa000 ---p 00000000 00:00 0 b35fa000-b3df9000 rw-p 00000000 00:00 0 [stack:12443] b3df9000-b3dfa000 ---p 00000000 00:00 0 b3dfa000-b45f9000 rw-p 00000000 00:00 0 [stack:12444] b45f9000-b45fa000 ---p 00000000 00:00 0 b45fa000-b4df9000 rw-p 00000000 00:00 0 [stack:12445] b4df9000-b4dfa000 ---p 00000000 00:00 0 b4dfa000-b55f9000 rw-p 00000000 00:00 0 [stack:12446] b55f9000-b55fa000 ---p 00000000 00:00 0 b55fa000-b5df9000 rw-p 00000000 00:00 0 [stack:12447] b5df9000-b5dfa000 ---p 00000000 00:00 0 b5dfa000-b65f9000 rw-p 00000000 00:00 0 [stack:12451] b65f9000-b65fa000 ---p 00000000 00:00 0 b65fa000-b6df9000 rw-p 00000000 00:00 0 [stack:12450] b6df9000-b6dfa000 ---p 00000000 00:00 0 b6dfa000-b75f9000 rw-p 00000000 00:00 0 [stack:12449] b75f9000-b75fa000 ---p 00000000 00:00 0 b75fa000-b7dfc000 rw-p 00000000 00:00 0 [stack:12448] b7dfc000-b7e0d000 r-xp 00000000 08:02 29160 /lib/i386-linux- gnu/libresolv-2.13.so b7e0d000-b7e0e000 r--p 00010000 08:02 29160 /lib/i386-linux- gnu/libresolv-2.13.so b7e0e000-b7e0f000 rw-p 00011000 08:02 29160 /lib/i386-linux- gnu/libresolv-2.13.so b7e0f000-b7e12000 rw-p 00000000 00:00 0 b7e12000-b7e25000 r-xp 00000000 08:02 29162 /lib/i386-linux- gnu/libnsl-2.13.so b7e25000-b7e26000 r--p 00012000 08:02 29162 /lib/i386-linux- gnu/libnsl-2.13.so b7e26000-b7e27000 rw-p 00013000 08:02 29162 /lib/i386-linux- gnu/libnsl-2.13.so b7e27000-b7e2f000 rw-p 00000000 00:00 0 b7e2f000-b7e31000 r-xp 00000000 08:02 29151 /lib/i386-linux- gnu/libdl-2.13.so b7e31000-b7e32000 r--p 00001000 08:02 29151 /lib/i386-linux- gnu/libdl-2.13.so b7e32000-b7e33000 rw-p 00002000 08:02 29151 /lib/i386-linux- gnu/libdl-2.13.so b7e33000-b7e34000 rw-p 00000000 00:00 0 b7e34000-b7f7b000 r-xp 00000000 08:02 29158 /lib/i386-linux- gnu/libc-2.13.so b7f7b000-b7f7c000 ---p 00147000 08:02 29158 /lib/i386-linux- gnu/libc-2.13.so b7f7c000-b7f7e000 r--p 00147000 08:02 29158 /lib/i386-linux- gnu/libc-2.13.so b7f7e000-b7f7f000 rw-p 00149000 08:02 29158 /lib/i386-linux- gnu/libc-2.13.so b7f7f000-b7f82000 rw-p 00000000 00:00 0 b7f82000-b7f97000 r-xp 00000000 08:02 29148 /lib/i386-linux- gnu/libpthread-2.13.so b7f97000-b7f98000 r--p 00014000 08:02 29148 /lib/i386-linux- gnu/libpthread-2.13.so b7f98000-b7f99000 rw-p 00015000 08:02 29148 /lib/i386-linux- gnu/libpthread-2.13.so b7f99000-b7f9b000 rw-p 00000000 00:00 0 b7f9b000-b7fa2000 r-xp 00000000 08:02 29153 /lib/i386-linux- gnu/librt-2.13.so b7fa2000-b7fa3000 r--p 00006000 08:02 29153 /lib/i386-linux- gnu/librt-2.13.so b7fa3000-b7fa4000 rw-p 00007000 08:02 29153 /lib/i386-linux- gnu/librt-2.13.so b7fa4000-b7fc8000 r-xp 00000000 08:02 29155 /lib/i386-linux- gnu/libm-2.13.so b7fc8000-b7fc9000 r--p 00023000 08:02 29155 /lib/i386-linux- gnu/libm-2.13.so b7fc9000-b7fca000 rw-p 00024000 08:02 29155 /lib/i386-linux- gnu/libm-2.13.so b7fca000-b7fcb000 rw-p 00000000 00:00 0 b7fe0000-b7fe2000 rw-p 00000000 00:00 0 b7fe2000-b7ffe000 r-xp 00000000 08:02 29161 /lib/i386-linux- gnu/ld-2.13.so b7ffe000-b7fff000 r--p 0001b000 08:02 29161 /lib/i386-linux- gnu/ld-2.13.so b7fff000-b8000000 rw-p 0001c000 08:02 29161 /lib/i386-linux- gnu/ld-2.13.so bffdf000-c0000000 rw-p 00000000 00:00 0 [stack] ffffe000-fffff000 r-xp 00000000 00:00 0 [vdso] Program received signal SIGABRT, Aborted. 0xb7e5e667 in *__GI_raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64 64 ../nptl/sysdeps/unix/sysv/linux/raise.c: No such file or directory. (gdb) bt #0 0xb7e5e667 in *__GI_raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64 #1 0xb7e61a52 in *__GI_abort () at abort.c:92 #2 0xb7e9a98d in __libc_message (do_abort=2, fmt=0xb7f61330 "*** glibc detected *** %s: %s: 0x%s ***\n") at ../sysdeps/unix/sysv/linux/libc_fatal.c:189 #3 0xb7ea4a8a in malloc_printerr (action=, str=0x6
, ptr=0x92dd620) at malloc.c:6283 #4 0xb7ea63ac in _int_free (av=, p=0x92dc7c0) at malloc.c:4973 #5 0xb7ea93ed in *__GI___libc_free (mem=0x92dccc0) at malloc.c:3738 #6 0x08907d62 in av_free (ptr=) at libavutil/mem.c:231 #7 av_freep (arg=arg at entry=0x920e28c) at libavutil/mem.c:238 #8 0x084e3952 in pic_arrays_free (s=s at entry=0x920d500) at libavcodec/hevc.c:57 #9 0x084e53e0 in set_sps (s=s at entry=0x920d500, sps=0xaffa2e0) at libavcodec/hevc.c:286 #10 0x084e5d70 in hevc_update_thread_context (dst=0x92fb9e0, src=0x9311dc0) at libavcodec/hevc.c:2786 #11 0x086287f2 in update_context_from_thread (for_user=0, src=0x9311dc0, dst=) at libavcodec/pthread_frame.c:233 #12 submit_packet (avpkt=0xbffff298, p=0x923cbc0) at libavcodec/pthread_frame.c:333 #13 ff_thread_decode_frame (avctx=avctx at entry=0x91f6b80, picture=picture at entry=0x9234c80, ---Type to continue, or q to quit--- got_picture_ptr=got_picture_ptr at entry=0xbffff4f4, avpkt=avpkt at entry=0xbffff298) at libavcodec/pthread_frame.c:420 #14 0x086d2929 in avcodec_decode_video2 (avctx=0x91f6b80, picture=picture at entry=0x9234c80, got_picture_ptr=got_picture_ptr at entry=0xbffff4f4, avpkt=avpkt at entry=0xbffff740) at libavcodec/utils.c:2062 #15 0x080c0e3d in decode_video (ist=ist at entry=0x9226480, pkt=pkt at entry=0xbffff740, got_output=got_output at entry=0xbffff4f4) at ffmpeg.c:1695 #16 0x080c4f6a in output_packet (pkt=0xbffff6d8, ist=0x9226480) at ffmpeg.c:1908 #17 process_input (file_index=9) at ffmpeg.c:3216 #18 0x080a9dfb in transcode_step () at ffmpeg.c:3312 #19 transcode () at ffmpeg.c:3364 #20 main (argc=, argv=) at ffmpeg.c:3544 (gdb) }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 23:13:51 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 22:13:51 -0000 Subject: [FFmpeg-trac] #3197(avformat:new): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.43c24aef6c5d265a25e3fc078a7acfac@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ob): {{{~/git/ffmpeg/ffmpeg -i new_bad.vob -map 0:1 -map 0:13 -codec copy -f segment output-%08d.nut}}} seems to reproduce the problem consistently. It's crafted from the 298 first blocks of both VTS_01_0.VOB and VTS_01_1.VOB (each block being 2048 bytes). Hopefully this doesn't reproduce the problem for completely different reasons. {{{new_bad.vob}}} attached. {{{ $ ~/git/ffmpeg/ffmpeg -i new_bad.vob -map 0:1 -map 0:13 -codec copy -f segment output-%08d.nut ffmpeg version N-58754-ge2bf00c Copyright (c) 2000-2013 the FFmpeg developers built on Dec 5 2013 18:55:53 with gcc 4.8 (Ubuntu/Linaro 4.8.1-10ubuntu9) configuration: --disable-stripping libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 Input #0, mpeg, from 'new_bad.vob': Duration: 00:00:02.01, start: 0.053622, bitrate: 3033 kb/s Stream #0:0[0x1bf]: Data: dvd_nav_packet Stream #0:1[0x1e0]: Video: mpeg2video (Main), yuv420p(tv, bt470bg), 720x576 [SAR 64:45 DAR 16:9], max. 7500 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:2[0x21]: Subtitle: dvd_subtitle Stream #0:3[0x20]: Subtitle: dvd_subtitle Stream #0:4[0x2a]: Subtitle: dvd_subtitle Stream #0:5[0x29]: Subtitle: dvd_subtitle Stream #0:6[0x28]: Subtitle: dvd_subtitle Stream #0:7[0x27]: Subtitle: dvd_subtitle Stream #0:8[0x26]: Subtitle: dvd_subtitle Stream #0:9[0x25]: Subtitle: dvd_subtitle Stream #0:10[0x24]: Subtitle: dvd_subtitle Stream #0:11[0x23]: Subtitle: dvd_subtitle Stream #0:12[0x22]: Subtitle: dvd_subtitle Stream #0:13[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Output #0, segment, to 'output-%08d.nut': Metadata: encoder : Lavf55.22.100 Stream #0:0: Video: mpeg2video, yuv420p, 720x576 [SAR 64:45 DAR 16:9], q=2-31, max. 7500 kb/s, 25 fps, 90k tbn, 25 tbc Stream #0:1: Audio: ac3, 48000 Hz, stereo, 192 kb/s Stream mapping: Stream #0:1 -> #0:0 (copy) Stream #0:13 -> #0:1 (copy) Press [q] to stop, [?] for help [segment @ 0x9703540] Non-monotonous DTS in output stream 0:0; previous: -3600, current: -3600; changing to -3599. This may result in incorrect timestamps in the output file. Assertion nus->keyframe_pts[k] > last_pts failed at libavformat/nutenc.c:598 Aborted }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 6 23:56:46 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 06 Dec 2013 22:56:46 -0000 Subject: [FFmpeg-trac] #3197(avformat:open): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.e02335833115d69e67261bc919d69315@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: open Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: nut crash abort => nut crash abort regression * status: new => open * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 02:55:55 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 01:55:55 -0000 Subject: [FFmpeg-trac] #3203(build system:new): Windows MSVC configure failed. Message-ID: <038.0e04370b1343b6ebf6ab533fbfff362a@avcodec.org> #3203: Windows MSVC configure failed. -------------------------------------+------------------------------------- Reporter: persanker | Type: defect Status: new | Priority: critical Component: build | Version: git- system | master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: How to reproduce: {{{ open visual studio 2010 command prompt run msys.bat to open msys command prompt run ./configure --toolchain=msvc }}} Result: {{{ cl is unable to create an executable file. If cl is a cross-compiler, use the --enable-cross-compile option. Only do this if you know what cross compiling means. C compiler test failed. }}} Lines in config.log: {{{ link -o ./ffconf.ldwHcjto.exe ./ffconf.TGmoNFot.o link: invalid option -- o Try `link --help' for more information. C compiler test failed. }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 03:24:48 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 02:24:48 -0000 Subject: [FFmpeg-trac] #3203(build system:closed): Windows MSVC configure failed. In-Reply-To: <038.0e04370b1343b6ebf6ab533fbfff362a@avcodec.org> References: <038.0e04370b1343b6ebf6ab533fbfff362a@avcodec.org> Message-ID: <053.2b79c842368da92bb49fbc9de03be55f@avcodec.org> #3203: Windows MSVC configure failed. -------------------------------------+------------------------------------- Reporter: persanker | Owner: Type: defect | Status: closed Priority: critical | Component: build Version: git-master | system Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by dbuitenh): * status: new => closed * resolution: => invalid Comment: You did not read the documentation (http://ffmpeg.org/platform.html #Microsoft-Visual-C_002b_002b-or-Intel-C_002b_002b-Compiler-for-Windows) Specifically: ''It is possible that coreutils' link.exe conflicts with MSVC?s linker. You can find out by running 'which link' to see which link.exe you are using. If it is located at /bin/link.exe, then you have the wrong one in your PATH. Either move or remove that copy, or make sure MSVC?s link.exe takes precedence in your PATH over coreutils'.'' -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 06:30:21 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 05:30:21 -0000 Subject: [FFmpeg-trac] #3204(avcodec:new): VC1 Intensity Compensation is always used once encountered Message-ID: <036.c03d4767915c89f1c0dd812f914eaaf8@avcodec.org> #3204: VC1 Intensity Compensation is always used once encountered -------------------------------------+------------------------------------- Reporter: mcarter | Type: defect Status: new | Priority: normal Component: avcodec | Version: git- Keywords: vc1 | master intensity compensation | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- I noticed that VC1 decoding performance dropped after upgrading to the latest git code. I profiled it and found that a lot (double-digit %) of time was spent in `libavcodec/vc1dec.c:vc1_mc_1mv` under "`if (use_ic) ...`". I created the attached patch, intcomp.patch (just output from git diff), to instrument libavcodec and I ran: {{{ % ffmpeg -t 60 -i BigBuckBunny_1080p24.wmv -an -f null - ... g_identity_lut_count: 41704276, g_non_identity_lut_count: 154612 g_vc1_mc_1mv_calls: 10474337, g_use_ic_times: 10464722 }}} The file is from http://bit.ly/bbbwmv which is from http://msdn.microsoft.com/en-us/expression/hh553539.aspx. The result was that for 60 sec of decoding this VC1 Advanced Profile video, vc1_mc_1mv was called 10,474,337 times and of that, it did intensity compensation 10,464,722 times (99.9% of the time). It seems highly improbable that intensity compensation is needed on every single call. Indeed, the instrumentation shows the number of times the intensity compensation lookup tables (luty, lutuv) don't do anything (because they are the identity mapping) and it is the majority of the time (41704276/(41704276+154612)=99.63%). Thus, this suggests a bug in the code. I looked at the git history and this might be the commit that introduced this issue, but I'm not sure: http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=782ebd611824c95201123aeccc85809ce1554e6e I looked at the source code and it seems that once `v->next_use_ic` and/or `v->last_use_ic` are set to 1, they might never go back to 0, perhaps causing the issue (once intensity compensation is encountered in the file, it is used forever). But I'm not very familiar with this code, so I'm not sure. Maybe I'm totally misunderstanding everything and intensity compensation is required for the entire file, even though most of the times it doesn't do anything? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 11:32:21 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 10:32:21 -0000 Subject: [FFmpeg-trac] #3204(avcodec:open): VC1 Intensity Compensation is always used once encountered In-Reply-To: <036.c03d4767915c89f1c0dd812f914eaaf8@avcodec.org> References: <036.c03d4767915c89f1c0dd812f914eaaf8@avcodec.org> Message-ID: <051.70a1a5134fadc85b36cff178422eba4c@avcodec.org> #3204: VC1 Intensity Compensation is always used once encountered -------------------------------------+------------------------------------- Reporter: mcarter | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: vc1 | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: vc1 intensity compensation => vc1 regression * priority: normal => important * status: new => open * reproduced: 0 => 1 Comment: 782ebd61 is the cause for a >5% speed regression in vc1 decoding. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 13:52:19 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 12:52:19 -0000 Subject: [FFmpeg-trac] #3205(undetermined:new): ffmpeg detects input as aac when processing corrupted pcm_s24le and pcm_s32le input Message-ID: <033.d30fcbc8cf89be18c3904cdf59001bec@avcodec.org> #3205: ffmpeg detects input as aac when processing corrupted pcm_s24le and pcm_s32le input -------------------------------------+------------------------------------- Reporter: Fusl | Type: defect Status: new | Priority: minor Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- While trying to test some raw audio formats for under-the-hood processing in my scripts, i came across this "issue": How to reproduce with pcm_s24le acodec: {{{ % ffmpeg -i inputfile -t 30 -acodec pcm_s24le -f wav - > test.wav ffmpeg version N-58613-g26b526e Copyright (c) 2000-2013 the FFmpeg developers built on Nov 30 2013 01:24:40 with gcc 4.8 (SUSE Linux) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libaacplus --enable-x11grab libavutil 52. 55.100 / 52. 55.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 21.102 / 55. 21.102 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, mp3, from 'inputfile': Duration: 01:07:01.94, start: 0.000000, bitrate: 192 kb/s Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16p, 192 kb/s Output #0, wav, to 'pipe:': Metadata: ISFT : Lavf55.21.102 Stream #0:0: Audio: pcm_s24le ([1][0][0][0] / 0x0001), 44100 Hz, stereo, s32, 2116 kb/s Stream mapping: Stream #0:0 -> #0:0 (mp3 -> pcm_s24le) Press [q] to stop, [?] for help size= 7749kB time=00:00:30.01 bitrate=2115.1kbits/s video:0kB audio:7749kB subtitle:0 global headers:0kB muxing overhead 0.001285% tail -c +8144 test.wav | ffmpeg -i pipe:0 -y test.mp3 ffmpeg version N-58613-g26b526e Copyright (c) 2000-2013 the FFmpeg developers built on Nov 30 2013 01:24:40 with gcc 4.8 (SUSE Linux) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libaacplus --enable-x11grab libavutil 52. 55.100 / 52. 55.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 21.102 / 55. 21.102 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [aac @ 0x185c900] Format aac detected only with low score of 1, misdetection possible! [aac @ 0x185d2c0] get_buffer() failed [aac @ 0x185d2c0] Reserved bit set. [aac @ 0x185d2c0] invalid band type [aac @ 0x185d2c0] More than one AAC RDB per ADTS frame is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented. [aac @ 0x185d2c0] Input buffer exhausted before END element found [aac @ 0x185d2c0] Number of bands (3) exceeds limit (2). [aac @ 0x185d2c0] Number of bands (46) exceeds limit (37). [aac @ 0x185d2c0] Reserved bit set. [aac @ 0x185d2c0] channel element 2.10 is not allocated [aac @ 0x185d2c0] Reserved bit set. Last message repeated 1 times etc. (continued on https://ezcrypt.it/P97n#cOHJwrl0Qve2Sx7KCVFJy0wX ) }}} How to reproduce with pcm_s32le acodec: {{{ ffmpeg -i inputfile -t 30 -acodec pcm_s32le -f wav - > test.wav ffmpeg version N-58613-g26b526e Copyright (c) 2000-2013 the FFmpeg developers built on Nov 30 2013 01:24:40 with gcc 4.8 (SUSE Linux) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libaacplus --enable-x11grab libavutil 52. 55.100 / 52. 55.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 21.102 / 55. 21.102 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, mp3, from 'inputfile': Duration: 01:07:01.94, start: 0.000000, bitrate: 192 kb/s Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16p, 192 kb/s Output #0, wav, to 'pipe:': Metadata: ISFT : Lavf55.21.102 Stream #0:0: Audio: pcm_s32le ([1][0][0][0] / 0x0001), 44100 Hz, stereo, s32, 2822 kb/s Stream mapping: Stream #0:0 -> #0:0 (mp3 -> pcm_s32le) Press [q] to stop, [?] for help size= 10332kB time=00:00:30.01 bitrate=2820.1kbits/s video:0kB audio:10332kB subtitle:0 global headers:0kB muxing overhead 0.000964% tail -c +8144 test.wav | ffmpeg -i pipe:0 -y test.mp3 ffmpeg version N-58613-g26b526e Copyright (c) 2000-2013 the FFmpeg developers built on Nov 30 2013 01:24:40 with gcc 4.8 (SUSE Linux) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libaacplus --enable-x11grab libavutil 52. 55.100 / 52. 55.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 21.102 / 55. 21.102 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [aac @ 0x31f7900] Format aac detected only with low score of 1, misdetection possible! [aac @ 0x31f82c0] get_buffer() failed Last message repeated 2344 times [aac @ 0x31f7900] Stream #0: not enough frames to estimate rate; consider increasing probesize [aac @ 0x31f7900] decoding for stream 0 failed [aac @ 0x31f7900] Could not find codec parameters for stream 0 (Audio: aac, 0 channels, fltp, 342 kb/s): unspecified sample rate Consider increasing the value for the 'analyzeduration' and 'probesize' options pipe:0: could not find codec parameters }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 13:58:41 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 12:58:41 -0000 Subject: [FFmpeg-trac] #3205(undetermined:new): ffmpeg detects input as aac when processing corrupted pcm_s24le and pcm_s32le input In-Reply-To: <033.d30fcbc8cf89be18c3904cdf59001bec@avcodec.org> References: <033.d30fcbc8cf89be18c3904cdf59001bec@avcodec.org> Message-ID: <048.10fa12d0e2dfe90f1ef0eb69b9b396e3@avcodec.org> #3205: ffmpeg detects input as aac when processing corrupted pcm_s24le and pcm_s32le input -------------------------------------+------------------------------------- Reporter: Fusl | Owner: Type: defect | Status: new Priority: minor | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by Fusl): Ah, and expected output of both commands: {{{pipe:0: Invalid data found when processing input}}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 14:10:09 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 13:10:09 -0000 Subject: [FFmpeg-trac] #3205(avformat:new): ffmpeg detects input as aac when processing corrupted pcm_s24le and pcm_s32le input In-Reply-To: <033.d30fcbc8cf89be18c3904cdf59001bec@avcodec.org> References: <033.d30fcbc8cf89be18c3904cdf59001bec@avcodec.org> Message-ID: <048.8b5f245464236cab1e207745f5622e7d@avcodec.org> #3205: ffmpeg detects input as aac when processing corrupted pcm_s24le and pcm_s32le input ------------------------------------+------------------------------------ Reporter: Fusl | Owner: Type: defect | Status: new Priority: minor | Component: avformat Version: git-master | Resolution: Keywords: aac | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => aac * version: unspecified => git-master * component: undetermined => avformat Comment: I am not convinced that there is a bug but please provide a sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 14:55:11 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 13:55:11 -0000 Subject: [FFmpeg-trac] #3205(avformat:new): ffmpeg detects input as aac when processing corrupted pcm_s24le and pcm_s32le input In-Reply-To: <033.d30fcbc8cf89be18c3904cdf59001bec@avcodec.org> References: <033.d30fcbc8cf89be18c3904cdf59001bec@avcodec.org> Message-ID: <048.6fd6da3d5678694a0c95b409cebb09b1@avcodec.org> #3205: ffmpeg detects input as aac when processing corrupted pcm_s24le and pcm_s32le input ------------------------------------+------------------------------------ Reporter: Fusl | Owner: Type: defect | Status: new Priority: minor | Component: avformat Version: git-master | Resolution: Keywords: aac | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by Fusl): Sorry for the double attachment, i thought the sample file isn't going to be saved because of it's size of 7.6 MiB. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 17:43:46 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 16:43:46 -0000 Subject: [FFmpeg-trac] #2385(avformat:closed): ffmpeg does not mark xsub language properly In-Reply-To: <037.edb34e5d51725289c9504dc1c1a712d2@avcodec.org> References: <037.edb34e5d51725289c9504dc1c1a712d2@avcodec.org> Message-ID: <052.4b7b86114bc45c6b8effe81d3bdbc0a1@avcodec.org> #2385: ffmpeg does not mark xsub language properly -------------------------------------+------------------------------------ Reporter: someuser | Owner: Type: enhancement | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: xsub avi | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Comment (by someuser): Thanks, I'm happy to confirm the patch fixed the issue! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 17:45:18 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 16:45:18 -0000 Subject: [FFmpeg-trac] #2384(avformat:new): ffmpeg detects avi/divx with xsub as broken In-Reply-To: <037.19c428a0c4ccb48abc87fefa14aaac4c@avcodec.org> References: <037.19c428a0c4ccb48abc87fefa14aaac4c@avcodec.org> Message-ID: <052.0e625a5ea6bbfea6522ef833b0b5cccc@avcodec.org> #2384: ffmpeg detects avi/divx with xsub as broken ------------------------------------+------------------------------------ Reporter: someuser | Owner: Type: defect | Status: new Priority: minor | Component: avformat Version: git-master | Resolution: Keywords: xsub avi | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by someuser): * keywords: => xsub avi * component: undetermined => avformat -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 21:18:42 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 20:18:42 -0000 Subject: [FFmpeg-trac] #3206(FFmpeg:new): Subtitles are NOT burned single frames of videos when you use the seek option "-ss" BEFORE the input Message-ID: <038.d43c8af02ae48929ca40edf93297d2b6@avcodec.org> #3206: Subtitles are NOT burned single frames of videos when you use the seek option "-ss" BEFORE the input -------------------------------------+------------------------------------- Reporter: DeadSix27 | Type: defect Status: new | Priority: normal Component: FFmpeg | Version: git- Keywords: | master libass,ass,filter,subtitle,seeking,bug| Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- No subtitles are burned into single frame JPEG's(Thumbnails) of videos when you use the seek option "-ss" BEFORE the input file and the "ass" filter. But when you use the "-ss" option BEHIND the input it works fine. Below I pasted both outputs, with the -ss before and after input file: '''"-ss" after input''' Does burn in Subtitles and takes ~2minutes: {{{ % ffmpeg -i test.mkv -ss 00:03:25 -vf ass=subtitle.ass -c:v mjpeg -vframes 1 test.jpg ffmpeg version N-58848-g4d18060 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 6 2013 22:01:40 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --e ray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb ibopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable- libvidsta bvorbis --enable-libvpx --enable-libwavpack --enable-libx264 --enable- libxavs --enable-libxvid --enable-zlib libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, matroska,webm, from 'test.mkv': [Parsed_ass_0 @ 054ce4a0] Added subtitle file: 'subtitle.ass' (32 styles, 2538 events) [swscaler @ 0564a9a0] deprecated pixel format used, make sure you did set range correctly [Parsed_ass_0 @ 054ce4a0] fontconfig: cannot find font 'PT Sans', falling back to 'Meiryo UI Negreta' [Parsed_ass_0 @ 054ce4a0] fontconfig: cannot find font 'PT Sans', falling back to 'DejaVu Sans Bold Oblique' [Parsed_ass_0 @ 054ce4a0] fontconfig: cannot find font 'SNsanafonkakuP', falling back to 'Meiryo UI Negreta' frame= 1 fps=0.0 q=0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A video:96kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.022271% }}} '''"-ss" before input''' Does '''NOT''' burn in Subtitles and takes ~0.5seconds: {{{ % ffmpeg -ss 00:03:25 -i test.mkv -vf ass=subtitle.ass -c:v mjpeg -vframes 1 test.jpg ffmpeg version N-58848-g4d18060 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 6 2013 22:01:40 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --e ray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb ibopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable- libvidsta bvorbis --enable-libvpx --enable-libwavpack --enable-libx264 --enable- libxavs --enable-libxvid --enable-zlib libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, matroska,webm, from 'test.mkv': [Parsed_ass_0 @ 057e5fa0] Added subtitle file: 'subtitle.ass' (32 styles, 2538 events) [swscaler @ 0571a0e0] deprecated pixel format used, make sure you did set range correctly Press [q] to stop, [?] for help frame= 1 fps=0.9 q=0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A video:87kB audio:0kB subtitle:0 global headers:0kB muxing overhead -100.024603% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 21:19:03 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 20:19:03 -0000 Subject: [FFmpeg-trac] #3206(FFmpeg:new): Subtitles are NOT burned into single frames of videos when you use the seek option "-ss" BEFORE the input (was: Subtitles are NOT burned single frames of videos when you use the seek option "-ss" BEFORE the input) In-Reply-To: <038.d43c8af02ae48929ca40edf93297d2b6@avcodec.org> References: <038.d43c8af02ae48929ca40edf93297d2b6@avcodec.org> Message-ID: <053.bb0c2ad165f7135626deb124a5bef9e4@avcodec.org> #3206: Subtitles are NOT burned into single frames of videos when you use the seek option "-ss" BEFORE the input -------------------------------------+------------------------------------- Reporter: DeadSix27 | Owner: Type: defect | Status: new Priority: normal | Component: FFmpeg Version: git-master | Resolution: Keywords: | Blocked By: libass,ass,filter,subtitle,seeking,bug| Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 21:30:11 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 20:30:11 -0000 Subject: [FFmpeg-trac] #2381(FFplay:closed): ffplay: resize of the sdl window when -showmode 1/2 is used In-Reply-To: <038.078547d7363c45d789fc784ac12d9743@avcodec.org> References: <038.078547d7363c45d789fc784ac12d9743@avcodec.org> Message-ID: <053.2f8e45257a5271a57b52ca598247deac@avcodec.org> #2381: ffplay: resize of the sdl window when -showmode 1/2 is used ------------------------------------+---------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: FFplay Version: git-master | Resolution: fixed Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+---------------------------------- Changes (by cehoyos): * status: new => closed * version: unspecified => git-master * resolution: => fixed * reproduced: 0 => 1 Comment: Fixed by Marton Balint in ad01fae8 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 21:57:54 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 20:57:54 -0000 Subject: [FFmpeg-trac] #3205(avformat:open): ffmpeg detects pcm audio as aac with score 1 (was: ffmpeg detects input as aac when processing corrupted pcm_s24le and pcm_s32le input) In-Reply-To: <033.d30fcbc8cf89be18c3904cdf59001bec@avcodec.org> References: <033.d30fcbc8cf89be18c3904cdf59001bec@avcodec.org> Message-ID: <048.e9414b34674305769e13e34f2bb2ba8c@avcodec.org> #3205: ffmpeg detects pcm audio as aac with score 1 ------------------------------------+------------------------------------ Reporter: Fusl | Owner: Type: defect | Status: open Priority: minor | Component: avformat Version: git-master | Resolution: Keywords: aac | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => open Comment: I deleted the attachments that are imo not ideal to reproduce the issue (although it made sense that you explained how they were created) and attached both a sample and a possible patch. {{{ $ ffmpeg -i test ffmpeg version N-58868-ge2f800f Copyright (c) 2000-2013 the FFmpeg developers built on Dec 7 2013 21:45:51 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [aac @ 0x2d18100] Format aac detected only with low score of 1, misdetection possible! ... }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sat Dec 7 22:22:17 2013 From: trac at avcodec.org (FFmpeg) Date: Sat, 07 Dec 2013 21:22:17 -0000 Subject: [FFmpeg-trac] #3107(undetermined:new): Problem using muxing example In-Reply-To: <034.e0509d9312deb1833b27efee59f1afdb@avcodec.org> References: <034.e0509d9312deb1833b27efee59f1afdb@avcodec.org> Message-ID: <049.71e02f1cd8734ab948d62eeffda210b6@avcodec.org> #3107: Problem using muxing example -------------------------------------+------------------------------------- Reporter: ahsan | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ahsan): Hi easonic, I am still having the issues where output frame rate, bit rate, codec fields has issues, Please see if you can send me you remux - re encoding sample code I will appreciate that Regards Ahsan -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 06:22:31 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 05:22:31 -0000 Subject: [FFmpeg-trac] #3206(undetermined:new): Subtitles are NOT burned into single frames of videos when you use the seek option "-ss" BEFORE the input In-Reply-To: <038.d43c8af02ae48929ca40edf93297d2b6@avcodec.org> References: <038.d43c8af02ae48929ca40edf93297d2b6@avcodec.org> Message-ID: <053.15d3ff6fc400b16d54808de663ec8835@avcodec.org> #3206: Subtitles are NOT burned into single frames of videos when you use the seek option "-ss" BEFORE the input -------------------------------------+------------------------------------- Reporter: DeadSix27 | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: libass,ass,filter,subtitle,seeking,bug => * component: FFmpeg => undetermined Comment: Please provide the input samples. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 07:27:47 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 06:27:47 -0000 Subject: [FFmpeg-trac] #3204(avcodec:open): VC1 Intensity Compensation is always used once encountered In-Reply-To: <036.c03d4767915c89f1c0dd812f914eaaf8@avcodec.org> References: <036.c03d4767915c89f1c0dd812f914eaaf8@avcodec.org> Message-ID: <051.2439d2ab38b3855a08a5554a2632a8ef@avcodec.org> #3204: VC1 Intensity Compensation is always used once encountered -------------------------------------+------------------------------------- Reporter: mcarter | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: vc1 | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by mcarter): Here is a (probably suboptimal) naive patch that might solve the issue: In `vc1.c`, in `rotate_luts()` after `v->curr_use_ic = 0`, apply this patch: {{{ ROTATE(int tmp, v->last_use_ic, v->next_use_ic, v->curr_use_ic, v->aux_use_ic); ROTATE(uint8_t tmp[2][256], v->last_luty, v->next_luty, v->curr_luty, v->aux_luty); ROTATE(uint8_t tmp[2][256], v->last_lutuv, v->next_lutuv, v->curr_lutuv, v->aux_lutuv); INIT_LUT(32, 0, v->curr_luty[0], v->curr_lutuv[0], 0); INIT_LUT(32, 0, v->curr_luty[1], v->curr_lutuv[1], 0); v->curr_use_ic = 0; +if (v->curr_luty == v->next_luty) { + v->next_use_ic = 0; +} }}} Here's why this makes sense: the previous lines call `INIT_LUT(32, 0, v->curr_luty...` which sets `v->curr_lut{y,uv}[0,1]` to the identity mapping. But note that due to the `ROTATE()` calls, `v->curr_luty` points to either `v->next_luty` or `v->aux_luty`. If `v->curr_luty` points to `v->next_luty`, then the `INIT_LUT()` calls just set `v->next_luty` to the identity mapping. If `v->next_luty` is set to the identity mapping, then `v->next_use_ic` should be set to 0, just as `v->curr_use_ic` has already been set to 0. (We don't need to set `v->aux_use_ic` since it is never read by any code.) An alternative patch would be to use the same test that ROTATE() uses: `if (!(v->s.pict_type == AV_PICTURE_TYPE_BI || v->s.pict_type == AV_PICTURE_TYPE_B)) { v->next_use_ic = 0; }` I'm not 100% sure if either of these are a good fix, but I hope it gives some insight into the problem. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 08:35:06 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 07:35:06 -0000 Subject: [FFmpeg-trac] #3206(undetermined:new): Subtitles are NOT burned into single frames of videos when you use the seek option "-ss" BEFORE the input In-Reply-To: <038.d43c8af02ae48929ca40edf93297d2b6@avcodec.org> References: <038.d43c8af02ae48929ca40edf93297d2b6@avcodec.org> Message-ID: <053.0b01ca542d92b44a092359fc23710616@avcodec.org> #3206: Subtitles are NOT burned into single frames of videos when you use the seek option "-ss" BEFORE the input -------------------------------------+------------------------------------- Reporter: DeadSix27 | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DeadSix27): Replying to [comment:2 cehoyos]: > Please provide the input samples. Can't without breaking copyright laws. I will try to produce sample video files without copyright. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 08:48:45 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 07:48:45 -0000 Subject: [FFmpeg-trac] #3206(undetermined:new): Subtitles are NOT burned into single frames of videos when you use the seek option "-ss" BEFORE the input In-Reply-To: <038.d43c8af02ae48929ca40edf93297d2b6@avcodec.org> References: <038.d43c8af02ae48929ca40edf93297d2b6@avcodec.org> Message-ID: <053.541ed11cf09ac0f65ba21294bd83d03a@avcodec.org> #3206: Subtitles are NOT burned into single frames of videos when you use the seek option "-ss" BEFORE the input -------------------------------------+------------------------------------- Reporter: DeadSix27 | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DeadSix27): I added the subtitle file, as video file i used the big bunny 720p h264 mov file, which can be downloaded here: http://www.bigbuckbunny.org/index.php/download/ (its 400mb big, which is why i didnt upload it here..) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 10:35:05 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 09:35:05 -0000 Subject: [FFmpeg-trac] #3206(avfilter:closed): Subtitles are NOT burned into single frames of videos when you use the seek option "-ss" BEFORE the input In-Reply-To: <038.d43c8af02ae48929ca40edf93297d2b6@avcodec.org> References: <038.d43c8af02ae48929ca40edf93297d2b6@avcodec.org> Message-ID: <053.24d261a948a4e8f2a0201cc6f457fac1@avcodec.org> #3206: Subtitles are NOT burned into single frames of videos when you use the seek option "-ss" BEFORE the input ------------------------------------+------------------------------------- Reporter: DeadSix27 | Owner: Type: defect | Status: closed Priority: normal | Component: avfilter Version: git-master | Resolution: duplicate Keywords: seek | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => seek * resolution: => duplicate * status: new => closed * component: undetermined => avfilter Comment: Duplicate of ticket #2067 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 10:48:16 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 09:48:16 -0000 Subject: [FFmpeg-trac] #3177(avcodec:closed): asm error on i686 In-Reply-To: <036.6091537d9f867d9511be2ba94cd66fea@avcodec.org> References: <036.6091537d9f867d9511be2ba94cd66fea@avcodec.org> Message-ID: <051.72cdbcf455742d7940673aa6975afe9b@avcodec.org> #3177: asm error on i686 -------------------------------------+------------------------------------- Reporter: andreas | Owner: Type: defect | Status: closed Priority: minor | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Allow me to repeat that {{{make check}}} does not actually run the cabac test (and that you don't need to run it, it is a test for h264 developers), so instead of backporting a patch, please change {{{make check}}} to {{{make fate}}} which also runs (less tests) without samples. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 16:58:12 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 15:58:12 -0000 Subject: [FFmpeg-trac] #2686(avcodec:open): Native AAC encoder collapses at high bitrates on some samples In-Reply-To: <036.46e6f0dcfe0fbeeeee1e7460dc88b12a@avcodec.org> References: <036.46e6f0dcfe0fbeeeee1e7460dc88b12a@avcodec.org> Message-ID: <051.271c687277d176c6b1df6c509fee172f@avcodec.org> #2686: Native AAC encoder collapses at high bitrates on some samples -------------------------------------+------------------------------------- Reporter: Kamedo2 | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: aac | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by Kamedo2): The listening test of v4 abr, v7 abr, v7 vbr, libfaac vbr, fdk-aac cbr, libmp3lame vbr, ac3 cbr (7 encoders) at 128kbps is ongoing, and I've done 10 samples out of 25 samples (40%). Will your patch v8 properly address the sine warbling problem #2706? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 17:51:45 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 16:51:45 -0000 Subject: [FFmpeg-trac] #3207(undetermined:new): FFmpeg outputs invalid ASS files Message-ID: <035.122f6cca48338d584de9e41d60e9acd0@avcodec.org> #3207: FFmpeg outputs invalid ASS files -------------------------------------+------------------------------------- Reporter: gjdfgh | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- `ffmpeg -i test.sub out.ass` produces an ASS file with this header: {{{ [Events] Format: Layer, Start, End, Style, Text }}} The "Format:" line, as well as all events following it, is semi-invalid. While it does look like the ASS format is flexible about the headers, and libass actually parses this, it's not accepted by most other ASS readers, such as the (very important) vsfilter. FFmpeg should output standard headers instead. Here's an example of users actually running into this problem: http://www .cccp-project.net/forums/index.php?topic=6826.0 It's possible that libass will drop the header parsing in the future to avoid compatibility problems with real-world scripts. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 17:55:23 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 16:55:23 -0000 Subject: [FFmpeg-trac] #3207(undetermined:new): FFmpeg outputs invalid ASS files In-Reply-To: <035.122f6cca48338d584de9e41d60e9acd0@avcodec.org> References: <035.122f6cca48338d584de9e41d60e9acd0@avcodec.org> Message-ID: <050.94e166262075d24830b4b1493a022324@avcodec.org> #3207: FFmpeg outputs invalid ASS files -------------------------------------+------------------------------------- Reporter: gjdfgh | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by ubitux): So does vsfilter only accept the events in the following form {{{Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text}}}? Is the Style header also affected? Any other incompatibilities? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 17:57:15 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 16:57:15 -0000 Subject: [FFmpeg-trac] #3207(undetermined:new): FFmpeg outputs invalid ASS files In-Reply-To: <035.122f6cca48338d584de9e41d60e9acd0@avcodec.org> References: <035.122f6cca48338d584de9e41d60e9acd0@avcodec.org> Message-ID: <050.2a0eb709c3bfac42a5a023bbfc2d0f54@avcodec.org> #3207: FFmpeg outputs invalid ASS files -------------------------------------+------------------------------------- Reporter: gjdfgh | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by gjdfgh): >Is the Style header also affected? Yes. Note that it might accept older variants, SSA at least. >Any other incompatibilities? Not that I know of. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 18:07:27 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 17:07:27 -0000 Subject: [FFmpeg-trac] #2384(avformat:open): ffmpeg detects avi/divx with xsub as broken In-Reply-To: <037.19c428a0c4ccb48abc87fefa14aaac4c@avcodec.org> References: <037.19c428a0c4ccb48abc87fefa14aaac4c@avcodec.org> Message-ID: <052.a25d8ace0b5baf816838463ce5ce230a@avcodec.org> #2384: ffmpeg detects avi/divx with xsub as broken ------------------------------------+------------------------------------ Reporter: someuser | Owner: Type: defect | Status: open Priority: minor | Component: avformat Version: git-master | Resolution: Keywords: xsub avi | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 Comment: {{{ $ ffmpeg -f lavfi -i testsrc=s=pal -ss 132 -i fate-suite/sub/vobsub.idx -scodec xsub -t 6 out.avi ffmpeg version N-58873-gbc9cee9 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 8 2013 17:58:34 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --enable-libass libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, lavfi, from 'testsrc=s=pal': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 720x576 [SAR 1:1 DAR 5:4], 25 tbr, 25 tbn, 25 tbc fate-suite/sub/vobsub.idx: could not seek to position 132.000 Input #1, vobsub, from 'fate-suite/sub/vobsub.idx': Duration: N/A, bitrate: N/A Stream #1:0[0x0](en): Subtitle: dvd_subtitle, 720x480 (default) Output #0, avi, to 'out.avi': Metadata: ISFT : Lavf55.22.100 Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 720x576 [SAR 1:1 DAR 5:4], q=2-31, 200 kb/s, 25 tbn, 25 tbc Stream #0:1(en): Subtitle: xsub (DXSB / 0x42535844), 720x480 (default) Stream mapping: Stream #0:0 -> #0:0 (rawvideo -> mpeg4) Stream #1:0 -> #0:1 (dvdsub -> xsub) Press [q] to stop, [?] for help [xsub @ 0x2bc9a20] Color index 0 is not transparent. Transparency will be messed up. frame= 150 fps=0.0 q=25.9 Lsize= 459kB time=00:00:06.00 bitrate= 626.2kbits/s video:444kB audio:0kB subtitle:1 global headers:0kB muxing overhead 3.014589% }}} {{{ $ ffmpeg -i out.avi ffmpeg version N-58873-gbc9cee9 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 8 2013 17:58:34 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --enable-libass libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [avi @ 0x323f100] scale/rate is 0/0 which is invalid. (This file has been generated by broken software.) Input #0, avi, from 'out.avi': Metadata: encoder : Lavf55.22.100 Duration: 00:00:06.00, start: 0.000000, bitrate: 626 kb/s Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), yuv420p, 720x576 [SAR 1:1 DAR 5:4], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Subtitle: xsub (DXSB / 0x42535844), 720x480 Metadata: title : Subtitle - en-xx;02 At least one output file must be specified }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 19:18:31 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 18:18:31 -0000 Subject: [FFmpeg-trac] #3208(FFmpeg:new): Very long CPU-bound loop with -fflags +genpts and -af volumedetect Message-ID: <037.632fd6bc7327496ce9c5b9b9017e9df4@avcodec.org> #3208: Very long CPU-bound loop with -fflags +genpts and -af volumedetect ----------------------------------+---------------------------------- Reporter: lelegard | Type: defect Status: new | Priority: normal Component: FFmpeg | Version: 2.1.1 Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+---------------------------------- This report describes a problem with memory usage and processing time of ffmpeg 2.1.1 on Windows 7 using the "volumedetect" audio filter in combination with the "-fflags +genpts" option. I know that this combination is probably useless. But the ffmpeg commands was automatically generated by a tool which added "-fflags +genpts" on all ffmpeg commands. {{{ $ ffmpeg -fflags +genpts -i input.avi -af volumedetect -vn -f null -y NUL ffmpeg version 2.1.1 Copyright (c) 2000-2013 the FFmpeg developers built on Nov 20 2013 21:13:48 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable- librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo- aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 48.101 / 52. 48.101 libavcodec 55. 39.101 / 55. 39.101 libavformat 55. 19.104 / 55. 19.104 libavdevice 55. 5.100 / 55. 5.100 libavfilter 3. 90.100 / 3. 90.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, avi, from 'input.avi': Duration: 01:26:59.64, start: 0.000000, bitrate: 1469 kb/s Stream #0:0: Video: mpeg4 (Advanced Simple Profile) (XVID / 0x44495658), yuv420p, 696x452 [SAR 1:1 DAR 174:113], 25 tbr, 25 tbn, 25 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, s16p, 128 kb/s Output #0, null, to 'NUL': Metadata: encoder : Lavf55.19.104 Stream #0:0: Audio: pcm_s16le, 48000 Hz, stereo, s16, 1536 kb/s Stream mapping: Stream #0:1 -> #0:0 (mp3 -> pcm_s16le) Press [q] to stop, [?] for help }}} All the above is quickly displayed. Then, there is no more display for several minutes. During this period, ffmpeg uses 100% CPU and the virtual memory of the process slowly increases up to approximately 180 MB. After several minutes, the following display restarts. The "time" value increases at the usual speed. And the virtual memory decreases quite quickly. {{{ size=N/A time=01:26:59.11 bitrate=N/A video:0kB audio:978584kB subtitle:0 global headers:0kB muxing overhead -100.000002% [Parsed_volumedetect_0 @ 000000000282f4a0] n_samples: 501034752 [Parsed_volumedetect_0 @ 000000000282f4a0] mean_volume: -20.7 dB [Parsed_volumedetect_0 @ 000000000282f4a0] max_volume: 0.0 dB [Parsed_volumedetect_0 @ 000000000282f4a0] histogram_0db: 462 [Parsed_volumedetect_0 @ 000000000282f4a0] histogram_1db: 3951 [Parsed_volumedetect_0 @ 000000000282f4a0] histogram_2db: 19706 [Parsed_volumedetect_0 @ 000000000282f4a0] histogram_3db: 71897 [Parsed_volumedetect_0 @ 000000000282f4a0] histogram_4db: 209764 [Parsed_volumedetect_0 @ 000000000282f4a0] histogram_5db: 496839 }}} Using the same command without the "-fflags +genpts" option, there is no CPU-bound loop in the middle. The "time" line starts to be updated immediately. The virtual memory of the process is stable at 11 MB. But the "-fflags +genpts" option is not responsible alone for this problem. When this option is used in a conversion command, there is no such very long CPU-bound loop. The "time" line starts to be updated immediately. The virtual memory keeps increasing during the execution up to more than 220 MB but this is probably the required memory for the conversion process. Conclusion: The "-fflags +genpts" option, when used in combination with the audio filter "volumedetect" only, creates a several minutes long CPU-bound loop with an increasing virtual memory. The "-fflags +genpts" option, when used in another context such as an audio/video conversion, does not create this artefact. Workaround: Obvious. The "-fflags +genpts" option is useless with the audio filter "volumedetect", so do not use it. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 19:44:35 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 18:44:35 -0000 Subject: [FFmpeg-trac] #3207(undetermined:new): FFmpeg outputs invalid ASS files In-Reply-To: <035.122f6cca48338d584de9e41d60e9acd0@avcodec.org> References: <035.122f6cca48338d584de9e41d60e9acd0@avcodec.org> Message-ID: <050.c4d1daacc13bdda975591f501d07114b@avcodec.org> #3207: FFmpeg outputs invalid ASS files -------------------------------------+------------------------------------- Reporter: gjdfgh | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by plorkyeran): The headers assumed by VSFilter for SSA are: Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, TertiaryColour, BackColour, Bold, Italic, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, AlphaLevel, Encoding Format: Marked, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text and for ASS: Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 20:58:39 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 19:58:39 -0000 Subject: [FFmpeg-trac] #3168(trac:closed): keys for spam filters in trac In-Reply-To: <036.eca86aad8aae946b15d8e1350ada590c@avcodec.org> References: <036.eca86aad8aae946b15d8e1350ada590c@avcodec.org> Message-ID: <051.cbef4c724a67f51369e7350cd545f2f7@avcodec.org> #3168: keys for spam filters in trac -------------------------------------+---------------------------------- Reporter: michael | Owner: Type: task | Status: closed Priority: normal | Component: trac Version: unspecified | Resolution: fixed Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+---------------------------------- Changes (by llogan): * status: open => closed * resolution: => fixed Comment: Closing as fixed. I've only noticed one spam since these were implemented, and that was probably because the spammer already had an account before we did this. Feel free to re-open when/if additional filters are required. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Sun Dec 8 22:20:20 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 21:20:20 -0000 Subject: [FFmpeg-trac] #3208(undetermined:new): Very long CPU-bound loop with -fflags +genpts and -af volumedetect In-Reply-To: <037.632fd6bc7327496ce9c5b9b9017e9df4@avcodec.org> References: <037.632fd6bc7327496ce9c5b9b9017e9df4@avcodec.org> Message-ID: <052.22130eb69d05b46ff707ede27fac6c71@avcodec.org> #3208: Very long CPU-bound loop with -fflags +genpts and -af volumedetect ----------------------------------+---------------------------------------- Reporter: lelegard | Owner: Type: defect | Status: new Priority: normal | Component: undetermined Version: 2.1.1 | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+---------------------------------------- Changes (by cehoyos): * component: FFmpeg => undetermined Comment: Is this reproducible with current FFmpeg git head? Please provide the input sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 00:24:01 2013 From: trac at avcodec.org (FFmpeg) Date: Sun, 08 Dec 2013 23:24:01 -0000 Subject: [FFmpeg-trac] #2152(avformat:open): RM file type is not supported In-Reply-To: <041.1a3c703af9766aad745d80677d50bb1c@avcodec.org> References: <041.1a3c703af9766aad745d80677d50bb1c@avcodec.org> Message-ID: <056.2f68adb10c5c2ab8802f033e5ddec4f5@avcodec.org> #2152: RM file type is not supported -------------------------------------+------------------------------------- Reporter: Abu | Owner: Abdullah | Status: open Type: enhancement | Component: avformat Priority: wish | Resolution: Version: git-master | Blocked By: Keywords: real | Reproduced by developer: 1 videolan | Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: real => real videolan Comment: Additional sample from videolan ticket 10084 uploaded to http://samples.ffmpeg.org/ffmpeg-bugs/trac/ticket2152/ -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 02:23:29 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 01:23:29 -0000 Subject: [FFmpeg-trac] #3203(build system:closed): Windows MSVC configure failed. In-Reply-To: <038.0e04370b1343b6ebf6ab533fbfff362a@avcodec.org> References: <038.0e04370b1343b6ebf6ab533fbfff362a@avcodec.org> Message-ID: <053.cb250b92259c1fb6dfa745b46e89944a@avcodec.org> #3203: Windows MSVC configure failed. -------------------------------------+------------------------------------- Reporter: persanker | Owner: Type: defect | Status: closed Priority: critical | Component: build Version: git-master | system Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by persanker): In my opinion, -o is not a valid parameter of MSVC's linker. So the error occurs. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 04:14:04 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 03:14:04 -0000 Subject: [FFmpeg-trac] #3209(build system:new): Build error with MSVC 2012 Message-ID: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> #3209: Build error with MSVC 2012 -------------------------------------+------------------------------------- Reporter: persanker | Type: defect Status: new | Priority: critical Component: build | Version: git- system | master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: How to reproduce: {{{ make }}} Error output: {{{ D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(34) : error C2371: 'int_fast16_t' : redefinition; different basic types d:\projects\vcos\libraries\msinttypes-r26\stdint.h(105) : see declaration of 'int_fast16_t' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(38) : error C2371: 'uint_fast16_t' : redefinition; different basic types d:\projects\vcos\libraries\msinttypes-r26\stdint.h(109) : see declaration of 'uint_fast16_t' }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 09:31:04 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 08:31:04 -0000 Subject: [FFmpeg-trac] #3210(avfilter:new): Empty format filter argument leads to crash Message-ID: <035.586273bd8bd772820db1eae046d38192@avcodec.org> #3210: Empty format filter argument leads to crash -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: avfilter Version: git- | Keywords: crash master | SIGSEGV Blocked By: | Blocking: Reproduced by developer: 1 | Analyzed by developer: 0 -------------------------------------+------------------------------------- {{{ ? ./ffmpeg -f lavfi -i testsrc -vf format= -f null - ffmpeg version N-58886-g2d4ef7c Copyright (c) 2000-2013 the FFmpeg developers built on Dec 9 2013 09:26:37 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-x11grab --enable-libvorbis --samples=/home/ux/fate-samples --enable-libfreetype --enable-libvpx --cpu=native --cc='ccache cc' libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, lavfi, from 'testsrc': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc zsh: segmentation fault (core dumped) ./ffmpeg -f lavfi -i testsrc -vf format= -f null - }}} {{{ ? gdb --args ./ffmpeg_g -f lavfi -i testsrc -vf format= -f null - GNU gdb (GDB) 7.6.1 Copyright (C) 2013 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-unknown-linux-gnu". For bug reporting instructions, please see: ... Reading symbols from /home/ux/src/ffmpeg/ffmpeg_g...done. (gdb) r Starting program: /home/ux/src/ffmpeg/./ffmpeg_g -f lavfi -i testsrc -vf format= -f null - warning: no loadable sections found in added symbol-file system-supplied DSO at 0x7ffff7ffa000 warning: Could not load shared library symbols for linux-vdso.so.1. Do you need "set solib-search-path" or "set sysroot"? [Thread debugging using libthread_db enabled] Using host libthread_db library "/usr/lib/libthread_db.so.1". ffmpeg version N-58886-g2d4ef7c Copyright (c) 2000-2013 the FFmpeg developers built on Dec 9 2013 09:26:37 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-x11grab --enable-libvorbis --samples=/home/ux/fate-samples --enable-libfreetype --enable-libvpx --cpu=native --cc='ccache cc' libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [New Thread 0x7ffff3b38700 (LWP 19234)] [New Thread 0x7ffff3337700 (LWP 19235)] [New Thread 0x7ffff2b36700 (LWP 19236)] [New Thread 0x7ffff2335700 (LWP 19237)] [New Thread 0x7ffff1b34700 (LWP 19238)] Input #0, lavfi, from 'testsrc': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc [New Thread 0x7ffff1333700 (LWP 19239)] [New Thread 0x7ffff0b32700 (LWP 19240)] [New Thread 0x7ffff0331700 (LWP 19241)] [New Thread 0x7fffefb30700 (LWP 19242)] [New Thread 0x7fffef32f700 (LWP 19243)] Program received signal SIGSEGV, Segmentation fault. ff_set_common_formats (ctx=ctx at entry=0x16a88c0, formats=0x0) at libavfilter/formats.c:533 533 SET_COMMON_FORMATS(ctx, formats, in_formats, out_formats, (gdb) bt #0 ff_set_common_formats (ctx=ctx at entry=0x16a88c0, formats=0x0) at libavfilter/formats.c:533 #1 0x00000000004ac1a5 in query_formats_format (ctx=0x16a88c0) at libavfilter/vf_format.c:107 #2 0x000000000048c246 in filter_query_formats (ctx=0x16a88c0) at libavfilter/avfiltergraph.c:320 #3 0x000000000048ca34 in query_formats (graph=graph at entry=0x16af7e0, log_ctx=log_ctx at entry=0x0) at libavfilter/avfiltergraph.c:451 #4 0x000000000048d59e in graph_config_formats (log_ctx=, graph=) at libavfilter/avfiltergraph.c:1085 #5 avfilter_graph_config (graphctx=0x16af7e0, log_ctx=log_ctx at entry=0x0) at libavfilter/avfiltergraph.c:1195 #6 0x0000000000476191 in configure_filtergraph (fg=0x16bf2e0) at ffmpeg_filter.c:901 #7 0x000000000047db5f in transcode_init () at ffmpeg.c:2433 #8 0x00000000004643ff in transcode () at ffmpeg.c:3335 #9 main (argc=10, argv=0x7fffffffe658) at ffmpeg.c:3544 (gdb) }}} Found by wm4: {{{ 08:20:17 < wm4> ffplay test.mkv -vf format= 08:20:19 < wm4> => segfault }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 09:32:23 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 08:32:23 -0000 Subject: [FFmpeg-trac] #3209(build system:new): Build error with MSVC 2012 In-Reply-To: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> References: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> Message-ID: <053.8d23202749e6c49a1eae5fc1da107570@avcodec.org> #3209: Build error with MSVC 2012 -------------------------------------+------------------------------------- Reporter: persanker | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * priority: critical => normal Comment: Please add your configure line, run {{{make V=1}}} twice, post the complete console output of the second run here. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 09:42:31 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 08:42:31 -0000 Subject: [FFmpeg-trac] #3200(undetermined:new): Trying to remove 1152 samples, but the queue is empty In-Reply-To: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> References: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> Message-ID: <049.9df955ea44d2fc7d37ce0b65c0c42bf2@avcodec.org> #3200: Trying to remove 1152 samples, but the queue is empty -------------------------------------+------------------------------------- Reporter: boean | Owner: Type: defect | Status: new Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by boean): I know the cause of the problem. My libmp3lame version is 3.98.2 to update 3.99.5 for ffmpeg2.1.1 The library of libmp3lame.so.0 default install /usr/local/lib .but ffmpeg execute with /usr/lib . the /usr/lib/libmp3lame.so.0 belong to version 3.98.2 So audio convert to mp3 throw "Last message repeated XXXXX times" wrong message to me. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 09:43:57 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 08:43:57 -0000 Subject: [FFmpeg-trac] #3209(build system:new): Build error with MSVC 2012 In-Reply-To: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> References: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> Message-ID: <053.2bc11cc0fc57ae6b567aaa7d5429acc6@avcodec.org> #3209: Build error with MSVC 2012 -------------------------------------+------------------------------------- Reporter: persanker | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by heleppkes): You seem to have stdint.h twice. The original from Microsoft, and one in "d:\projects\vcos\libraries\msinttypes-r26\" This is nothing that comes with ffmpeg, you should clean up your local build environment. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 09:59:12 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 08:59:12 -0000 Subject: [FFmpeg-trac] #3200(undetermined:closed): Trying to remove 1152 samples, but the queue is empty In-Reply-To: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> References: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> Message-ID: <049.e4c1e55479742fea6ee63295dbecc572@avcodec.org> #3200: Trying to remove 1152 samples, but the queue is empty -------------------------------------+------------------------------------- Reporter: boean | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => invalid Comment: Thank you for the clarification, do I understand correctly that you were able to fix the problem with LD_LIBRARY_PATH or static linking or removing the wrong library? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 10:07:26 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 09:07:26 -0000 Subject: [FFmpeg-trac] #3200(undetermined:closed): Trying to remove 1152 samples, but the queue is empty In-Reply-To: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> References: <034.92e52bacee57683b18ac0cde4f0f8981@avcodec.org> Message-ID: <049.207ad9562be6d8c759d7b488a1992af1@avcodec.org> #3200: Trying to remove 1152 samples, but the queue is empty -------------------------------------+------------------------------------- Reporter: boean | Owner: Type: defect | Status: closed Priority: normal | Component: Version: git-master | undetermined Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by boean): I used the awkward , copy the new library file overwrites the old library file , but effective . -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 10:20:24 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 09:20:24 -0000 Subject: [FFmpeg-trac] #3210(avfilter:open): Empty format filter argument leads to crash In-Reply-To: <035.586273bd8bd772820db1eae046d38192@avcodec.org> References: <035.586273bd8bd772820db1eae046d38192@avcodec.org> Message-ID: <050.383a2b2663ae91ece9827aaa1e4ed46c@avcodec.org> #3210: Empty format filter argument leads to crash -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: open Priority: important | Component: avfilter Version: git-master | Resolution: Keywords: crash | Blocked By: SIGSEGV regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: crash SIGSEGV => crash SIGSEGV regression * priority: normal => important * status: new => open Comment: Decoding fails since 2a2a643c / 0af7fe1f - the crash is a regression since dd2eaf57 / 1dd35611 {{{ $ ffmpeg -f lavfi -i testsrc -vf format= -f null - ffmpeg version N-53231-g71b7427 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 9 2013 10:18:58 with gcc 4.7 (SUSE Linux) configuration: libavutil 52. 33.100 / 52. 33.100 libavcodec 55. 10.100 / 55. 10.100 libavformat 55. 7.100 / 55. 7.100 libavdevice 55. 0.100 / 55. 0.100 libavfilter 3. 68.101 / 3. 68.101 libswscale 2. 3.100 / 2. 3.100 libswresample 0. 17.102 / 0. 17.102 Input #0, lavfi, from 'testsrc': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Impossible to convert between the formats supported by the filter 'graph 0 input from stream 0:0' and the filter 'auto-inserted scaler 0' Error opening filters! }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 10:29:13 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 09:29:13 -0000 Subject: [FFmpeg-trac] #3081(avcodec:closed): Blackberry10 crash on avformat_find_stream_info In-Reply-To: <035.54204d51c8184214a07a4ae968e678f4@avcodec.org> References: <035.54204d51c8184214a07a4ae968e678f4@avcodec.org> Message-ID: <050.94f708bac5e6718b6455e0e4b2ca00c4@avcodec.org> #3081: Blackberry10 crash on avformat_find_stream_info -------------------------------------+------------------------------------- Reporter: xsacha | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: qnx crash | needs_more_info Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => needs_more_info Comment: Please reopen this ticket if you can add the missing information. Allow me to clarify that crashes are always important problems but without any additional information, developers are unable to look into this issue or fix it. Following http://ffmpeg.org/bugreports.html is an easy way of reporting the necessary information. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 10:41:12 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 09:41:12 -0000 Subject: [FFmpeg-trac] #998(undetermined:open): Must convert mms://... streams to mmsh://... for FFmpeg to work In-Reply-To: <036.77dbe81fe63addfeaeba638702f3bb56@avcodec.org> References: <036.77dbe81fe63addfeaeba638702f3bb56@avcodec.org> Message-ID: <051.c7a38efb5444970c4886ee8300d635bc@avcodec.org> #998: Must convert mms://... streams to mmsh://... for FFmpeg to work -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | undetermined Keywords: mms | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by marillat): Would be nice to know why this bug isn't fixed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 11:05:53 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 10:05:53 -0000 Subject: [FFmpeg-trac] #3161(undetermined:closed): libvpx crf does nothing In-Reply-To: <037.39994f212b59c849415aa6cbc1fd536d@avcodec.org> References: <037.39994f212b59c849415aa6cbc1fd536d@avcodec.org> Message-ID: <052.affb66866d4703bb11183c98eae57fb2@avcodec.org> #3161: libvpx crf does nothing ----------------------------------+---------------------------------------- Reporter: LinAGKar | Owner: Type: defect | Status: closed Priority: normal | Component: undetermined Version: 2.0.2 | Resolution: worksforme Keywords: libvpx | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+---------------------------------------- Changes (by cehoyos): * keywords: libvpx crf => libvpx * resolution: => worksforme * status: new => closed * component: FFmpeg => undetermined Comment: For future tickets: Please always test current FFmpeg as explained on http://ffmpeg.org/bugreports.html {{{ $ ffmpeg -f lavfi -i testsrc -crf 4 -t 15 4.webm ffmpeg version 2.0.2 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 9 2013 11:02:30 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --enable-libvpx libavutil 52. 38.100 / 52. 38.100 libavcodec 55. 18.102 / 55. 18.102 libavformat 55. 12.100 / 55. 12.100 libavdevice 55. 3.100 / 55. 3.100 libavfilter 3. 79.101 / 3. 79.101 libswscale 2. 3.100 / 2. 3.100 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 3.100 / 52. 3.100 Input #0, lavfi, from 'testsrc': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc [libvpx @ 0x36147a0] v1.2.0 Output #0, webm, to '4.webm': Metadata: encoder : Lavf55.12.100 Stream #0:0: Video: vp8 (libvpx), yuv420p, 320x240 [SAR 1:1 DAR 4:3], q=-1--1, 200 kb/s, 1k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (rawvideo -> libvpx) Press [q] to stop, [?] for help frame= 375 fps=0.0 q=0.0 Lsize= 261kB time=00:00:15.00 bitrate= 142.4kbits/s video:258kB audio:0kB subtitle:0 global headers:0kB muxing overhead 1.199901% }}} {{{ $ ffmpeg -f lavfi -i testsrc -crf 63 -t 15 63.webm ffmpeg version 2.0.2 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 9 2013 11:02:30 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl --enable-libvpx libavutil 52. 38.100 / 52. 38.100 libavcodec 55. 18.102 / 55. 18.102 libavformat 55. 12.100 / 55. 12.100 libavdevice 55. 3.100 / 55. 3.100 libavfilter 3. 79.101 / 3. 79.101 libswscale 2. 3.100 / 2. 3.100 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 3.100 / 52. 3.100 Input #0, lavfi, from 'testsrc': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc [libvpx @ 0x22f87a0] v1.2.0 Output #0, webm, to '63.webm': Metadata: encoder : Lavf55.12.100 Stream #0:0: Video: vp8 (libvpx), yuv420p, 320x240 [SAR 1:1 DAR 4:3], q=-1--1, 200 kb/s, 1k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (rawvideo -> libvpx) Press [q] to stop, [?] for help frame= 375 fps=0.0 q=0.0 Lsize= 75kB time=00:00:15.00 bitrate= 40.9kbits/s video:72kB audio:0kB subtitle:0 global headers:0kB muxing overhead 3.847820% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 11:40:40 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 10:40:40 -0000 Subject: [FFmpeg-trac] #3209(build system:new): Build error with MSVC 2012 In-Reply-To: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> References: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> Message-ID: <053.ac3dbd9c757fe36794c484738abb1c70@avcodec.org> #3209: Build error with MSVC 2012 -------------------------------------+------------------------------------- Reporter: persanker | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by persanker): My configure line is: {{{ ./configure --toolchain=msvc --disable-yasm }}} The second run of {{{make V=1}}} is:(a little long) {{{ c99wrap cl -nologo -I. -I./ -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE _SOURCE -Dstrtod=avpriv_strtod -Dsnprintf=avpriv_snprintf -D_snprintf=avpriv_snp rintf -Dvsnprintf=avpriv_vsnprintf -D_WIN32_WINNT=0x0502 -DHAVE_AV_CONFIG_H -I. -I./ -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Dstrtod=avpriv _strtod -Dsnprintf=avpriv_snprintf -D_snprintf=avpriv_snprintf -Dvsnprintf=avpri v_vsnprintf -D_WIN32_WINNT=0x0502 -DHAVE_AV_CONFIG_H -nologo -D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64 -Z7 -W4 -wd4244 -wd4127 -wd4018 -wd4389 -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 -wd4152 -wd4324 -we4013 -wd4100 -wd4214 -wd4554 -wd4273 -O2 -Oy- -showInclude s -Zs libavdevice/alldevices.c 2>&1 | awk '/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($0, / /)) print "libavdevice/alldevices.o:", $0 }' > libavdevice/alldevices.d c99wrap cl -I. -I./ -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Dstrtod=avpriv_strtod -Dsnprintf=avpriv_snprintf -D_snprintf=avpriv_snprintf -D vsnprintf=avpriv_vsnprintf -D_WIN32_WINNT=0x0502 -DHAVE_AV_CONFIG_H -nologo -D_U SE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -Dinline=__inline -FIstdlib.h -Dstrtol l=_strtoi64 -Z7 -W4 -wd4244 -wd4127 -wd4018 -wd4389 -wd4146 -wd4057 -wd4204 - wd4706 -wd4305 -wd4152 -wd4324 -we4013 -wd4100 -wd4214 -wd4554 -wd4273 -O2 -Oy - -c -Folibavdevice/alldevices.o libavdevice/alldevices.c alldevices.c D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(72) : wa rning C4005: 'INT8_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(132) : see previous d efinition of 'INT8_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(73) : wa rning C4005: 'INT16_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(134) : see previous d efinition of 'INT16_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(74) : wa rning C4005: 'INT32_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(136) : see previous d efinition of 'INT32_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(76) : wa rning C4005: 'INT8_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(133) : see previous d efinition of 'INT8_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(77) : wa rning C4005: 'INT16_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(135) : see previous d efinition of 'INT16_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(78) : wa rning C4005: 'INT32_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(137) : see previous d efinition of 'INT32_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(79) : wa rning C4005: 'UINT8_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(140) : see previous d efinition of 'UINT8_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(80) : wa rning C4005: 'UINT16_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(141) : see previous d efinition of 'UINT16_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(81) : wa rning C4005: 'UINT32_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(142) : see previous d efinition of 'UINT32_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(83) : wa rning C4005: 'INT_LEAST8_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(146) : see previous d efinition of 'INT_LEAST8_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(84) : wa rning C4005: 'INT_LEAST16_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(148) : see previous d efinition of 'INT_LEAST16_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(85) : wa rning C4005: 'INT_LEAST32_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(150) : see previous d efinition of 'INT_LEAST32_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(87) : wa rning C4005: 'INT_LEAST8_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(147) : see previous d efinition of 'INT_LEAST8_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(88) : wa rning C4005: 'INT_LEAST16_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(149) : see previous d efinition of 'INT_LEAST16_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(89) : wa rning C4005: 'INT_LEAST32_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(151) : see previous d efinition of 'INT_LEAST32_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(90) : wa rning C4005: 'UINT_LEAST8_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(154) : see previous d efinition of 'UINT_LEAST8_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(91) : wa rning C4005: 'UINT_LEAST16_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(155) : see previous d efinition of 'UINT_LEAST16_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(92) : wa rning C4005: 'UINT_LEAST32_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(156) : see previous d efinition of 'UINT_LEAST32_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(94) : wa rning C4005: 'INT_FAST8_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(160) : see previous d efinition of 'INT_FAST8_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(95) : wa rning C4005: 'INT_FAST16_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(162) : see previous d efinition of 'INT_FAST16_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(96) : wa rning C4005: 'INT_FAST32_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(164) : see previous d efinition of 'INT_FAST32_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(98) : wa rning C4005: 'INT_FAST8_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(161) : see previous d efinition of 'INT_FAST8_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(99) : wa rning C4005: 'INT_FAST16_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(163) : see previous d efinition of 'INT_FAST16_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(100) : w arning C4005: 'INT_FAST32_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(165) : see previous d efinition of 'INT_FAST32_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(101) : w arning C4005: 'UINT_FAST8_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(168) : see previous d efinition of 'UINT_FAST8_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(102) : w arning C4005: 'UINT_FAST16_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(169) : see previous d efinition of 'UINT_FAST16_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(103) : w arning C4005: 'UINT_FAST32_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(170) : see previous d efinition of 'UINT_FAST32_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(106) : w arning C4005: 'INTPTR_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(180) : see previous d efinition of 'INTPTR_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(107) : w arning C4005: 'INTPTR_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(179) : see previous d efinition of 'INTPTR_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(108) : w arning C4005: 'UINTPTR_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(181) : see previous d efinition of 'UINTPTR_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(116) : w arning C4005: 'INT8_C' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(230) : see previous d efinition of 'INT8_C' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(117) : w arning C4005: 'INT16_C' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(231) : see previous d efinition of 'INT16_C' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(118) : w arning C4005: 'INT32_C' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(232) : see previous d efinition of 'INT32_C' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(120) : w arning C4005: 'UINT8_C' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(235) : see previous d efinition of 'UINT8_C' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(121) : w arning C4005: 'UINT16_C' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(236) : see previous d efinition of 'UINT16_C' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(122) : w arning C4005: 'UINT32_C' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(237) : see previous d efinition of 'UINT32_C' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(128) : w arning C4005: 'PTRDIFF_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(195) : see previous d efinition of 'PTRDIFF_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(129) : w arning C4005: 'PTRDIFF_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(196) : see previous d efinition of 'PTRDIFF_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(132) : w arning C4005: 'SIG_ATOMIC_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(199) : see previous d efinition of 'SIG_ATOMIC_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(133) : w arning C4005: 'SIG_ATOMIC_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(200) : see previous d efinition of 'SIG_ATOMIC_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(146) : w arning C4005: 'WINT_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(218) : see previous d efinition of 'WINT_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(147) : w arning C4005: 'WINT_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(219) : see previous d efinition of 'WINT_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(149) : w arning C4005: 'INT64_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(138) : see previous d efinition of 'INT64_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(150) : w arning C4005: 'INT64_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(139) : see previous d efinition of 'INT64_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(151) : w arning C4005: 'UINT64_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(143) : see previous d efinition of 'UINT64_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(153) : w arning C4005: 'INT_LEAST64_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(152) : see previous d efinition of 'INT_LEAST64_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(154) : w arning C4005: 'INT_LEAST64_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(153) : see previous d efinition of 'INT_LEAST64_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(155) : w arning C4005: 'UINT_LEAST64_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(157) : see previous d efinition of 'UINT_LEAST64_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(157) : w arning C4005: 'INT_FAST64_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(166) : see previous d efinition of 'INT_FAST64_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(158) : w arning C4005: 'INT_FAST64_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(167) : see previous d efinition of 'INT_FAST64_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(159) : w arning C4005: 'UINT_FAST64_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(171) : see previous d efinition of 'UINT_FAST64_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(161) : w arning C4005: 'INTMAX_MIN' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(185) : see previous d efinition of 'INTMAX_MIN' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(162) : w arning C4005: 'INTMAX_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(186) : see previous d efinition of 'INTMAX_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(163) : w arning C4005: 'UINTMAX_MAX' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(187) : see previous d efinition of 'UINTMAX_MAX' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(165) : w arning C4005: 'INT64_C' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(233) : see previous d efinition of 'INT64_C' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(166) : w arning C4005: 'UINT64_C' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(238) : see previous d efinition of 'UINT64_C' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(167) : w arning C4005: 'INTMAX_C' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(241) : see previous d efinition of 'INTMAX_C' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(168) : w arning C4005: 'UINTMAX_C' : macro redefinition d:\projects\vcos\libraries\msinttypes-r26\stdint.h(242) : see previous d efinition of 'UINTMAX_C' libavdevice/alldevices.o_preprocessed.c:18:9: warning: #pragma once in main file libavdevice/alldevices.o_preprocessed.c:94:9: warning: #pragma once in main file libavdevice/alldevices.o_preprocessed.c:252:9: warning: #pragma once in main fil e libavdevice/alldevices.o_preprocessed.c:2408:9: warning: #pragma once in main fi le libavdevice/alldevices.o_preprocessed.c:4537:9: warning: #pragma once in main fi le libavdevice/alldevices.o_preprocessed.c:7265:36: warning: __declspec attribute ' restrict' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7265:16: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7266:33: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7266:33: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7267:36: warning: __declspec attribute ' restrict' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7267:16: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7269:35: warning: __declspec attribute ' restrict' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7269:15: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7271:35: warning: __declspec attribute ' restrict' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7271:15: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7272:33: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7272:33: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7273:35: warning: __declspec attribute ' restrict' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7273:15: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7274:35: warning: __declspec attribute ' restrict' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7274:15: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7276:35: warning: __declspec attribute ' restrict' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7276:15: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7278:35: warning: __declspec attribute ' restrict' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7278:15: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7280:35: warning: __declspec attribute ' restrict' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7280:15: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7282:35: warning: __declspec attribute ' restrict' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:7282:15: warning: __declspec attribute ' noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:9613:9: warning: #pragma once in main fi le libavdevice/alldevices.o_preprocessed.c:11817:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:11860:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:11890:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:14691:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:15207:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:18509:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:18515:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:20924:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:21504:14: error: typedef redefinition wi th different types ('char' vs 'int8_t' (aka 'signed char')) libavdevice/alldevices.o_preprocessed.c:15414:19: note: previous definition is h ere libavdevice/alldevices.o_preprocessed.c:21505:13: error: typedef redefinition wi th different types ('int' vs 'int16_t' (aka 'short')) libavdevice/alldevices.o_preprocessed.c:15415:19: note: previous definition is h ere libavdevice/alldevices.o_preprocessed.c:21509:22: error: typedef redefinition wi th different types ('unsigned int' vs 'uint16_t' (aka 'unsigned short')) libavdevice/alldevices.o_preprocessed.c:15419:19: note: previous definition is h ere libavdevice/alldevices.o_preprocessed.c:21687:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:24469:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:31945:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:40495:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:42557:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:44859:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:44885:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:44912:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:44939:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:44959:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:44987:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:45020:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:45060:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:47144:26: warning: unknown __declspec at tribute 'intrin_type' ignored [-Wattributes] libavdevice/alldevices.o_preprocessed.c:47321:26: warning: unknown __declspec at tribute 'intrin_type' ignored [-Wattributes] libavdevice/alldevices.o_preprocessed.c:47350:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:49602:12: warning: __declspec attribute 'noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:49602:12: warning: __declspec attribute 'noalias' is not supported [-Wignored-attributes] libavdevice/alldevices.o_preprocessed.c:50078:26: warning: unknown __declspec at tribute 'intrin_type' ignored [-Wattributes] libavdevice/alldevices.o_preprocessed.c:50089:27: warning: unknown __declspec at tribute 'intrin_type' ignored [-Wattributes] libavdevice/alldevices.o_preprocessed.c:51043:26: warning: unknown __declspec at tribute 'intrin_type' ignored [-Wattributes] libavdevice/alldevices.o_preprocessed.c:51047:27: warning: unknown __declspec at tribute 'intrin_type' ignored [-Wattributes] libavdevice/alldevices.o_preprocessed.c:51051:27: warning: unknown __declspec at tribute 'intrin_type' ignored [-Wattributes] libavdevice/alldevices.o_preprocessed.c:52175:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:52439:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:64367:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:66219:9: warning: #pragma once in main f ile libavdevice/alldevices.o_preprocessed.c:68509:9: warning: #pragma once in main f ile alldevices.o_converted.c D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(34) : er ror C2371: 'int_fast16_t' : redefinition; different basic types d:\projects\vcos\libraries\msinttypes-r26\stdint.h(105) : see declaratio n of 'int_fast16_t' D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\stdint.h(38) : er ror C2371: 'uint_fast16_t' : redefinition; different basic types d:\projects\vcos\libraries\msinttypes-r26\stdint.h(109) : see declaratio n of 'uint_fast16_t' make: *** [libavdevice/alldevices.o] Error 1 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 11:47:47 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 10:47:47 -0000 Subject: [FFmpeg-trac] #3209(build system:new): Build error with MSVC 2012 In-Reply-To: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> References: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> Message-ID: <053.c6d33d6927f644de66d2813d61ff78ee@avcodec.org> #3209: Build error with MSVC 2012 -------------------------------------+------------------------------------- Reporter: persanker | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by persanker): Replying to [comment:2 heleppkes]: > You seem to have stdint.h twice. The original from Microsoft, and one in "d:\projects\vcos\libraries\msinttypes-r26\" > > This is nothing that comes with ffmpeg, you should clean up your local build environment. Thanks, but the msinttypes project is in an inactive status and I found an issue posted at Mar 11, 2010, which reporting the same problem I think. [http://code.google.com/p/msinttypes/issues/detail?id=6] -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 11:53:48 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 10:53:48 -0000 Subject: [FFmpeg-trac] #3209(build system:new): Build error with MSVC 2012 In-Reply-To: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> References: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> Message-ID: <053.e38a8b0a1512ecdf01e2cd3558dd760c@avcodec.org> #3209: Build error with MSVC 2012 -------------------------------------+------------------------------------- Reporter: persanker | Owner: Type: defect | Status: new Priority: normal | Component: build Version: git-master | system Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by persanker): Solved, Thanks to you all. I upgraded my msinttypes to r29, and the problem goes away. Please close this, thanks. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 12:07:00 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 11:07:00 -0000 Subject: [FFmpeg-trac] #3209(build system:closed): Build error with MSVC 2012 In-Reply-To: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> References: <038.56ea2a7424c3669a7330d9f5f2e2f49e@avcodec.org> Message-ID: <053.b3a50edaac027025323880bedf7a07e0@avcodec.org> #3209: Build error with MSVC 2012 -------------------------------------+------------------------------------- Reporter: persanker | Owner: Type: defect | Status: closed Priority: normal | Component: build Version: git-master | system Keywords: | Resolution: invalid Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => invalid -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 13:22:25 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 12:22:25 -0000 Subject: [FFmpeg-trac] #1578(undetermined:open): variable FPS incorrect frame length In-Reply-To: <039.4146843042e5eb4e5459ce07806d4fc4@avcodec.org> References: <039.4146843042e5eb4e5459ce07806d4fc4@avcodec.org> Message-ID: <054.0c46ff10b895e0b2c3a76db16606aec6@avcodec.org> #1578: variable FPS incorrect frame length -------------------------------------+------------------------------------- Reporter: kubabrecka | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: fps | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by er.anshul.maheshwari@?): It does not work even with -vf fps Below was my command ffmpeg -r 1/5 -f concat -i /tmp/tmpsaR4EA -i audio/sound.mp3 -vf "format=yuv420p,scale=640x480,subtitles=/tmp/tmpKu6UJ3.srt,fps=25" "output/Great_Lakes_region_timeshare_camp.mp4" {{{ ffmpeg version 2.1.1 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 9 2013 15:48:15 with gcc 4.7 (SUSE Linux) configuration: --enable-libass --enable-libfaac --enable-libx264 --enable-nonfree --enable-gpl libavutil 52. 48.101 / 52. 48.101 libavcodec 55. 39.101 / 55. 39.101 libavformat 55. 19.104 / 55. 19.104 libavdevice 55. 5.100 / 55. 5.100 libavfilter 3. 90.100 / 3. 90.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, concat, from '/tmp/tmpsaR4EA': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0: Video: mjpeg, yuvj444p(pc), 640x480 [SAR 72:72 DAR 4:3], 25 tbr, 25 tbn, 25 tbc Input #1, mp3, from 'audio/sound.mp3': Metadata: album : @RdxMob.Com encoded_by : Tagged by Flash Renamer - http://www.rlvision.com title : Sound_Of_Nature::www.RdxMoB.CoM artist : @RdxMob.Com track : Sound_Of_Nature TDTG : 2010-02-13T16:18:41 Duration: 00:00:29.07, start: 0.000000, bitrate: 128 kb/s Stream #1:0: Audio: mp3, 44100 Hz, stereo, s16p, 128 kb/s File 'output/Great_Lakes_region_timeshare_camp.mp4' already exists. Overwrite ? [y/N] y [swscaler @ 0xab9ffa0] deprecated pixel format used, make sure you did set range correctly [libx264 @ 0xaa30ac0] using SAR=1/1 [libx264 @ 0xaa30ac0] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.2 AVX [libx264 @ 0xaa30ac0] profile High, level 3.0 [libx264 @ 0xaa30ac0] 264 - core 125 - H.264/MPEG-4 AVC codec - Copyleft 2003-2012 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00 Output #0, mp4, to 'output/Great_Lakes_region_timeshare_camp.mp4': Metadata: encoder : Lavf55.19.104 Stream #0:0: Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuv420p, 640x480 [SAR 1:1 DAR 4:3], q=-1--1, 12800 tbn, 25 tbc Stream #0:1: Audio: aac (libfaac) ([64][0][0][0] / 0x0040), 44100 Hz, stereo, s16, 128 kb/s Stream mapping: Stream #0:0 -> #0:0 (mjpeg -> libx264) Stream #1:0 -> #0:1 (mp3 -> libfaac) Press [q] to stop, [?] for help [Parsed_subtitles_2 @ 0xaa27ee0] Neither PlayResX nor PlayResY defined. Assuming 384x288 [Parsed_subtitles_2 @ 0xaa27ee0] fontconfig: Selected font is not the requested one: 'Arimo' != 'Arial' Input stream #0:0 frame changed from size:640x480 fmt:yuvj444p to size:259x194 fmt:yuvj420p [swscaler @ 0xab99d40] deprecated pixel format used, make sure you did set range correctly [Parsed_subtitles_2 @ 0xaa100e0] Neither PlayResX nor PlayResY defined. Assuming 384x288 [Parsed_subtitles_2 @ 0xaa100e0] fontconfig: Selected font is not the requested one: 'Arimo' != 'Arial' Input stream #0:0 frame changed from size:259x194 fmt:yuvj420p to size:640x480 fmt:yuvj444p [swscaler @ 0xab99c80] deprecated pixel format used, make sure you did set range correctly [Parsed_subtitles_2 @ 0xaa0bcc0] Neither PlayResX nor PlayResY defined. Assuming 384x288 [Parsed_subtitles_2 @ 0xaa0bcc0] fontconfig: Selected font is not the requested one: 'Arimo' != 'Arial' [output stream 0:0 @ 0xaa2b5c0] 100 buffers queued in output stream 0:0, something may be wrong. [mp3 @ 0xaa2e840] Header missing 390kB time=00:00:27.92 bitrate= 114.4kbits/s Error while decoding stream #1:0: Invalid data found when processing input frame= 2876 fps=513 q=-1.0 Lsize= 634kB time=00:01:54.96 bitrate= 45.2kbits/s video:130kB audio:454kB subtitle:0 global headers:0kB muxing overhead 8.601034% [libx264 @ 0xaa30ac0] frame I:12 Avg QP:19.38 size: 5643 [libx264 @ 0xaa30ac0] frame P:725 Avg QP:27.91 size: 28 [libx264 @ 0xaa30ac0] frame B:2139 Avg QP:28.00 size: 21 [libx264 @ 0xaa30ac0] consecutive B-frames: 0.8% 0.0% 0.0% 99.2% [libx264 @ 0xaa30ac0] mb I I16..4: 90.9% 4.1% 4.9% [libx264 @ 0xaa30ac0] mb P I16..4: 0.0% 0.0% 0.0% P16..4: 0.0% 0.0% 0.0% 0.0% 0.0% skip:100.0% [libx264 @ 0xaa30ac0] mb B I16..4: 0.0% 0.0% 0.0% B16..8: 0.1% 0.0% 0.0% direct: 0.0% skip:99.9% L0:41.0% L1:59.0% BI: 0.0% [libx264 @ 0xaa30ac0] 8x8 transform intra:3.8% inter:62.7% [libx264 @ 0xaa30ac0] coded y,uvDC,uvAC intra: 5.1% 0.0% 0.0% inter: 0.0% 0.0% 0.0% [libx264 @ 0xaa30ac0] i16 v,h,dc,p: 95% 2% 3% 0% [libx264 @ 0xaa30ac0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 20% 31% 25% 7% 2% 4% 3% 3% 6% [libx264 @ 0xaa30ac0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 24% 23% 24% 3% 5% 4% 6% 4% 5% [libx264 @ 0xaa30ac0] i8c dc,h,v,p: 100% 0% 0% 0% [libx264 @ 0xaa30ac0] Weighted P-Frames: Y:0.0% UV:0.0% [libx264 @ 0xaa30ac0] ref P L0: 81.5% 8.2% 5.2% 5.2% [libx264 @ 0xaa30ac0] ref B L0: 81.5% 18.3% 0.2% [libx264 @ 0xaa30ac0] ref B L1: 98.6% 1.4% [libx264 @ 0xaa30ac0] kb/s:9.23 [ }}} My 3 starting image were missing, I tried putting fps filter at each place, position of fps filter does not solve my problem -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 13:27:58 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 12:27:58 -0000 Subject: [FFmpeg-trac] #1578(undetermined:open): variable FPS incorrect frame length In-Reply-To: <039.4146843042e5eb4e5459ce07806d4fc4@avcodec.org> References: <039.4146843042e5eb4e5459ce07806d4fc4@avcodec.org> Message-ID: <054.5eddbac974cf71cd937f906cfc25d77c@avcodec.org> #1578: variable FPS incorrect frame length -------------------------------------+------------------------------------- Reporter: kubabrecka | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: fps | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by er.anshul.maheshwari@?): if I put same fps of input and output, then frame are missing {{{ ffmpeg -r 1/5 -f concat -i /tmp/tmpsaR4EA -i audio/sound.mp3 -vf "format=yuv420p,scale=640x480,subtitles=/tmp/tmpKu6UJ3.srt,fps=1/5" "output/Great_Lakes_region_timeshare_camp.mp4" }}} but if I don't put the fps filter flag at output then every thing is all right -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 13:47:40 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 12:47:40 -0000 Subject: [FFmpeg-trac] #998(undetermined:open): Must convert mms://... streams to mmsh://... for FFmpeg to work In-Reply-To: <036.77dbe81fe63addfeaeba638702f3bb56@avcodec.org> References: <036.77dbe81fe63addfeaeba638702f3bb56@avcodec.org> Message-ID: <051.6a79d9a4dc937ec8a393d80a4b7f7718@avcodec.org> #998: Must convert mms://... streams to mmsh://... for FFmpeg to work -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | undetermined Keywords: mms | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by compn): imo mms is dead and all windows media servers have switched to rtsp. so streams like this should automatically try rtsp first. i think its somewhere in microsoft documentation. mms://live1.wm.skynews.servecast.net/skynews_wmlz_live300k should first try rtsp://live1.wm.skynews.servecast.net/skynews_wmlz_live300k -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 16:45:50 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 15:45:50 -0000 Subject: [FFmpeg-trac] #998(undetermined:open): Must convert mms://... streams to mmsh://... for FFmpeg to work In-Reply-To: <036.77dbe81fe63addfeaeba638702f3bb56@avcodec.org> References: <036.77dbe81fe63addfeaeba638702f3bb56@avcodec.org> Message-ID: <051.dc62f74b3e7df84e27078e4ee3f9e454@avcodec.org> #998: Must convert mms://... streams to mmsh://... for FFmpeg to work -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: enhancement | Status: open Priority: wish | Component: Version: git-master | undetermined Keywords: mms | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by marillat): But in some case this doesn't work. mms://live.rfn.ru/vesti_fm -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 19:55:42 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 18:55:42 -0000 Subject: [FFmpeg-trac] #3208(undetermined:new): Very long CPU-bound loop with -fflags +genpts and -af volumedetect In-Reply-To: <037.632fd6bc7327496ce9c5b9b9017e9df4@avcodec.org> References: <037.632fd6bc7327496ce9c5b9b9017e9df4@avcodec.org> Message-ID: <052.534230339f01bcbbc47314bcef986cfc@avcodec.org> #3208: Very long CPU-bound loop with -fflags +genpts and -af volumedetect ----------------------------------+---------------------------------------- Reporter: lelegard | Owner: Type: defect | Status: new Priority: normal | Component: undetermined Version: 2.1.1 | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+---------------------------------------- Comment (by lelegard): Reproduceable with the following version: {{{ ffmpeg version N-58882-ga12f679 built on Dec 8 2013 22:07:18 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable- librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo- aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 }}} The input file can be downloaded at [http://dl.free.fr/rgPwN22MA] -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 20:26:26 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 19:26:26 -0000 Subject: [FFmpeg-trac] #3211(documentation:new): Wront example on ffmpeg-filters 6.2 adelay Message-ID: <033.8b47e13418ec53b88cdc52a36e39420c@avcodec.org> #3211: Wront example on ffmpeg-filters 6.2 adelay -------------------------------------+------------------------------------- Reporter: Fusl | Type: defect Status: new | Priority: minor Component: | Version: documentation | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Hi, i studied the [http://ffmpeg.org/ffmpeg-filters.html ffmpeg-filters] page, especially the [http://ffmpeg.org/ffmpeg-filters.html#adelay 6.2 adelay] part a few days ago and tried out the example... This is what i get and below is how it should be (fixed): {{{ fusl at thinkbook ? ~ ? ? ffmpeg -loglevel debug -i testin.mp3 -af 'adelay=1000:1000' testout.mp3 ffmpeg version N-58852-g4dfc8f6 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 7 2013 13:24:02 with gcc 4.8 (SUSE Linux) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libaacplus --enable-x11grab libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Splitting the commandline. Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'. Reading option '-i' ... matched as input file with argument 'testin.mp3'. Reading option '-af' ... matched as option 'af' (set audio filters) with argument 'adelay=1000:1000'. Reading option 'testout.mp3' ... matched as output file. Finished splitting the commandline. Parsing a group of options: global . Applying option loglevel (set logging level) with argument debug. Successfully parsed a group of options. Parsing a group of options: input file testin.mp3. Successfully parsed a group of options. Opening an input file: testin.mp3. [mp3 @ 0x2270900] Format mp3 probed with size=2048 and score=51 [mp3 @ 0x2270900] id3v2 ver:4 flags:00 len:35 [mp3 @ 0x2270900] pad 576 0 [mp3 @ 0x2270900] Before avformat_find_stream_info() pos: 227 bytes read:32768 seeks:0 [mp3 @ 0x2270900] demuxer injecting skip 1105 [mp3 @ 0x2271840] skip 1105 samples due to side data [mp3 @ 0x2271840] skip 1105/1152 samples [mp3 @ 0x2270900] max_analyze_duration 5000000 reached at 5015510 microseconds [mp3 @ 0x2270900] After avformat_find_stream_info() pos: 82147 bytes read:98304 seeks:0 frames:194 Input #0, mp3, from 'testin.mp3': Metadata: encoder : Lavf55.22.100 Duration: 00:00:10.00, start: 0.000000, bitrate: 128 kb/s Stream #0:0, 194, 1/14112000: Audio: mp3, 44100 Hz, stereo, s16p, 128 kb/s Successfully opened the file. Parsing a group of options: output file testout.mp3. Applying option af (set audio filters) with argument adelay=1000:1000. Successfully parsed a group of options. Opening an output file: testout.mp3. Successfully opened the file. detected 2 logical cores [Parsed_adelay_0 @ 0x2289c60] Setting 'delays' to value '1000' [Parsed_adelay_0 @ 0x2289c60] No option name near '1000' [AVFilterGraph @ 0x22b0fe0] Error initializing filter 'adelay' with args '1000:1000' Error opening filters! [AVIOContext @ 0x22b12c0] Statistics: 0 seeks, 0 writeouts [AVIOContext @ 0x2278fc0] Statistics: 98304 bytes read, 0 seeks }}} Working (fixed example by changing ':' to '|'): {{{ fusl at thinkbook ? ~ ? ? ffmpeg -loglevel debug -i testin.mp3 -af 'adelay=1000|1000' testout.mp3 ffmpeg version N-58852-g4dfc8f6 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 7 2013 13:24:02 with gcc 4.8 (SUSE Linux) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libaacplus --enable-x11grab libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Splitting the commandline. Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'. Reading option '-i' ... matched as input file with argument 'testin.mp3'. Reading option '-af' ... matched as option 'af' (set audio filters) with argument 'adelay=1000|1000'. Reading option 'testout.mp3' ... matched as output file. Finished splitting the commandline. Parsing a group of options: global . Applying option loglevel (set logging level) with argument debug. Successfully parsed a group of options. Parsing a group of options: input file testin.mp3. Successfully parsed a group of options. Opening an input file: testin.mp3. [mp3 @ 0x190b900] Format mp3 probed with size=2048 and score=51 [mp3 @ 0x190b900] id3v2 ver:4 flags:00 len:35 [mp3 @ 0x190b900] pad 576 0 [mp3 @ 0x190b900] Before avformat_find_stream_info() pos: 227 bytes read:32768 seeks:0 [mp3 @ 0x190b900] demuxer injecting skip 1105 [mp3 @ 0x190c840] skip 1105 samples due to side data [mp3 @ 0x190c840] skip 1105/1152 samples [mp3 @ 0x190b900] max_analyze_duration 5000000 reached at 5015510 microseconds [mp3 @ 0x190b900] After avformat_find_stream_info() pos: 82147 bytes read:98304 seeks:0 frames:194 Input #0, mp3, from 'testin.mp3': Metadata: encoder : Lavf55.22.100 Duration: 00:00:10.00, start: 0.000000, bitrate: 128 kb/s Stream #0:0, 194, 1/14112000: Audio: mp3, 44100 Hz, stereo, s16p, 128 kb/s Successfully opened the file. Parsing a group of options: output file testout.mp3. Applying option af (set audio filters) with argument adelay=1000|1000. Successfully parsed a group of options. Opening an output file: testout.mp3. Successfully opened the file. detected 2 logical cores [Parsed_adelay_0 @ 0x1924c60] Setting 'delays' to value '1000|1000' [graph 0 input from stream 0:0 @ 0x1925300] Setting 'time_base' to value '1/44100' [graph 0 input from stream 0:0 @ 0x1925300] Setting 'sample_rate' to value '44100' [graph 0 input from stream 0:0 @ 0x1925300] Setting 'sample_fmt' to value 's16p' [graph 0 input from stream 0:0 @ 0x1925300] Setting 'channel_layout' to value '0x3' [graph 0 input from stream 0:0 @ 0x1925300] tb:1/44100 samplefmt:s16p samplerate:44100 chlayout:0x3 [audio format for output stream 0:0 @ 0x1925ac0] Setting 'sample_fmts' to value 's32p|fltp|s16p' [audio format for output stream 0:0 @ 0x1925ac0] Setting 'sample_rates' to value '44100|48000|32000|22050|24000|16000|11025|12000|8000' [audio format for output stream 0:0 @ 0x1925ac0] Setting 'channel_layouts' to value '0x4|0x3' [AVFilterGraph @ 0x194bfe0] query_formats: 4 queried, 9 merged, 0 already done, 0 delayed Output #0, mp3, to 'testout.mp3': Metadata: TSSE : Lavf55.22.100 Stream #0:0, 0, 1/90000: Audio: mp3 (libmp3lame), 44100 Hz, stereo, s16p Stream mapping: Stream #0:0 -> #0:0 (mp3 -> libmp3lame) Press [q] to stop, [?] for help [mp3 @ 0x190c840] skip 1105 samples due to side data [mp3 @ 0x190c840] skip 1105/1152 samples [output stream 0:0 @ 0x1925be0] EOF on sink link output stream 0:0:default. No more output streams to write to, finishing. [libmp3lame @ 0x191c0c0] Trying to remove 828 more samples than there are in the queue size= 172kB time=00:00:11.02 bitrate= 128.2kbits/s video:0kB audio:172kB subtitle:0 global headers:0kB muxing overhead 0.128701% 383 frames successfully decoded, 0 decoding errors [AVIOContext @ 0x194c2c0] Statistics: 2 seeks, 424 writeouts [AVIOContext @ 0x1913fc0] Statistics: 160305 bytes read, 0 seeks }}} So, it's just the example {{{adelay=1500:0:500}}} which confused me and could confuse other users also. Fixing the example could also save lifes where developers could very quickly become angry, when something which should work does not work. :) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 20:26:49 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 19:26:49 -0000 Subject: [FFmpeg-trac] #3211(documentation:new): Wrong example on ffmpeg-filters 6.2 adelay (was: Wront example on ffmpeg-filters 6.2 adelay) In-Reply-To: <033.8b47e13418ec53b88cdc52a36e39420c@avcodec.org> References: <033.8b47e13418ec53b88cdc52a36e39420c@avcodec.org> Message-ID: <048.81428d5fe17b62b1cc3a31c960990c94@avcodec.org> #3211: Wrong example on ffmpeg-filters 6.2 adelay -------------------------------------+------------------------------------- Reporter: Fusl | Owner: Type: defect | Status: new Priority: minor | Component: Version: unspecified | documentation Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 23:58:34 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 22:58:34 -0000 Subject: [FFmpeg-trac] #3211(documentation:closed): Wrong example on ffmpeg-filters 6.2 adelay In-Reply-To: <033.8b47e13418ec53b88cdc52a36e39420c@avcodec.org> References: <033.8b47e13418ec53b88cdc52a36e39420c@avcodec.org> Message-ID: <048.01c4ab06dd7bb08515819b593fed87db@avcodec.org> #3211: Wrong example on ffmpeg-filters 6.2 adelay -------------------------------------+------------------------------------- Reporter: Fusl | Owner: Type: defect | Status: closed Priority: minor | Component: Version: git-master | documentation Keywords: adelay | Resolution: fixed Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => adelay * status: new => closed * version: unspecified => git-master * resolution: => fixed * reproduced: 0 => 1 Comment: Should be fixed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Mon Dec 9 23:59:48 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 22:59:48 -0000 Subject: [FFmpeg-trac] #1603(avformat:closed): fix remuxing of ima_adpcm_qt in mov In-Reply-To: <038.a471016729eb4679ad51f06ba2c44f6a@avcodec.org> References: <038.a471016729eb4679ad51f06ba2c44f6a@avcodec.org> Message-ID: <053.5bceadc800e3c2dd5be872b6b0982657@avcodec.org> #1603: fix remuxing of ima_adpcm_qt in mov ------------------------------------+------------------------------------ Reporter: ami_stuff | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: mov adpcm | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Should be fixed in 362383b7 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 00:13:23 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 23:13:23 -0000 Subject: [FFmpeg-trac] #3212(undetermined:new): initial seek in MSVIDEO1 causes failure to display on some avi files Message-ID: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> #3212: initial seek in MSVIDEO1 causes failure to display on some avi files -------------------------------------+------------------------------------- Reporter: DonMoir | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Same as ticket #1273 but different codec ID. If you do a seek prior to calling avcodec_decode_video2 at least once, then you will no longer get any video stream packets with the attached files. The seek works fine after you call avcodec_decode_video2 but not if you tried to seek prior to this. Reading a first video packet is not enough. Use this sample to test. ?http://sms.pangolin.com/temp/EVBPIC.AVI -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 00:36:08 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 23:36:08 -0000 Subject: [FFmpeg-trac] #3213(avcodec:new): h264 flv segfaults on seek beyond the end of the file Message-ID: <032.0bc5705dcdad389185eb971a1df7470d@avcodec.org> #3213: h264 flv segfaults on seek beyond the end of the file -------------------------------------+------------------------------------- Reporter: cus | Owner: Type: defect | Status: new Priority: important | Component: avcodec Version: git- | Keywords: h264 seek master | regression Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- Summary of the bug: h264 flv segfaults on seek after the end of the file How to reproduce: Press PgUp after starting ffplay: {{{ % ffplay h264-seek-segfault.flv ffplay version N-58942-gb6a8619 Copyright (c) 2003-2013 the FFmpeg developers built on Dec 10 2013 00:14:47 with gcc 4.8 (SUSE Linux) configuration: --disable-vaapi --enable-vdpau --enable-gpl --enable- libfreetype --enable-libzvbi --enable-libass --enable-frei0r libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [flv @ 0x313e4c0] Stream discovered after head already parsed=0/0 Input #0, flv, from 'h264-seek-segfault.flv': Metadata: starttime : 0 totalduration : 300 totaldatarate : 592 bytelength : 22252473 canseekontime : true sourcedata : B4A7D6CA2HH1309108729288780 purl : pmsg : Duration: 00:05:00.27, start: 0.000000, bitrate: 592 kb/s Stream #0:0: Video: h264 (Main), yuv420p, 480x360 [SAR 1:1 DAR 4:3], 548 kb/s, 29.97 tbr, 1k tbn, 59.94 tbc Stream #0:1: Audio: aac, 44100 Hz, mono, fltp, 49 kb/s Stream #0:2: Data: none XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0" after 123 requests (123 known processed) with 1 events remaining. }}} valgrind output: {{{ ==18023== Invalid read of size 8 ==18023== at 0x6E024B: decode_update_thread_context (h264.c:1854) ==18023== by 0x89F45F: ff_thread_decode_frame (pthread_frame.c:229) ==18023== by 0x93ABE2: avcodec_decode_video2 (utils.c:2111) ==18023== by 0x46B2DE: video_thread (ffplay.c:1687) ==18023== by 0x5CC8BF7: ??? (in /usr/lib64/libSDL-1.2.so.0.11.4) ==18023== by 0x5D08508: ??? (in /usr/lib64/libSDL-1.2.so.0.11.4) ==18023== by 0x5F570DA: start_thread (in /lib64/libpthread-2.18.so) ==18023== by 0x70B990C: clone (in /lib64/libc-2.18.so) ==18023== Address 0x1d0 is not stack'd, malloc'd or (recently) free'd ==18023== }}} Regression since a553c6a347d3d28d7ee44c3df3d5c4ee780dba23. I have uploaded the flv to ftp://upload.ffmpeg.org/incoming/h264-seek- segfault.flv. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 00:42:16 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 23:42:16 -0000 Subject: [FFmpeg-trac] #3212(undetermined:closed): initial seek in MSVIDEO1 causes failure to display on some avi files In-Reply-To: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> References: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> Message-ID: <051.b2718e4ba3e9e8f405315b537523ca89@avcodec.org> #3212: initial seek in MSVIDEO1 causes failure to display on some avi files -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => duplicate -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 00:43:58 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 23:43:58 -0000 Subject: [FFmpeg-trac] #3213(avcodec:new): h264 flv segfaults on seek beyond the end of the file In-Reply-To: <032.0bc5705dcdad389185eb971a1df7470d@avcodec.org> References: <032.0bc5705dcdad389185eb971a1df7470d@avcodec.org> Message-ID: <047.5de4e8706f8fff9eefb8d31fd07d3de2@avcodec.org> #3213: h264 flv segfaults on seek beyond the end of the file -------------------------------------+------------------------------------- Reporter: cus | Owner: Type: defect | Status: new Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: h264 seek | Blocked By: crash regression | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: h264 seek regression => h264 seek crash regression -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 00:44:03 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 23:44:03 -0000 Subject: [FFmpeg-trac] #3214(avformat:new): ffmpeg can no longer open mega weird audio test mkv Message-ID: <032.1527f6c030f2b9cf45a09dc7cf9aaab9@avcodec.org> #3214: ffmpeg can no longer open mega weird audio test mkv -------------------------------------+------------------------------------- Reporter: cus | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git- | Keywords: mkv master | regression Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- Summary of the bug: avformat_open_input fails with ERROR_INVALID_DATA in the mega weird audio test file: http://www.cccp- project.net/beta/test_files/%5bCCCP%5d_Mega_Weird_Audio_Test.mkv How to reproduce: {{{ % ffmpeg -i \[CCCP\]_Mega_Weird_Audio_Test.mkv dummy.wav ffmpeg version N-58939-gaae5c4d Copyright (c) 2000-2013 the FFmpeg developers built on Dec 10 2013 00:41:34 with gcc 4.8 (SUSE Linux) configuration: --disable-vaapi --enable-vdpau --enable-gpl --enable- libfreetype --enable-libzvbi --enable-libass --enable-frei0r libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [CCCP]_Mega_Weird_Audio_Test.mkv: Invalid data found when processing input }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 00:45:42 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 23:45:42 -0000 Subject: [FFmpeg-trac] #3212(undetermined:closed): initial seek in MSVIDEO1 causes failure to display on some avi files In-Reply-To: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> References: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> Message-ID: <051.1074d8f87389d1bdece5fc35730ef028@avcodec.org> #3212: initial seek in MSVIDEO1 causes failure to display on some avi files -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DonMoir): If this is dup of 1273 why is 1273 closed and set to fixed ? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 00:52:05 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 23:52:05 -0000 Subject: [FFmpeg-trac] #3212(undetermined:closed): initial seek in MSVIDEO1 causes failure to display on some avi files In-Reply-To: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> References: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> Message-ID: <051.5d059fa0f191db96dd985025cdb877fc@avcodec.org> #3212: initial seek in MSVIDEO1 causes failure to display on some avi files -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Why do you think this is a duplicate of ticket #1273? And - much more important - what did you search for on the bug tracker before opening this ticket? The file name? The codec name? I am sure you do always search the tracker before opening a new ticket, or don't you? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 00:54:26 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 23:54:26 -0000 Subject: [FFmpeg-trac] #3212(undetermined:closed): initial seek in MSVIDEO1 causes failure to display on some avi files In-Reply-To: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> References: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> Message-ID: <051.aaf762b25efa2a5711fe7a29e6435df1@avcodec.org> #3212: initial seek in MSVIDEO1 causes failure to display on some avi files -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DonMoir): What ticket do you think it is a duplicate of ? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 00:54:52 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 23:54:52 -0000 Subject: [FFmpeg-trac] #3145(FFmpeg:new): Header inconsistencies for a certain range of video bit rate In-Reply-To: <036.13010cd7329da63f62b951e9df582d56@avcodec.org> References: <036.13010cd7329da63f62b951e9df582d56@avcodec.org> Message-ID: <051.f02b8a91d098e68cce6dfc5fd22e9458@avcodec.org> #3145: Header inconsistencies for a certain range of video bit rate -------------------------------------+------------------------------------- Reporter: olitoli | Owner: Type: defect | Status: new Priority: normal | Component: FFmpeg Version: 2.1 | Resolution: Keywords: xvid avi | Blocked By: video bitrate | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by olitoli): Thanks for taking a look. I'm not sure I can build and test the current git head. I usually only download the Mac OS X Tessus standalone builds. Since the problem is in both 1.2.1 and 2.1.0, I doubt that this is a recent bug and it's most likely present in the current hit head. The original testing described in the bug report was done with -c:v mpeg4. I did further testing using -c:v libxvid as you suggested and the results are the same (good for 2000k and bad for 1900k) so this does not seem to be associated with any video encoder. Since I had also tested both MP3 and AC3, this does not seem to be associated with any audio encoder either. I believe that it's the container header that is trashed for a certain range of video bitrate, not the streams headers themselves. I created the 2 test files outhighbitrate.avi and outlowbitrate.avi and while the GUI version of MediaInfo Mac 0.7.36.0 does not detect any issues, I can only play correctly outhighbitrate.avi on my DVD Player as outlowbitrate.avi makes it freeze. You asked for the complete uncut console output so please find it below. I already compared it and could not find any smoking gun there. $ffmpeg -i PR.m4v -c:v mpeg4 -vtag XVID -b:v 1900k -r 23.976 -c:a ac3 -b:a 128k -ar 48000 -ac 2 P_1900.avi ffmpeg version 1.2.1-tessus Copyright (c) 2000-2013 the FFmpeg developers built on May 9 2013 21:58:14 with llvm-gcc 4.2.1 (LLVM build 2336.1.00) configuration: --prefix=/Users/tessus/data/ext/ffmpeg/sw --as=yasm --extra-version=tessus --disable-shared --enable-static --disable-ffplay --enable-gpl --enable-pthreads --enable-postproc --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-libspeex --enable-bzlib --enable-zlib --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libxavs --enable-version3 --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-libvpx --enable-libgsm --enable-libopus --enable-fontconfig --enable-libfreetype --enable-libass --enable-filters --enable-runtime-cpudetect libavutil 52. 18.100 / 52. 18.100 libavcodec 54. 92.100 / 54. 92.100 libavformat 54. 63.104 / 54. 63.104 libavdevice 54. 3.103 / 54. 3.103 libavfilter 3. 42.103 / 3. 42.103 libswscale 2. 2.100 / 2. 2.100 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/Volumes/done/PR.m4v': Metadata: major_brand : mp42 minor_version : 0 compatible_brands: mp42isomavc1 creation_time : 2013-11-13 16:27:35 encoder : HandBrake 0.9.9 2013051800 Duration: 02:11:17.46, start: 0.000000, bitrate: 4168 kb/s Chapter #0.0: start 0.000000, end 549.081867 Metadata: title : Chapter 1 Chapter #0.1: start 549.081867, end 1115.781333 Metadata: title : Chapter 2 Chapter #0.2: start 1115.781333, end 1384.416367 Metadata: title : Chapter 3 Chapter #0.3: start 1384.416367, end 1980.345033 Metadata: title : Chapter 4 Chapter #0.4: start 1980.345033, end 2564.895667 Metadata: title : Chapter 5 Chapter #0.5: start 2564.895667, end 3001.698700 Metadata: title : Chapter 6 Chapter #0.6: start 3001.698700, end 3669.699356 Metadata: title : Chapter 7 Chapter #0.7: start 3669.699356, end 4485.180689 Metadata: title : Chapter 8 Chapter #0.8: start 4485.180689, end 4941.269656 Metadata: title : Chapter 9 Chapter #0.9: start 4941.269656, end 5529.857656 Metadata: title : Chapter 10 Chapter #0.10: start 5529.857656, end 6115.609489 Metadata: title : Chapter 11 Chapter #0.11: start 6115.609489, end 6697.857822 Metadata: title : Chapter 12 Chapter #0.12: start 6697.857822, end 7160.987156 Metadata: title : Chapter 13 Chapter #0.13: start 7160.987156, end 7337.830489 Metadata: title : Chapter 14 Chapter #0.14: start 7337.830489, end 7877.002456 Metadata: title : Chapter 15 Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 720x404, 3999 kb/s, 23.98 fps, 59.94 tbr, 90k tbn, 180k tbc Metadata: creation_time : 2013-11-13 16:27:35 Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 164 kb/s Metadata: creation_time : 2013-11-13 16:27:35 Stream #0:2(und): Subtitle: mov_text (text / 0x74786574) Metadata: creation_time : 2013-11-13 16:27:35 Output #0, avi, to 'P_1900.avi': Metadata: major_brand : mp42 minor_version : 0 compatible_brands: mp42isomavc1 ISFT : Lavf54.63.104 Chapter #0.0: start 0.000000, end 549.081867 Metadata: title : Chapter 1 Chapter #0.1: start 549.081867, end 1115.781333 Metadata: title : Chapter 2 Chapter #0.2: start 1115.781333, end 1384.416367 Metadata: title : Chapter 3 Chapter #0.3: start 1384.416367, end 1980.345033 Metadata: title : Chapter 4 Chapter #0.4: start 1980.345033, end 2564.895667 Metadata: title : Chapter 5 Chapter #0.5: start 2564.895667, end 3001.698700 Metadata: title : Chapter 6 Chapter #0.6: start 3001.698700, end 3669.699356 Metadata: title : Chapter 7 Chapter #0.7: start 3669.699356, end 4485.180689 Metadata: title : Chapter 8 Chapter #0.8: start 4485.180689, end 4941.269656 Metadata: title : Chapter 9 Chapter #0.9: start 4941.269656, end 5529.857656 Metadata: title : Chapter 10 Chapter #0.10: start 5529.857656, end 6115.609489 Metadata: title : Chapter 11 Chapter #0.11: start 6115.609489, end 6697.857822 Metadata: title : Chapter 12 Chapter #0.12: start 6697.857822, end 7160.987156 Metadata: title : Chapter 13 Chapter #0.13: start 7160.987156, end 7337.830489 Metadata: title : Chapter 14 Chapter #0.14: start 7337.830489, end 7877.002456 Metadata: title : Chapter 15 Stream #0:0(und): Video: mpeg4 (XVID / 0x44495658), yuv420p, 720x404, q=2-31, 1900 kb/s, 23.98 tbn, 23.98 tbc Metadata: creation_time : 2013-11-13 16:27:35 Stream #0:1(eng): Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 128 kb/s Metadata: creation_time : 2013-11-13 16:27:35 Stream mapping: Stream #0:0 -> #0:0 (h264 -> mpeg4) Stream #0:1 -> #0:1 (aac -> ac3) Press [q] to stop, [?] for help frame=188870 fps=487 q=2.0 Lsize= 1957926kB time=02:11:17.46 bitrate=2036.1kbits/s video:1824299kB audio:123079kB subtitle:0 global headers:0kB muxing overhead 0.541614% $ffmpeg -i PR.m4v -c:v mpeg4 -vtag XVID -b:v 2000k -r 23.976 -c:a ac3 -b:a 128k -ar 48000 -ac 2 P_2000.avi ffmpeg version 1.2.1-tessus Copyright (c) 2000-2013 the FFmpeg developers built on May 9 2013 21:58:14 with llvm-gcc 4.2.1 (LLVM build 2336.1.00) configuration: --prefix=/Users/tessus/data/ext/ffmpeg/sw --as=yasm --extra-version=tessus --disable-shared --enable-static --disable-ffplay --enable-gpl --enable-pthreads --enable-postproc --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-libspeex --enable-bzlib --enable-zlib --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libxavs --enable-version3 --enable- libvo-aacenc --enable-libvo-amrwbenc --enable-libvpx --enable-libgsm --enable-libopus --enable-fontconfig --enable-libfreetype --enable-libass --enable-filters --enable-runtime-cpudetect libavutil 52. 18.100 / 52. 18.100 libavcodec 54. 92.100 / 54. 92.100 libavformat 54. 63.104 / 54. 63.104 libavdevice 54. 3.103 / 54. 3.103 libavfilter 3. 42.103 / 3. 42.103 libswscale 2. 2.100 / 2. 2.100 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 2.100 / 52. 2.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/Volumes/done/PR.m4v': Metadata: major_brand : mp42 minor_version : 0 compatible_brands: mp42isomavc1 creation_time : 2013-11-13 16:27:35 encoder : HandBrake 0.9.9 2013051800 Duration: 02:11:17.46, start: 0.000000, bitrate: 4168 kb/s Chapter #0.0: start 0.000000, end 549.081867 Metadata: title : Chapter 1 Chapter #0.1: start 549.081867, end 1115.781333 Metadata: title : Chapter 2 Chapter #0.2: start 1115.781333, end 1384.416367 Metadata: title : Chapter 3 Chapter #0.3: start 1384.416367, end 1980.345033 Metadata: title : Chapter 4 Chapter #0.4: start 1980.345033, end 2564.895667 Metadata: title : Chapter 5 Chapter #0.5: start 2564.895667, end 3001.698700 Metadata: title : Chapter 6 Chapter #0.6: start 3001.698700, end 3669.699356 Metadata: title : Chapter 7 Chapter #0.7: start 3669.699356, end 4485.180689 Metadata: title : Chapter 8 Chapter #0.8: start 4485.180689, end 4941.269656 Metadata: title : Chapter 9 Chapter #0.9: start 4941.269656, end 5529.857656 Metadata: title : Chapter 10 Chapter #0.10: start 5529.857656, end 6115.609489 Metadata: title : Chapter 11 Chapter #0.11: start 6115.609489, end 6697.857822 Metadata: title : Chapter 12 Chapter #0.12: start 6697.857822, end 7160.987156 Metadata: title : Chapter 13 Chapter #0.13: start 7160.987156, end 7337.830489 Metadata: title : Chapter 14 Chapter #0.14: start 7337.830489, end 7877.002456 Metadata: title : Chapter 15 Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 720x404, 3999 kb/s, 23.98 fps, 59.94 tbr, 90k tbn, 180k tbc Metadata: creation_time : 2013-11-13 16:27:35 Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 164 kb/s Metadata: creation_time : 2013-11-13 16:27:35 Stream #0:2(und): Subtitle: mov_text (text / 0x74786574) Metadata: creation_time : 2013-11-13 16:27:35 Output #0, avi, to 'P_2000.avi': Metadata: major_brand : mp42 minor_version : 0 compatible_brands: mp42isomavc1 ISFT : Lavf54.63.104 Chapter #0.0: start 0.000000, end 549.081867 Metadata: title : Chapter 1 Chapter #0.1: start 549.081867, end 1115.781333 Metadata: title : Chapter 2 Chapter #0.2: start 1115.781333, end 1384.416367 Metadata: title : Chapter 3 Chapter #0.3: start 1384.416367, end 1980.345033 Metadata: title : Chapter 4 Chapter #0.4: start 1980.345033, end 2564.895667 Metadata: title : Chapter 5 Chapter #0.5: start 2564.895667, end 3001.698700 Metadata: title : Chapter 6 Chapter #0.6: start 3001.698700, end 3669.699356 Metadata: title : Chapter 7 Chapter #0.7: start 3669.699356, end 4485.180689 Metadata: title : Chapter 8 Chapter #0.8: start 4485.180689, end 4941.269656 Metadata: title : Chapter 9 Chapter #0.9: start 4941.269656, end 5529.857656 Metadata: title : Chapter 10 Chapter #0.10: start 5529.857656, end 6115.609489 Metadata: title : Chapter 11 Chapter #0.11: start 6115.609489, end 6697.857822 Metadata: title : Chapter 12 Chapter #0.12: start 6697.857822, end 7160.987156 Metadata: title : Chapter 13 Chapter #0.13: start 7160.987156, end 7337.830489 Metadata: title : Chapter 14 Chapter #0.14: start 7337.830489, end 7877.002456 Metadata: title : Chapter 15 Stream #0:0(und): Video: mpeg4 (XVID / 0x44495658), yuv420p, 720x404, q=2-31, 2000 kb/s, 23.98 tbn, 23.98 tbc Metadata: creation_time : 2013-11-13 16:27:35 Stream #0:1(eng): Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 128 kb/s Metadata: creation_time : 2013-11-13 16:27:35 Stream mapping: Stream #0:0 -> #0:0 (h264 -> mpeg4) Stream #0:1 -> #0:1 (aac -> ac3) Press [q] to stop, [?] for help frame=188870 fps=458 q=2.0 Lsize= 2053710kB time=02:11:17.46 bitrate=2135.7kbits/s video:1920254kB audio:123079kB subtitle:0 global headers:0kB muxing overhead 0.507827% -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 00:56:08 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 23:56:08 -0000 Subject: [FFmpeg-trac] #3214(avformat:open): ffmpeg can no longer open mega weird audio test mkv In-Reply-To: <032.1527f6c030f2b9cf45a09dc7cf9aaab9@avcodec.org> References: <032.1527f6c030f2b9cf45a09dc7cf9aaab9@avcodec.org> Message-ID: <047.2c74a3e6e904fddc6ffb9ed84fd50e19@avcodec.org> #3214: ffmpeg can no longer open mega weird audio test mkv -------------------------------------+------------------------------------- Reporter: cus | Owner: Type: defect | Status: open Priority: important | Component: avformat Version: git-master | Resolution: Keywords: mkv | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 00:58:18 2013 From: trac at avcodec.org (FFmpeg) Date: Mon, 09 Dec 2013 23:58:18 -0000 Subject: [FFmpeg-trac] #3214(avformat:open): ffmpeg can no longer open mega weird audio test mkv In-Reply-To: <032.1527f6c030f2b9cf45a09dc7cf9aaab9@avcodec.org> References: <032.1527f6c030f2b9cf45a09dc7cf9aaab9@avcodec.org> Message-ID: <047.002330ac061c5dfdf36034d9374c9ca5@avcodec.org> #3214: ffmpeg can no longer open mega weird audio test mkv -------------------------------------+------------------------------------- Reporter: cus | Owner: Type: defect | Status: open Priority: important | Component: avformat Version: git-master | Resolution: Keywords: mkv | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Regression since 2c8d876d / 569d18aa -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 01:01:31 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 00:01:31 -0000 Subject: [FFmpeg-trac] #3145(undetermined:closed): Header inconsistencies for a certain range of video bit rate In-Reply-To: <036.13010cd7329da63f62b951e9df582d56@avcodec.org> References: <036.13010cd7329da63f62b951e9df582d56@avcodec.org> Message-ID: <051.5f84a6322de9cc42495db63a33d54d79@avcodec.org> #3145: Header inconsistencies for a certain range of video bit rate -------------------------------------+------------------------------------- Reporter: olitoli | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: xvid avi video bitrate => * resolution: => duplicate * status: new => closed * component: FFmpeg => undetermined * version: 2.1 => unspecified Comment: Should be tested again once ticket #2145 is fixed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 01:14:56 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 00:14:56 -0000 Subject: [FFmpeg-trac] #3212(undetermined:closed): initial seek in MSVIDEO1 causes failure to display on some avi files In-Reply-To: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> References: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> Message-ID: <051.c95472a3281aa9d3aa7d48eb90e6cf95@avcodec.org> #3212: initial seek in MSVIDEO1 causes failure to display on some avi files -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DonMoir): I suspect you only searched for filename and assumed it was dup of #296 but I already explained in #1273 comment 13 that it is not the same issue. In comment 10 of #1273 you suggest I open a new ticket on it. Now would like to know where you came up with duplicate if neither 1273 or 296. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 01:28:07 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 00:28:07 -0000 Subject: [FFmpeg-trac] #3212(undetermined:closed): initial seek in MSVIDEO1 causes failure to display on some avi files In-Reply-To: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> References: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> Message-ID: <051.0e692ce6e4438ec6514f263e424f7e29@avcodec.org> #3212: initial seek in MSVIDEO1 causes failure to display on some avi files -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): I suggest you reopen this ticket once ticket #296 is fixed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 01:35:00 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 00:35:00 -0000 Subject: [FFmpeg-trac] #3212(undetermined:closed): initial seek in MSVIDEO1 causes failure to display on some avi files In-Reply-To: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> References: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> Message-ID: <051.89b0d3e31cc5f3242e2188492f5c0f1c@avcodec.org> #3212: initial seek in MSVIDEO1 causes failure to display on some avi files -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DonMoir): Ticket #296 has nothing to do at all with this ticket for gods sake. Ticket #296 is just a search to keyframe versus exact time and that is just inherent in ffmpeg. Ticket #296 is not even a bug. That issue is more of an application issue and seek works perfectly fine for me on that file other than the no display part if you seek before first decode. Repeat, this issue (3212 and 1273) is because any attempt to seek before the first avcodec_decode_video2 even to initial keyframe, causes failure to display. Completely different issues. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 01:59:39 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 00:59:39 -0000 Subject: [FFmpeg-trac] #3208(undetermined:open): Very long CPU-bound loop with -fflags +genpts and -vsync cfr (was: Very long CPU-bound loop with -fflags +genpts and -af volumedetect) In-Reply-To: <037.632fd6bc7327496ce9c5b9b9017e9df4@avcodec.org> References: <037.632fd6bc7327496ce9c5b9b9017e9df4@avcodec.org> Message-ID: <052.526b201c49957db2190031d79b6ed348@avcodec.org> #3208: Very long CPU-bound loop with -fflags +genpts and -vsync cfr -------------------------------------+------------------------------------- Reporter: lelegard | Owner: Type: defect | Status: open Priority: important | Component: Version: git-master | undetermined Keywords: regression | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 * priority: normal => important * version: 2.1.1 => git-master * keywords: => regression Comment: Reproducible with the following command: {{{ $ ffmpeg -vsync cfr -fflags +genpts -i input.avi -vn -f null - }}} Regression since 8c5ee45d / 574dcb5b -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 02:18:56 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 01:18:56 -0000 Subject: [FFmpeg-trac] #3208(undetermined:open): Very long CPU-bound loop with -fflags +genpts and -vsync cfr In-Reply-To: <037.632fd6bc7327496ce9c5b9b9017e9df4@avcodec.org> References: <037.632fd6bc7327496ce9c5b9b9017e9df4@avcodec.org> Message-ID: <052.f4d0f4854160362e7ae8e9930c8a3965@avcodec.org> #3208: Very long CPU-bound loop with -fflags +genpts and -vsync cfr -------------------------------------+------------------------------------- Reporter: lelegard | Owner: Type: defect | Status: open Priority: important | Component: Version: git-master | undetermined Keywords: regression | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by cehoyos): Reproducible with the following commands: {{{ $ ffmpeg -f lavfi -i testsrc -f s16le -i /dev/zero -t 3600 -bf 2 -acodec ac3 out.avi $ ffmpeg -vsync cfr -fflags +genpts -i out.avi -vn -f null - }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 02:19:19 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 01:19:19 -0000 Subject: [FFmpeg-trac] #3215(undetermined:new): remuxed cvid gray8 have wrong colors Message-ID: <038.09e8ea990f4deade8be4da2ec0c9bc37@avcodec.org> #3215: remuxed cvid gray8 have wrong colors -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: | undetermined unspecified | Keywords: Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- bits_per_coded_sample should be set to 0x28 instead of 0x8 (problem similar to ticket #1994) {{{ C:\>ffmpeg -i QT-PureVoice.mov -an -vcodec copy out.mov ffmpeg version N-58797-g4a0d827 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 6 2013 02:21:57 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-av isynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enab le-iconv --enable-libass --enable-libbluray --enable-libcaca --enable- libfreetyp e --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --ena ble-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-l ibopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libsp eex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable- libvo-aa cenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable- libwavp ack --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'QT-PureVoice.mov': Metadata: creation_time : 2002-10-03 18:58:23 Duration: 00:00:05.96, start: 0.000000, bitrate: 895 kb/s Stream #0:0(eng): Audio: qcelp (Qclp / 0x706C6351), 11025 Hz, mono, flt (def ault) Metadata: creation_time : 2002-10-03 18:58:23 handler_name : Apple Alias Data Handler Stream #0:1(eng): Video: cinepak (cvid / 0x64697663), pal8, 192x128, 872 kb/ s, 24 fps, 24 tbr, 1000k tbn, 1000k tbc (default) Metadata: creation_time : 2002-10-03 18:58:24 handler_name : Apple Alias Data Handler [mov @ 02c1b020] WARNING codec timebase is very high. If duration is too long, file may not be playable by quicktime. Specify a shorter timebase or choose different container. Output #0, mov, to 'out.mov': Metadata: encoder : Lavf55.22.100 Stream #0:0(eng): Video: cinepak (cvid / 0x64697663), pal8, 192x128, q=2-31, 872 kb/s, 24 fps, 1000k tbn, 1000k tbc (default) Metadata: creation_time : 2002-10-03 18:58:24 handler_name : Apple Alias Data Handler Stream mapping: Stream #0:1 -> #0:0 (copy) Press [q] to stop, [?] for help frame= 143 fps=0.0 q=-1.0 Lsize= 636kB time=00:00:05.91 bitrate= 880.6kbits /s video:636kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.039783% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 02:25:42 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 01:25:42 -0000 Subject: [FFmpeg-trac] #3213(avcodec:open): h264 flv segfaults on seek beyond the end of the file In-Reply-To: <032.0bc5705dcdad389185eb971a1df7470d@avcodec.org> References: <032.0bc5705dcdad389185eb971a1df7470d@avcodec.org> Message-ID: <047.4a31f95855369f571083f15dd3c838f5@avcodec.org> #3213: h264 flv segfaults on seek beyond the end of the file -------------------------------------+------------------------------------- Reporter: cus | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: h264 seek | Blocked By: crash regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => open * reproduced: 0 => 1 Comment: Only reproducible with -threads > 1 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 02:29:59 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 01:29:59 -0000 Subject: [FFmpeg-trac] #3215(undetermined:new): remuxed cvid gray8 have wrong colors In-Reply-To: <038.09e8ea990f4deade8be4da2ec0c9bc37@avcodec.org> References: <038.09e8ea990f4deade8be4da2ec0c9bc37@avcodec.org> Message-ID: <053.657eea1d3f961d693f0a5635bea0cbe0@avcodec.org> #3215: remuxed cvid gray8 have wrong colors -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Description changed by ami_stuff: Old description: > bits_per_coded_sample should be set to 0x28 instead of 0x8 (problem > similar to ticket #1994) > > {{{ > C:\>ffmpeg -i QT-PureVoice.mov -an -vcodec copy out.mov > ffmpeg version N-58797-g4a0d827 Copyright (c) 2000-2013 the FFmpeg > developers > built on Dec 6 2013 02:21:57 with gcc 4.8.2 (GCC) > configuration: --enable-gpl --enable-version3 --disable-w32threads > --enable-av > isynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls > --enab > le-iconv --enable-libass --enable-libbluray --enable-libcaca --enable- > libfreetyp > e --enable-libgsm --enable-libilbc --enable-libmodplug --enable- > libmp3lame --ena > ble-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg > --enable-l > ibopus --enable-librtmp --enable-libschroedinger --enable-libsoxr > --enable-libsp > eex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable- > libvo-aa > cenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable- > libwavp > ack --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib > libavutil 52. 56.100 / 52. 56.100 > libavcodec 55. 45.100 / 55. 45.100 > libavformat 55. 22.100 / 55. 22.100 > libavdevice 55. 5.102 / 55. 5.102 > libavfilter 3. 91.100 / 3. 91.100 > libswscale 2. 5.101 / 2. 5.101 > libswresample 0. 17.104 / 0. 17.104 > libpostproc 52. 3.100 / 52. 3.100 > Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'QT-PureVoice.mov': > Metadata: > creation_time : 2002-10-03 18:58:23 > Duration: 00:00:05.96, start: 0.000000, bitrate: 895 kb/s > Stream #0:0(eng): Audio: qcelp (Qclp / 0x706C6351), 11025 Hz, mono, > flt (def > ault) > Metadata: > creation_time : 2002-10-03 18:58:23 > handler_name : Apple Alias Data Handler > Stream #0:1(eng): Video: cinepak (cvid / 0x64697663), pal8, 192x128, > 872 kb/ > s, 24 fps, 24 tbr, 1000k tbn, 1000k tbc (default) > Metadata: > creation_time : 2002-10-03 18:58:24 > handler_name : Apple Alias Data Handler > [mov @ 02c1b020] WARNING codec timebase is very high. If duration is too > long, > file may not be playable by quicktime. Specify a shorter timebase > or choose different container. > Output #0, mov, to 'out.mov': > Metadata: > encoder : Lavf55.22.100 > Stream #0:0(eng): Video: cinepak (cvid / 0x64697663), pal8, 192x128, > q=2-31, > 872 kb/s, 24 fps, 1000k tbn, 1000k tbc (default) > Metadata: > creation_time : 2002-10-03 18:58:24 > handler_name : Apple Alias Data Handler > Stream mapping: > Stream #0:1 -> #0:0 (copy) > Press [q] to stop, [?] for help > frame= 143 fps=0.0 q=-1.0 Lsize= 636kB time=00:00:05.91 bitrate= > 880.6kbits > /s > video:636kB audio:0kB subtitle:0 global headers:0kB muxing overhead > 0.039783% > }}} New description: bits_per_coded_sample should be set to 0x28 instead of 0x8 (problem similar to ticket #1994) {{{ C:\>ffmpeg -i QT-QDesign2.mov -an -vcodec copy out.mov ffmpeg version N-58797-g4a0d827 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 6 2013 02:21:57 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-av isynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enab le-iconv --enable-libass --enable-libbluray --enable-libcaca --enable- libfreetyp e --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --ena ble-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-l ibopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libsp eex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable- libvo-aa cenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable- libwavp ack --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 56.100 / 52. 56.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'QT-QDesign2.mov': Metadata: creation_time : 2002-10-03 18:58:49 Duration: 00:00:05.96, start: 0.000000, bitrate: 898 kb/s Stream #0:0(eng): Audio: qdm2 (QDM2 / 0x324D4451), 11025 Hz, mono, s16, 24 k b/s (default) Metadata: creation_time : 2002-10-03 18:58:49 handler_name : Apple Alias Data Handler Stream #0:1(eng): Video: cinepak (cvid / 0x64697663), pal8, 192x128, 872 kb/ s, 24 fps, 24 tbr, 1000k tbn, 1000k tbc (default) Metadata: creation_time : 2002-10-03 18:58:49 handler_name : Apple Alias Data Handler [mov @ 02ae7540] WARNING codec timebase is very high. If duration is too long, file may not be playable by quicktime. Specify a shorter timebase or choose different container. Output #0, mov, to 'out.mov': Metadata: encoder : Lavf55.22.100 Stream #0:0(eng): Video: cinepak (cvid / 0x64697663), pal8, 192x128, q=2-31, 872 kb/s, 24 fps, 1000k tbn, 1000k tbc (default) Metadata: creation_time : 2002-10-03 18:58:49 handler_name : Apple Alias Data Handler Stream mapping: Stream #0:1 -> #0:0 (copy) Press [q] to stop, [?] for help frame= 143 fps=0.0 q=-1.0 Lsize= 636kB time=00:00:05.91 bitrate= 880.6kbits /s video:636kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.039783% }}} -- -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 03:04:07 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 02:04:07 -0000 Subject: [FFmpeg-trac] #3212(undetermined:reopened): initial seek in MSVIDEO1 causes failure to display on some avi files In-Reply-To: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> References: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> Message-ID: <051.58e3b7e8359e174707aec5ea2910b007@avcodec.org> #3212: initial seek in MSVIDEO1 causes failure to display on some avi files -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: defect | Status: reopened Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by DonMoir): * status: closed => reopened * resolution: duplicate => -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 03:06:28 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 02:06:28 -0000 Subject: [FFmpeg-trac] #3212(undetermined:closed): initial seek in MSVIDEO1 causes failure to display on some avi files In-Reply-To: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> References: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> Message-ID: <051.5fce7b31e736ae7cb7d816c6aa053a1f@avcodec.org> #3212: initial seek in MSVIDEO1 causes failure to display on some avi files -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: reopened => closed * resolution: => duplicate -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 03:15:55 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 02:15:55 -0000 Subject: [FFmpeg-trac] #3212(undetermined:closed): initial seek in MSVIDEO1 causes failure to display on some avi files In-Reply-To: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> References: <036.c4c8315b247e50701fac9863aca1c171@avcodec.org> Message-ID: <051.5b0a69269fff43a8fbe212ecd260b4c5@avcodec.org> #3212: initial seek in MSVIDEO1 causes failure to display on some avi files -------------------------------------+------------------------------------- Reporter: DonMoir | Owner: Type: defect | Status: closed Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: duplicate Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DonMoir): Don't ever call anybody rude Carl. It makes you a hypocrite as well. So anyway, ignore it and don't fix according to Carl. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 06:21:10 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 05:21:10 -0000 Subject: [FFmpeg-trac] #1578(undetermined:open): variable FPS incorrect frame length In-Reply-To: <039.4146843042e5eb4e5459ce07806d4fc4@avcodec.org> References: <039.4146843042e5eb4e5459ce07806d4fc4@avcodec.org> Message-ID: <054.bdd2f1a8fdc4024351e744e81f1ed131@avcodec.org> #1578: variable FPS incorrect frame length -------------------------------------+------------------------------------- Reporter: kubabrecka | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: fps | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by er.anshul.maheshwari@?): I was looking in code {{{ if (delta < -1.1) { av_log(NULL, AV_LOG_VERBOSE, "2nb_freame%d***Drop! %d----%ldd\n",nb_frames,format_video_sync,delta); nb_frames = 0; } }}} and found delta as -2.0 , that makes nb_frame = 0 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 07:00:02 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 06:00:02 -0000 Subject: [FFmpeg-trac] #1578(undetermined:open): variable FPS incorrect frame length In-Reply-To: <039.4146843042e5eb4e5459ce07806d4fc4@avcodec.org> References: <039.4146843042e5eb4e5459ce07806d4fc4@avcodec.org> Message-ID: <054.17f038f8b83dd32f3c4f616b51170145@avcodec.org> #1578: variable FPS incorrect frame length -------------------------------------+------------------------------------- Reporter: kubabrecka | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: fps | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by er.anshul.maheshwari@?): Now When I am looking how delta is calculated, then I found {{{ delta = sync_ipts - ost->sync_opts + duration; }}} where values were duration = 1.0000 sync_ipts = 0 ost->sync_opts = 3 delta = 0 -3 +1 = -2.00 and my frame was lost -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 07:04:19 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 06:04:19 -0000 Subject: [FFmpeg-trac] #2686(avcodec:open): Native AAC encoder collapses at high bitrates on some samples In-Reply-To: <036.46e6f0dcfe0fbeeeee1e7460dc88b12a@avcodec.org> References: <036.46e6f0dcfe0fbeeeee1e7460dc88b12a@avcodec.org> Message-ID: <051.0d118b481126ba1b9588f7c9a1bb90d4@avcodec.org> #2686: Native AAC encoder collapses at high bitrates on some samples -------------------------------------+------------------------------------- Reporter: Kamedo2 | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: aac | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by klaussfreire): Sadly, no. I thought so, but further tests (at various bitrates) show saturation. Not the same issue as the original in the OP, but an issue nevertheless. I have only attacked M/S coding and some bit allocation inefficiencies, but the improvement seemed to improve those issues during initial tests since tonal band encoding improved significantly, but it's still not enough it seems to avoid clipping due to quantization noise. Since the original signal is saturated already, I may have a relatively easy fix for it: all quantization noise risks the same artifacts, but I believe there is only one fix, which involves tweaking rounding of strong signals. That needs careful calibration, however, in order to avoid modifying behavior on non-clipping signals (since rounding towards zero generally induces higher SNR), but I'll be travelling soon and won't be able to work much on it till jan 1st. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 08:28:51 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 07:28:51 -0000 Subject: [FFmpeg-trac] #3216(undetermined:new): ffprobe and ffmpeg functions return different last frame for same file Message-ID: <036.14b2da3c5a4a6bf5fc65648fd84aac6f@avcodec.org> #3216: ffprobe and ffmpeg functions return different last frame for same file -------------------------------------+------------------------------------- Reporter: hxuanyu | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- I met an issue that the output of ffprobe -show_frames seems different from what av_read_frame+avcodec_decode_video2 ouputs The ffprobe and ffmpeg libs were built from same latest code. I used ffprobe -show_frames -select_streams v input to print out all frame info. and here's the info of last 2 frames [FRAME] media_type=video key_frame=0 pkt_pts=N/A pkt_pts_time=N/A pkt_dts=167501 pkt_dts_time=167.501000 pkt_duration=N/A pkt_duration_time=N/A pkt_pos=103794518 pkt_size=74 width=1920 height=1080 pix_fmt=yuv420p sample_aspect_ratio=1:1 pict_type=P coded_picture_number=4016 display_picture_number=0 interlaced_frame=0 top_field_first=0 repeat_pict=0 [/FRAME] [FRAME] media_type=video key_frame=0 pkt_pts=N/A pkt_pts_time=N/A pkt_dts=167542 pkt_dts_time=167.542000 pkt_duration=N/A pkt_duration_time=N/A pkt_pos=103794920 pkt_size=74 width=1920 height=1080 pix_fmt=yuv420p sample_aspect_ratio=1:1 pict_type=P coded_picture_number=4017 display_picture_number=0 interlaced_frame=0 top_field_first=0 repeat_pict=0 [/FRAME] on the other hand, our application uses av_read_frame and avcodec_decode_video2 to read a avpacket and decode into a frame. Below are some traces Line 100: 00:00:33.384 MAIN rhbc73 process packet, Packet.dts = 0, Packet.pts = -9223372036854775808 Line 101: 00:00:33.384 MAIN rhbc73 process packet, Packet.dts = 42, Packet.pts = -9223372036854775808 Line 102: 00:00:33.400 MAIN rhbc73 process packet, Packet.dts = 83, Packet.pts = -9223372036854775808 Line 103: 00:00:33.400 MAIN rhbc73 process packet, Packet.dts = 125, Packet.pts = -9223372036854775808 Line 104: 00:00:33.400 MAIN rhbc73 process packet, Packet.dts = 167, Packet.pts = -9223372036854775808 Line 105: 00:00:33.400 MAIN rhbc73 -- get a full frame, pFrame->pkt_dts = 0, pFrame->pkt_pts = -9223372036854775808, BestEffortTimeStamp = 0, pFrame->coded_picture_number = 0 Line 107: 00:00:33.400 MAIN rhbc73 process packet, Packet.dts = 209, Packet.pts = -9223372036854775808 Line 108: 00:00:33.400 MAIN rhbc73 -- get a full frame, pFrame->pkt_dts = 42, pFrame->pkt_pts = -9223372036854775808, BestEffortTimeStamp = 42, pFrame->coded_picture_number = 1 Line 110: 00:00:33.400 MAIN rhbc73 process packet, Packet.dts = 250, Packet.pts = -9223372036854775808 Line 111: 00:00:33.416 MAIN rhbc73 -- get a full frame, pFrame->pkt_dts = 83, pFrame->pkt_pts = -9223372036854775808, BestEffortTimeStamp = 83, pFrame->coded_picture_number = 2 Line 12140: 00:00:51.168 MAIN rhbc73 process packet, Packet.dts = 167501, Packet.pts = -9223372036854775808 Line 12141: 00:00:51.168 MAIN rhbc73 -- get a full frame, pFrame->pkt_dts = 167334, pFrame->pkt_pts = -9223372036854775808, BestEffortTimeStamp = 167334, pFrame->coded_picture_number = 4012 Line 12143: 00:00:51.184 MAIN rhbc73 process packet, Packet.dts = 167542, Packet.pts = -9223372036854775808 Line 12144: 00:00:51.184 MAIN rhbc73 -- get a full frame, pFrame->pkt_dts = 167376, pFrame->pkt_pts = -9223372036854775808, BestEffortTimeStamp = 167376, pFrame->coded_picture_number = 4013 so from this we can see last frame has different pkt_pts and coded_picture_number from the output of ffprobe. The file I tested is here https://dl.dropboxusercontent.com/u/89678527/Threw%20It%20On%20The%20Ground.avi -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 08:36:49 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 07:36:49 -0000 Subject: [FFmpeg-trac] #1578(undetermined:open): variable FPS incorrect frame length In-Reply-To: <039.4146843042e5eb4e5459ce07806d4fc4@avcodec.org> References: <039.4146843042e5eb4e5459ce07806d4fc4@avcodec.org> Message-ID: <054.bf3d03d4abe3f809a8954c33a879bb67@avcodec.org> #1578: variable FPS incorrect frame length -------------------------------------+------------------------------------- Reporter: kubabrecka | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: fps | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by er.anshul.maheshwari@?): git have same calculation but adding break in below code does not have frame loss {{{ switch (format_video_sync) { case VSYNC_VSCFR: if (ost->frame_number == 0 && delta - duration >= 0.5) { av_log(NULL, AV_LOG_DEBUG, "Not duplicating %d initial frames\n", (int)lrintf(delta - duration)); delta = duration; ost->sync_opts = lrint(sync_ipts); } case VSYNC_CFR: // FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c if (delta < -1.1) nb_frames = 0; else if (delta > 1.1) nb_frames = lrintf(delta); break; }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 11:17:40 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 10:17:40 -0000 Subject: [FFmpeg-trac] #2686(avcodec:open): Native AAC encoder collapses at high bitrates on some samples In-Reply-To: <036.46e6f0dcfe0fbeeeee1e7460dc88b12a@avcodec.org> References: <036.46e6f0dcfe0fbeeeee1e7460dc88b12a@avcodec.org> Message-ID: <051.9cd20cf2a0d73b244c8b4266b909e086@avcodec.org> #2686: Native AAC encoder collapses at high bitrates on some samples -------------------------------------+------------------------------------- Reporter: Kamedo2 | Owner: Type: defect | Status: open Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: aac | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by Kamedo2): You mean the clipping of the output PCM? LAME solve it by reducing the gain to around 98%. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 11:39:56 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 10:39:56 -0000 Subject: [FFmpeg-trac] #3194(avcodec:new): valgrind leak on example package In-Reply-To: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> References: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> Message-ID: <051.10738fa3ead13b7fdeff5bd296d859ce@avcodec.org> #3194: valgrind leak on example package ------------------------------------+----------------------------------- Reporter: andreyv | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: leak | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by andreyv): I've tested with suggested arguments. However , it doesn't help to fix the leak ./configure --prefix=/home/andrey/ffmpeg_sources/ffmpeg_latest --extra- ldflags=-L/home/andrey/ffmpeg_build/lib --bindir=/home/andrey/ffmpeg_build/bin --extra-libs=-ldl --extra- cflags=-I/home/andrey/ffmpeg_build/include --enable-gpl --disable-vaapi --disable-iconv ==6788== 24 bytes in 1 blocks are still reachable in loss record 1 of 1 ==6788== at 0x402A420: memalign (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so) ==6788== by 0x402A4DE: posix_memalign (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so) ==6788== by 0x86816A7: av_malloc (mem.c:94) ==6788== by 0x808CB22: video_decode_example (decoding_encoding.c:557) ==6788== by 0x808CC3B: main (decoding_encoding.c:635) line 557 is if (avcodec_open2(c, codec, NULL) < 0) { fprintf(stderr, "Could not open codec\n"); exit(1); } the leak comes from the av_malloc, it is inside the allocation from avcodec_open2 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 11:48:26 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 10:48:26 -0000 Subject: [FFmpeg-trac] #228(FFserver:closed): FFserver: reordering of ""s in config file makes difference In-Reply-To: <034.483826ed2380430390d2402e1c248439@avcodec.org> References: <034.483826ed2380430390d2402e1c248439@avcodec.org> Message-ID: <049.d890643627ab2440a1c3b9298d2958f0@avcodec.org> #228: FFserver: reordering of ""s in config file makes difference -------------------------------------+------------------------------------- Reporter: burek | Owner: baptiste Type: defect | Status: closed Priority: important | Component: FFserver Version: git | Resolution: Keywords: | needs_more_info Blocking: | Blocked By: Analyzed by developer: 1 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by saste): * status: open => closed * resolution: => needs_more_info Comment: Please reopen the ticket if you are able to reproduce the issue with a recent ffserver version. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 11:51:11 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 10:51:11 -0000 Subject: [FFmpeg-trac] #3142(FFserver:closed): FFserver ignores encoding params in stream context In-Reply-To: <039.09d7024b8463f67e35f5942ce675cb44@avcodec.org> References: <039.09d7024b8463f67e35f5942ce675cb44@avcodec.org> Message-ID: <054.897bc9f1ef735d359428b7436aa0e0af@avcodec.org> #3142: FFserver ignores encoding params in stream context -------------------------------------+------------------------------------- Reporter: importinis | Owner: Type: defect | Status: closed Priority: important | Component: FFserver Version: unspecified | Resolution: Keywords: | needs_more_info Blocking: | Blocked By: Analyzed by developer: 1 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by saste): * status: open => closed * resolution: => needs_more_info * reproduced: 1 => 0 Comment: Please reopen the ticket if you are able to provide evidence of the issue you reported. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 12:09:01 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 11:09:01 -0000 Subject: [FFmpeg-trac] #3194(avcodec:new): valgrind leak on example package In-Reply-To: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> References: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> Message-ID: <051.ff6fadae04c3afee93daaa2ba3049c5f@avcodec.org> #3194: valgrind leak on example package ------------------------------------+----------------------------------- Reporter: andreyv | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: leak | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): Please build with {{{--disable-optimizations}}} this should make the valgrind output more useful. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 12:46:54 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 11:46:54 -0000 Subject: [FFmpeg-trac] #3194(avcodec:new): valgrind leak on example package In-Reply-To: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> References: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> Message-ID: <051.f60a8c2417c677df4b677bb490737a4d@avcodec.org> #3194: valgrind leak on example package ------------------------------------+----------------------------------- Reporter: andreyv | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: leak | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by andreyv): ok now the output: ==15887== 24 bytes in 1 blocks are still reachable in loss record 1 of 1 ==15887== at 0x402A420: memalign (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so) ==15887== by 0x402A4DE: posix_memalign (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so) ==15887== by 0x874A4BC: av_malloc (mem.c:94) ==15887== by 0x84AFD9B: default_lockmgr_cb (utils.c:78) ==15887== by 0x84B867A: ff_lock_avcodec (utils.c:3240) ==15887== by 0x84B2500: avcodec_open2 (utils.c:1180) ==15887== by 0x8049ED2: video_decode_example (decoding_encoding.c:557) ==15887== by 0x8049FEB: main (decoding_encoding.c:635) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 13:16:13 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 12:16:13 -0000 Subject: [FFmpeg-trac] #2659(build system:closed): Compiling for i386 on 64bit OSX is hard In-Reply-To: <036.f520c8cc9f414b4254f850663ad1b787@avcodec.org> References: <036.f520c8cc9f414b4254f850663ad1b787@avcodec.org> Message-ID: <051.cb231ed33b6ad34c9c0d83610462fd7e@avcodec.org> #2659: Compiling for i386 on 64bit OSX is hard -------------------------------------+------------------------------------- Reporter: hendrik | Owner: Type: defect | Status: closed Priority: normal | Component: build Version: git-master | system Keywords: i386 OSX | Resolution: Blocking: | worksforme Analyzed by developer: 0 | Blocked By: | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: i386 OSX Darwin => i386 OSX * status: new => closed * resolution: => worksforme Comment: I tested the following configure lines successfully: {{{ $ ./configure --enable-small --cc='cc -m32' $ ./configure --enable-shared --disable-static --cc='cc -m32' $ ./configure --enable-shared --disable-static --enable-small --cc='cc -m32' }}} The used compiler was: {{{ $ cc -v Apple LLVM version 5.0 (clang-500.2.75) (based on LLVM 3.3svn) Target: x86_64-apple-darwin12.5.0 Thread model: posix }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 13:19:45 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 12:19:45 -0000 Subject: [FFmpeg-trac] #2784(build system:open): MacOS: building minimal, audio-only version fails with linker error In-Reply-To: <036.31de03e85dbdd231bb0589e014ae4d0b@avcodec.org> References: <036.31de03e85dbdd231bb0589e014ae4d0b@avcodec.org> Message-ID: <051.c9a35a15f00ae4ce4de7b3a04580c325@avcodec.org> #2784: MacOS: building minimal, audio-only version fails with linker error -------------------------------------+------------------------------------- Reporter: milgner | Owner: Type: defect | Status: open Priority: normal | Component: build Version: git-master | system Keywords: osx | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Comment (by cehoyos): Still reproducible: {{{ $ make V=1 ffmpeg gcc -dynamiclib -Wl,-single_module -Wl,-install_name,/usr/local/lib/libavfilter.3.dylib,-current_version,3.92.100,-compatibility_version,3 -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat -Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,-dynamic,-search_paths_first -o libavfilter/libavfilter.3.dylib libavfilter/af_aformat.o libavfilter/af_anull.o libavfilter/allfilters.o libavfilter/audio.o libavfilter/avcodec.o libavfilter/avfilter.o libavfilter/avfiltergraph.o libavfilter/buffer.o libavfilter/buffersink.o libavfilter/buffersrc.o libavfilter/drawutils.o libavfilter/fifo.o libavfilter/formats.o libavfilter/graphdump.o libavfilter/graphparser.o libavfilter/opencl_allkernels.o libavfilter/pthread.o libavfilter/setpts.o libavfilter/transform.o libavfilter/trim.o libavfilter/vf_format.o libavfilter/vf_null.o libavfilter/video.o -lavutil -liconv -lm -lbz2 -lz Undefined symbols for architecture x86_64: "_avcodec_find_best_pix_fmt_of_2", referenced from: _pick_format in avfiltergraph.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make: *** [libavfilter/libavfilter.3.dylib] Error 1 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 14:00:26 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 13:00:26 -0000 Subject: [FFmpeg-trac] #3037(build system:closed): installation errors In-Reply-To: <042.18643d1ab4921ac495e52b5d8776f9eb@avcodec.org> References: <042.18643d1ab4921ac495e52b5d8776f9eb@avcodec.org> Message-ID: <057.7aef31a51f89679b32984b7c997a8251@avcodec.org> #3037: installation errors -------------------------------------+------------------------------------- Reporter: | Owner: spookybathtub | Status: closed Type: defect | Component: build Priority: minor | system Version: git-master | Resolution: fixed Keywords: osx | Blocked By: regression | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Fixed by Vittorio Giovara since 71b95f2a -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 15:06:27 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 14:06:27 -0000 Subject: [FFmpeg-trac] #314(avdevice:open): OpenAL device does not work on OS X In-Reply-To: <035.dbfe064779a657e7cab88f53c822b084@avcodec.org> References: <035.dbfe064779a657e7cab88f53c822b084@avcodec.org> Message-ID: <050.6e9cc1976d13ecfbbfd2962d9db615b5@avcodec.org> #314: OpenAL device does not work on OS X -------------------------------------+------------------------------------ Reporter: nieder | Owner: Type: enhancement | Status: open Priority: wish | Component: avdevice Version: git-master | Resolution: Keywords: openal osx | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | -------------------------------------+------------------------------------ Changes (by cehoyos): * priority: normal => wish * status: new => open * reproduced: 0 => 1 Comment: I can reproduce the crash if I force OpenAL enabled and fix the includes and linker flags. {{{ (lldb) r -f openal -i 'Built-in Microphone' Process 20723 launched: 'ffmpeg_g' (x86_64) ffmpeg version N-58952-gf8d8d2e Copyright (c) 2000-2013 the FFmpeg developers built on Dec 10 2013 14:49:51 with Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn) configuration: libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 ffmpeg_g(20723,0x7fff785df180) malloc: *** error for object 0x10131f138: incorrect checksum for freed object - object was probably modified after being freed. *** set a breakpoint in malloc_error_break to debug Process 20723 stopped * thread #1: tid = 0x983b, 0x00007fff8be15212 libsystem_kernel.dylib`__pthread_kill + 10, queue = 'com.apple.main- thread, stop reason = signal SIGABRT frame #0: 0x00007fff8be15212 libsystem_kernel.dylib`__pthread_kill + 10 libsystem_kernel.dylib`__pthread_kill + 10: -> 0x7fff8be15212: jae 0x7fff8be15219 ; __pthread_kill + 17 0x7fff8be15214: jmpq 0x7fff8be164d4 ; cerror_nocancel 0x7fff8be15219: ret 0x7fff8be1521a: nop (lldb) bt * thread #1: tid = 0x983b, 0x00007fff8be15212 libsystem_kernel.dylib`__pthread_kill + 10, queue = 'com.apple.main- thread, stop reason = signal SIGABRT frame #0: 0x00007fff8be15212 libsystem_kernel.dylib`__pthread_kill + 10 frame #1: 0x00007fff88f09b24 libsystem_c.dylib`pthread_kill + 90 frame #2: 0x00007fff88f4df61 libsystem_c.dylib`abort + 143 frame #3: 0x00007fff88f298d5 libsystem_c.dylib`szone_error + 580 frame #4: 0x00007fff88f2e2c2 libsystem_c.dylib`tiny_malloc_from_free_list + 378 frame #5: 0x00007fff88f2eb08 libsystem_c.dylib`szone_malloc_should_clear + 971 frame #6: 0x00007fff88f26978 libsystem_c.dylib`szone_memalign + 89 frame #7: 0x00007fff88f2171a libsystem_c.dylib`malloc_zone_memalign + 114 frame #8: 0x00007fff88f21f4e libsystem_c.dylib`posix_memalign + 54 frame #9: 0x00000001006d4ecd ffmpeg_g`av_mallocz [inlined] av_malloc(size=104) + 49 at mem.c:94 frame #10: 0x00000001006d4e9c ffmpeg_g`av_mallocz(size=104) + 12 at mem.c:244 frame #11: 0x0000000100139951 ffmpeg_g`avformat_find_stream_info [inlined] add_to_pktbuf(pkt=0x000000010131ee00) + 5 at utils.c:463 frame #12: 0x000000010013994c ffmpeg_g`avformat_find_stream_info(ic=0x0000000101818a00, options=0x0000000101315440) + 1244 at utils.c:2959 frame #13: 0x0000000100006c25 ffmpeg_g`open_input_file(o=0x00007fff5fbff6d0, filename=) + 1397 at ffmpeg_opt.c:861 frame #14: 0x0000000100006510 ffmpeg_g`open_files(l=0x000000010130e678, inout=0x0000000100851a0c, open_file=0x00000001000066b0) + 256 at ffmpeg_opt.c:2583 frame #15: 0x0000000100006352 ffmpeg_g`ffmpeg_parse_options(argc=, argv=) + 178 at ffmpeg_opt.c:2620 frame #16: 0x00000001000105e8 ffmpeg_g`main(argc=, argv=) + 184 at ffmpeg.c:3522 frame #17: 0x00007fff92ec27e1 libdyld.dylib`start + 1 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 15:25:31 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 14:25:31 -0000 Subject: [FFmpeg-trac] #43(avformat:open): JACK input device doesn't link on OS X In-Reply-To: <035.e98ce076d8386177c331062487a71a13@avcodec.org> References: <035.e98ce076d8386177c331062487a71a13@avcodec.org> Message-ID: <050.98ee450793e20fa8f0c7867da94861ef@avcodec.org> #43: JACK input device doesn't link on OS X -------------------------------------+------------------------------------- Reporter: nieder | Owner: Type: enhancement | Status: open Priority: wish | Component: avformat Version: git-master | Resolution: Keywords: jack osx | Blocked By: roundup | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * status: reopened => open * reproduced: 0 => 1 Comment: The patch can still be used but the resulting executable does not work here: {{{ $ ffmpeg -f jack -i ffmpeg -y out.wav ffmpeg version N-58952-gf8d8d2e Copyright (c) 2000-2013 the FFmpeg developers built on Dec 10 2013 15:22:26 with Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn) configuration: libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 [jack @ 0x7fa5db820200] JACK client registered and activated (rate=44100Hz, buffer_size=512 frames) [jack @ 0x7fa5db820200] Input error: timed out when waiting for JACK process callback output Guessed Channel Layout for Input Stream #0.0 : stereo Input #0, jack, from 'ffmpeg': Duration: N/A, bitrate: 2822 kb/s Stream #0:0: Audio: pcm_f32le, 44100 Hz, stereo, flt, 2822 kb/s Output #0, wav, to 'out.wav': Metadata: ISFT : Lavf55.22.100 Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, stereo, s16, 1411 kb/s Stream mapping: Stream #0:0 -> #0:0 (pcm_f32le -> pcm_s16le) Press [q] to stop, [?] for help [jack @ 0x7fa5db820200] Input error: timed out when waiting for JACK process callback output ffmpeg: Input/output error size= 0kB time=00:00:00.00 bitrate=N/A video:0kB audio:0kB subtitle:0 global headers:0kB muxing overhead inf% Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used) }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 20:27:57 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 19:27:57 -0000 Subject: [FFmpeg-trac] #1872(FFserver:open): aac bitstream not in adts format and extradata missing In-Reply-To: <041.7a5a7c047966491fd1d47f8d61f64f5b@avcodec.org> References: <041.7a5a7c047966491fd1d47f8d61f64f5b@avcodec.org> Message-ID: <056.c069525d806cb46d27df932404ca9655@avcodec.org> #1872: aac bitstream not in adts format and extradata missing --------------------------------------+------------------------------------ Reporter: yogesh.tyagi | Owner: Type: defect | Status: open Priority: normal | Component: FFserver Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | --------------------------------------+------------------------------------ Changes (by saste): * status: new => open * reproduced: 0 => 1 Comment: Reproducible with configuration: {{{ Port 8090 BindAddress 0.0.0.0 MaxClients 100 MaxBandwidth 60000 CustomLog - File test.ffm ACL allow localhost Feed test.ffm AudioCodec aac Format mpegts NoVideo Format status }}} {{{ ffserver -f ffserver.test.conf ffmpeg -re -i INPUT -vn -c:a aac -strict experimental -flags:a -global_header -override_ffserver http://localhost:8090/test.ffm ffplay http://localhost:8090/test }}} If I change the AAC encoder (to libfdk_aac or libfaac) the problem is not reproducible. If -flags:a +global_header is specified it works fine. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Tue Dec 10 20:52:17 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 19:52:17 -0000 Subject: [FFmpeg-trac] #1872(FFserver:closed): aac bitstream not in adts format and extradata missing In-Reply-To: <041.7a5a7c047966491fd1d47f8d61f64f5b@avcodec.org> References: <041.7a5a7c047966491fd1d47f8d61f64f5b@avcodec.org> Message-ID: <056.4f1deb9df5e0177ca807edda848290c1@avcodec.org> #1872: aac bitstream not in adts format and extradata missing --------------------------------------+------------------------------------ Reporter: yogesh.tyagi | Owner: Type: defect | Status: closed Priority: normal | Component: FFserver Version: git-master | Resolution: invalid Keywords: aac | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 1 | --------------------------------------+------------------------------------ Changes (by saste): * analyzed: 0 => 1 * keywords: => aac * status: open => closed * resolution: => invalid Comment: The issue is not directly related to ffserver. The native AAC encoder will output to raw AAC format, which is not expected by the mpegts muxer. Using the switch -flags +gloabal_header will force the encoder output to ADTS AAC format. Closing as the issue seems due to a configuration error, please reopen if you think it is not. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 00:37:38 2013 From: trac at avcodec.org (FFmpeg) Date: Tue, 10 Dec 2013 23:37:38 -0000 Subject: [FFmpeg-trac] #2999(avcodec:closed): FFmpeg crashes on decoding H.264 MP4 file In-Reply-To: <038.93f367041852afab54676d093620f500@avcodec.org> References: <038.93f367041852afab54676d093620f500@avcodec.org> Message-ID: <053.6f7bd3e7ac500e47b1ee85f3cf43e06e@avcodec.org> #2999: FFmpeg crashes on decoding H.264 MP4 file -------------------------------------+------------------------------------- Reporter: mbradshaw | Owner: Type: defect | Status: closed Priority: important | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 osx | Blocked By: crash SIGSEGV | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: h264 crash SIGSEGV => h264 osx crash SIGSEGV -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 01:26:56 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 00:26:56 -0000 Subject: [FFmpeg-trac] #3112(undetermined:new): vcodec copy produces broken AVCHD files In-Reply-To: <042.cc9de9fda8bea4605e0ecf1c4f0ff413@avcodec.org> References: <042.cc9de9fda8bea4605e0ecf1c4f0ff413@avcodec.org> Message-ID: <057.235c2cd2f5a347b0789c6accf16c503a@avcodec.org> #3112: vcodec copy produces broken AVCHD files -------------------------------------+------------------------------------- Reporter: | Owner: spookybathtub | Status: new Type: defect | Component: Priority: normal | undetermined Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by spookybathtub): Update: In addition to the problems I listed before, these files also "crash" DaVinci Resolve 10.0.2. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 01:28:34 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 00:28:34 -0000 Subject: [FFmpeg-trac] #3217(FFmpeg:new): Audio filter produce broken output when used with '-map' Message-ID: <034.e42b288c249f19d47c296e8c739d84b3@avcodec.org> #3217: Audio filter produce broken output when used with '-map' --------------------------------+-------------------------------------- Reporter: Selur | Type: defect Status: new | Priority: normal Component: FFmpeg | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | --------------------------------+-------------------------------------- Trying to fix a positive delay in an ac3 stream I stumbled over the problem, that as soon as I use '-map 0:1' (to make sure the correct audio stream is used) the output is broken. call 1 (broken output): {{{ ffmpeg -y -threads 8 -analyzeduration 100M -probesize 100M -i "H:\Output\cut.m2ts" -map 0:1 -vn -filter_complex "aevalsrc=0:0:0:0:0:0::d=0.138:sample_rate=48000[silence];[silence][0:a]concat=n=2:v=0:a=1[out]" -map [out] -c:a ac3 -ab 384000 -map_metadata -1 "H:\Output\broken.ac3" }}} output 1: {{{ ffmpeg version N-58961-g3af9d82 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 10 2013 22:26:27 with gcc 4.8.2 (rev0, Built by MinGW-W64 project) configuration: --arch=x86_64 --prefix=/local64 --extra- cflags='-DPTW32_STATIC_LIB -DLIBTWOLAME_STATIC' --extra-libs='-lxml2 -lz -liconv -lws2_32 -lstdc++ -lpng -lm -lpthread -lwsock32' --disable-debug --enable-gpl --enable-version3 --enable-postproc --enable-w32threads --enable-runtime-cpudetect --enable-memalign-hack --disable-shared --enable-static --enable-avfilter --enable-bzlib --enable-zlib --enable- librtmp --enable-gnutls --enable-avisynth --enable-frei0r --enable- filter=frei0r --enable-libbluray --enable-libcaca --enable-libopenjpeg --enable-fontconfig --enable-libfreetype --enable-libass --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable- libschroedinger --enable-libsoxr --enable-libtwolame --enable-libutvideo --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libvo- aacenc --enable-libopus --enable-libvidstab --enable-libvpx --enable- libxavs --enable-libx264 --enable-libxvid --enable-libzvbi libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [h264 @ 000000000075cd80] SEI type 1 size 56 truncated at 53 [h264 @ 000000000075cd80] mmco: unref short failure Last message repeated 1 times [h264 @ 000000000075cd80] number of reference frames (0+4) exceeds max (3; probably corrupt input), discarding one [h264 @ 000000000075cd80] SEI type 1 size 56 truncated at 53 Last message repeated 38 times Input #0, mpegts, from 'H:\Output\cut.m2ts': Duration: 00:00:30.11, start: 4292.050000, bitrate: 7719 kb/s Program 1 Stream #0:0[0x1011]: Video: h264 (High) (HDMV / 0x564D4448), yuv420p(tv, bt709), 1920x1080 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x1100]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 384 kb/s [Parsed_aevalsrc_0 @ 0000000006bc05e0] This syntax is deprecated. Use '|' to separate the list items. Output #0, ac3, to 'H:\Output\broken.ac3': Metadata: encoder : Lavf55.22.100 Stream #0:0: Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s Stream #0:1: Audio: ac3, 48000 Hz, 5.1, fltp, 384 kb/s Stream mapping: Stream #0:1 (ac3) -> concat:in1:a0 (graph 0) Stream #0:1 -> #0:0 (ac3 -> ac3) concat (graph 0) -> Stream #0:1 (ac3) Press [q] to stop, [?] for help size= 2828kB time=00:00:30.23 bitrate= 766.1kbits/s video:0kB audio:2828kB subtitle:0 global headers:0kB muxing overhead 0.000000% }}} call 2 (working output): {{{ ffmpeg -y -threads 8 -analyzeduration 100M -probesize 100M -i "H:\Output\cut.m2ts" -vn -filter_complex "aevalsrc=0:0:0:0:0:0::d=0.138:sample_rate=48000[silence];[silence][0:a]concat=n=2:v=0:a=1[out]" -map [out] -c:a ac3 -ab 384000 -map_metadata -1 "H:\Output\working.ac3" }}} output 2: {{{ ffmpeg version N-58961-g3af9d82 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 10 2013 22:26:27 with gcc 4.8.2 (rev0, Built by MinGW-W64 project) configuration: --arch=x86_64 --prefix=/local64 --extra- cflags='-DPTW32_STATIC_LIB -DLIBTWOLAME_STATIC' --extra-libs='-lxml2 -lz -liconv -lws2_32 -lstdc++ -lpng -lm -lpthread -lwsock32' --disable-debug --enable-gpl --enable-version3 --enable-postproc --enable-w32threads --enable-runtime-cpudetect --enable-memalign-hack --disable-shared --enable-static --enable-avfilter --enable-bzlib --enable-zlib --enable- librtmp --enable-gnutls --enable-avisynth --enable-frei0r --enable- filter=frei0r --enable-libbluray --enable-libcaca --enable-libopenjpeg --enable-fontconfig --enable-libfreetype --enable-libass --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable- libschroedinger --enable-libsoxr --enable-libtwolame --enable-libutvideo --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libvo- aacenc --enable-libopus --enable-libvidstab --enable-libvpx --enable- libxavs --enable-libx264 --enable-libxvid --enable-libzvbi libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [h264 @ 000000000078cc40] SEI type 1 size 56 truncated at 53 [h264 @ 000000000078cc40] mmco: unref short failure Last message repeated 1 times [h264 @ 000000000078cc40] number of reference frames (0+4) exceeds max (3; probably corrupt input), discarding one [h264 @ 000000000078cc40] SEI type 1 size 56 truncated at 53 Last message repeated 38 times Input #0, mpegts, from 'H:\Output\cut.m2ts': Duration: 00:00:30.11, start: 4292.050000, bitrate: 7719 kb/s Program 1 Stream #0:0[0x1011]: Video: h264 (High) (HDMV / 0x564D4448), yuv420p(tv, bt709), 1920x1080 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x1100]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 384 kb/s [Parsed_aevalsrc_0 @ 000000000078d560] This syntax is deprecated. Use '|' to separate the list items. Output #0, ac3, to 'H:\Output\working.ac3': Metadata: encoder : Lavf55.22.100 Stream #0:0: Audio: ac3, 48000 Hz, 5.1, fltp, 384 kb/s Stream mapping: Stream #0:1 (ac3) -> concat:in1:a0 concat -> Stream #0:0 (ac3) Press [q] to stop, [?] for help size= 1418kB time=00:00:30.23 bitrate= 384.1kbits/s video:0kB audio:1418kB subtitle:0 global headers:0kB muxing overhead 0.000000% }} Problem: "call 1" produces a broken output, where as "call 2" works fine. The only difference between these calls is the "-map 0:1" part, which often is required to select the correct audio stream which should be processed. Uploaded the source and the two outputs to: http://www.embedupload.com/?d=8GIXBAL0NC -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 02:35:58 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 01:35:58 -0000 Subject: [FFmpeg-trac] #3124(avformat:new): Wrong PTS when seeking in Opus file In-Reply-To: <035.0e2e440a181676048c89991aa6cc5a44@avcodec.org> References: <035.0e2e440a181676048c89991aa6cc5a44@avcodec.org> Message-ID: <050.085c9546603963f82c9ec5f1c05abeca@avcodec.org> #3124: Wrong PTS when seeking in Opus file ------------------------------------+------------------------------------ Reporter: tuukka | Owner: Type: defect | Status: new Priority: minor | Component: avformat Version: git-master | Resolution: Keywords: Opus | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by dalecurtis): I believe we're seeing the same issue in Chrome. Specifically, PTS values are going backwards on granule boundaries. There also appears to be issues with the oggopus_private data not being reset after seek (so cur_dts increases forever), but I'm not sure that matters. I've attached a test case and test file which repro this issue. You can build it like so: clang ogg-seek.c -lavformat -lavcodec -lavutil -lopus -lpthread -lz ./a.out detodos.opus? You'll see some pts printouts followed by a seek, and then eventually the pts goes backwards in time: pts: 134088 -- dts: 134088 pts: 95688 -- dts: 95688 <------------ BACKWARDS! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 05:12:08 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 04:12:08 -0000 Subject: [FFmpeg-trac] #3124(avformat:closed): Wrong PTS when seeking in Opus file In-Reply-To: <035.0e2e440a181676048c89991aa6cc5a44@avcodec.org> References: <035.0e2e440a181676048c89991aa6cc5a44@avcodec.org> Message-ID: <050.9fb01577cece981c2135fcc5c0c03229@avcodec.org> #3124: Wrong PTS when seeking in Opus file ------------------------------------+------------------------------------ Reporter: tuukka | Owner: Type: defect | Status: closed Priority: minor | Component: avformat Version: git-master | Resolution: fixed Keywords: Opus, ogg | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by michael): * keywords: Opus => Opus, ogg * status: new => closed * resolution: => fixed * reproduced: 0 => 1 Comment: Fixed in 7f39352a1b661771cf471986059027acd8e0e31f -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 07:38:20 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 06:38:20 -0000 Subject: [FFmpeg-trac] #2953(undetermined:new): FFmpeg hangs while conversion video using libx264 In-Reply-To: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> References: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> Message-ID: <055.39048148816334e216992f55456a9963@avcodec.org> #2953: FFmpeg hangs while conversion video using libx264 -------------------------------------+------------------------------------- Reporter: gerrysingh7 | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: libx264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by gerrysingh7): Hi, Here is command: ffmpeg.exe -i "testsrc" -an -v debug -vcodec libx264 -vprofile baseline -b 480k -y -vf scale=480:270 "C:\output.mp4" Output: ffmpeg version N-53380-g0fb7fef Copyright (c) 2000-2013 the FFmpeg developers built on May 23 2013 14:19:35 with gcc 4.7.3 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-av isynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enab le-iconv --enable-libass --enable-libbluray --enable-libcaca --enable- libfreetyp e --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --ena ble-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-l ibopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libsp eex --enable-libtheora --enable-libtwolame --enable-libvo-aacenc --enable- libvo- amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable- libxavs -- enable-libxvid --enable-zlib libavutil 52. 33.100 / 52. 33.100 libavcodec 55. 11.100 / 55. 11.100 libavformat 55. 7.100 / 55. 7.100 libavdevice 55. 1.101 / 55. 1.101 libavfilter 3. 69.101 / 3. 69.101 libswscale 2. 3.100 / 2. 3.100 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 3.100 / 52. 3.100 Splitting the commandline. Reading option '-i' ... matched as input file with argument 'testsrc'. Reading option '-an' ... matched as option 'an' (disable audio) with argument '1 '. Reading option '-v' ... matched as option 'v' (set logging level) with argument 'debug'. Reading option '-vcodec' ... matched as option 'vcodec' (force video codec ('cop y' to copy stream)) with argument 'libx264'. Reading option '-vprofile' ... matched as AVOption 'vprofile' with argument 'bas eline'. Reading option '-b' ... matched as option 'b' (video bitrate (please use -b:v)) with argument '480k'. Reading option '-y' ... matched as option 'y' (overwrite output files) with argu ment '1'. Reading option '-vf' ... matched as option 'vf' (set video filters) with argumen t 'scale=480:270'. Reading option 'C:\output.mp4' ... matched as output file. Finished splitting the commandline. Parsing a group of options: global . Applying option v (set logging level) with argument debug. Applying option y (overwrite output files) with argument 1. Successfully parsed a group of options. Parsing a group of options: input file testsrc. Successfully parsed a group of options. Opening an input file: testsrc. Please help us on this issue. What else we can do to get his bug fixed. THanks Gerry -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 09:22:11 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 08:22:11 -0000 Subject: [FFmpeg-trac] #3218(avcodec:new): make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 Message-ID: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> #3218: make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 ---------------------------------+-------------------------------------- Reporter: mmstick | Type: defect Status: new | Priority: critical Component: avcodec | Version: git-master Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ---------------------------------+-------------------------------------- When compiling ffmpeg with 10-bit x264, make runs into a compile error with make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 09:26:12 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 08:26:12 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.a151d61288ccf4967819e19f95aefd71@avcodec.org> #3218: make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 -------------------------------------+------------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: | needs_more_info Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * priority: critical => normal * status: new => closed * resolution: => needs_more_info Comment: If you want to reopen this ticket, please confirm that you ran {{{make distclean}}}, provide your configure line, then run {{{make V=1}}} twice and provide the complete, uncut console output of the second run. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 09:27:06 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 08:27:06 -0000 Subject: [FFmpeg-trac] #2953(undetermined:new): FFmpeg hangs while conversion video using libx264 In-Reply-To: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> References: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> Message-ID: <055.79b3a8b29cac98c8dd80a7b088a98432@avcodec.org> #2953: FFmpeg hangs while conversion video using libx264 -------------------------------------+------------------------------------- Reporter: gerrysingh7 | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: libx264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:25 gerrysingh7]: > Here is command: > ffmpeg.exe -i "testsrc" {{{-f lavfi}}} is missing. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 09:43:52 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 08:43:52 -0000 Subject: [FFmpeg-trac] #3217(avformat:open): ac3 muxer does not force single stream (was: Audio filter produce broken output when used with '-map') In-Reply-To: <034.e42b288c249f19d47c296e8c739d84b3@avcodec.org> References: <034.e42b288c249f19d47c296e8c739d84b3@avcodec.org> Message-ID: <049.64226b5c741bdcd7764f136854478a3f@avcodec.org> #3217: ac3 muxer does not force single stream ------------------------------------+------------------------------------ Reporter: Selur | Owner: Type: defect | Status: open Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: ac3 | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: => ac3 * status: new => open * component: FFmpeg => avformat * reproduced: 0 => 1 Comment: Patch sent. {{{ $ ffmpeg -f s16le -i /dev/zero -map 0:0 -map 0:0 -t 1 out.ac3 ffmpeg version N-58970-g7f39352 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 11 2013 09:41:48 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 46.100 / 55. 46.100 libavformat 55. 22.101 / 55. 22.101 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Guessed Channel Layout for Input Stream #0.0 : mono Input #0, s16le, from '/dev/zero': Duration: N/A, bitrate: 705 kb/s Stream #0:0: Audio: pcm_s16le, 44100 Hz, mono, s16, 705 kb/s Output #0, ac3, to 'out.ac3': Metadata: encoder : Lavf55.22.101 Stream #0:0: Audio: ac3, 44100 Hz, mono, fltp, 96 kb/s Stream #0:1: Audio: ac3, 44100 Hz, mono, fltp, 96 kb/s Stream mapping: Stream #0:0 -> #0:0 (pcm_s16le -> ac3) Stream #0:0 -> #0:1 (pcm_s16le -> ac3) Press [q] to stop, [?] for help size= 24kB time=00:00:01.00 bitrate= 193.1kbits/s video:0kB audio:24kB subtitle:0 global headers:0kB muxing overhead 0.000000% }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 10:50:11 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 09:50:11 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.74c983d8910aaa14e67617ba7d77d364@avcodec.org> #3218: make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 -------------------------------------+------------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: | needs_more_info Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by mmstick): I compile ffmpeg/x264/fdk-aac by use of a script I made earlier this year. I use it quite often on a variety of different machines but today it is not working. http://pastebin.com/edit.php?i=TP6Rczur gcc -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat -Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,--as-needed -Wl ,--warn-common -Wl,-rpath- link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample -o ffmpeg_g cmdutils.o ffmpeg_opt.o ffmpeg_filter.o ffmpeg.o ffmpeg_vdpau.o -lavdevice -lavfilter -lavformat -lavcodec -lpostproc -lswresample -lswscale -lavutil -ldl -lXv -lX11 -lXext -lvdpau -lva -lX11 -ljack -lasound -lSDL -lx264 -lvpx -lvpx -lvorbisenc -lvorbis -logg -ltheoraenc -ltheoradec -logg -lopus -lmp3lame -lfaac -lass -lm -pthread -lbz2 -lz gcc -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat -Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,--as-needed -Wl ,--warn-common -Wl,-rpath- link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample -o ffplay_g cmdutils.o ffplay.o -lavdevice -lavfilter -lavformat -lavcodec -lpostproc -lswresample -lswscale -lavutil -ldl -lXv -lX11 -lXext -lvdpau -lva -lX11 -ljack -lasound -lSDL -lx264 -lvpx -lvpx -lvorbisenc -lvorbis -logg -ltheoraenc -ltheoradec -logg -lopus -lmp3lame -lfaac -lass -lm -pthread -lbz2 -lz -lSDL gcc -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat -Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,--as-needed -Wl ,--warn-common -Wl,-rpath- link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample -o ffprobe_g cmdutils.o ffprobe.o -lavdevice -lavfilter -lavformat -lavcodec -lpostproc -lswresample -lswscale -lavutil -ldl -lXv -lX11 -lXext -lvdpau -lva -lX11 -ljack -lasound -lSDL -lx264 -lvpx -lvpx -lvorbisenc -lvorbis -logg -ltheoraenc -ltheoradec -logg -lopus -lmp3lame -lfaac -lass -lm -pthread -lbz2 -lz gcc -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat -Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,--as-needed -Wl ,--warn-common -Wl,-rpath- link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample -o ffserver_g cmdutils.o ffserver.o -lavdevice -lavfilter -lavformat -lavcodec -lpostproc -lswresample -lswscale -lavutil -ldl -lXv -lX11 -lXext -lvdpau -lva -lX11 -ljack -lasound -lSDL -lx264 -lvpx -lvpx -lvorbisenc -lvorbis -logg -ltheoraenc -ltheoradec -logg -lopus -lmp3lame -lfaac -lass -lm -pthread -lbz2 -lz libavcodec/libavcodec.so: undefined reference to `x264_encoder_open_140' collect2: error: ld returned 1 exit status libavcodec/libavcodec.so: undefined reference to `x264_encoder_open_140' collect2: error: ld returned 1 exit status make: *** [ffplay_g] Error 1 make: *** [ffserver_g] Error 1 libavcodec/libavcodec.so: undefined reference to `x264_encoder_open_140' collect2: error: ld returned 1 exit status make: *** [ffprobe_g] Error 1 libavcodec/libavcodec.so: undefined reference to `x264_encoder_open_140' collect2: error: ld returned 1 exit status make: *** [ffmpeg_g] Error 1 make: Target `all' not remade because of errors. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 10:54:04 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 09:54:04 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.99e04e1036b4079a102a9df84d164bf8@avcodec.org> #3218: make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * resolution: needs_more_info => invalid Comment: Replying to [comment:2 mmstick]: > {{{ > libavcodec/libavcodec.so: undefined reference to `x264_encoder_open_140' > }}} You have conflicting versions of libx264 installed, fix that. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 10:55:05 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 09:55:05 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.afbcdb46132fa811da35343b70d9a151@avcodec.org> #3218: make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mmstick): No, I don't. See my script, it has the latest git of x264 installed. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:01:24 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:01:24 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.cba6ae42c6797dee9c91dec13aad7b90@avcodec.org> #3218: make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): Replying to [comment:4 mmstick]: > No, I don't. Please understand that this is a bug tracker (for bugs within the FFmpeg project, not scripts using or compiling FFmpeg), not a support forum. Please see http://ffmpeg.org/contact.html -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:02:41 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:02:41 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.552c816b8759275726fc3c0db8a53faf@avcodec.org> #3218: make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mmstick): Replying to [comment:5 cehoyos]: > Replying to [comment:4 mmstick]: > > No, I don't. > > Please understand that this is a bug tracker (for bugs within the FFmpeg project, not scripts using or compiling FFmpeg), not a support forum. Please see http://ffmpeg.org/contact.html Please understand that this is not an issue with my script. I already told you that I've been using and maintaining this script over the last year without any issues as I recompile almost weekly. This week, it does not compile. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:16:39 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:16:39 -0000 Subject: [FFmpeg-trac] #3218(avcodec:reopened): make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.6041610861e52a77a796f00fbd70fb44@avcodec.org> #3218: make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 ------------------------------------+------------------------------------ Reporter: mmstick | Owner: Type: defect | Status: reopened Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by mmstick): * status: closed => reopened * resolution: invalid => -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:26:03 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:26:03 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.d14f262d87c54d3475dd9d87cae38097@avcodec.org> #3218: make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by cehoyos): * status: reopened => closed * resolution: => invalid -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:26:59 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:26:59 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.0d4e6e2a2893d3f0211f8e6aec73d4bd@avcodec.org> #3218: make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mmstick): You're not being very intelligent about this matter. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:29:02 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:29:02 -0000 Subject: [FFmpeg-trac] #2953(undetermined:new): FFmpeg hangs while conversion video using libx264 In-Reply-To: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> References: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> Message-ID: <055.b9f1b1b227470ccf9a9709e6da16750a@avcodec.org> #2953: FFmpeg hangs while conversion video using libx264 -------------------------------------+------------------------------------- Reporter: gerrysingh7 | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: libx264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by gerrysingh7): HI, Please write the full command which we need to test. THanks Gerry -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:29:19 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:29:19 -0000 Subject: [FFmpeg-trac] #3218(avcodec:reopened): ffmpeg does not compile with the latest git of x264 (was: make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139) In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.ed00be09afed2af44adca3e97e7d5bc4@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+------------------------------------ Reporter: mmstick | Owner: Type: defect | Status: reopened Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by mmstick): * status: closed => reopened * resolution: invalid => -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:35:37 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:35:37 -0000 Subject: [FFmpeg-trac] #2953(undetermined:new): FFmpeg hangs while conversion video using libx264 In-Reply-To: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> References: <040.29f4ed1d31f70196cc13584a9c94cc14@avcodec.org> Message-ID: <055.7d9680010ca9a92e2343601890cf3404@avcodec.org> #2953: FFmpeg hangs while conversion video using libx264 -------------------------------------+------------------------------------- Reporter: gerrysingh7 | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: libx264 | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): {{{ $ ffmpeg -f lavfi -i testsrc out.mp4 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:36:36 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:36:36 -0000 Subject: [FFmpeg-trac] #3218(avcodec:reopened): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.4a3dc4f7b56c29dd6345afe2d7cb0775@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+------------------------------------ Reporter: mmstick | Owner: Type: defect | Status: reopened Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by ubitux): Replying to [comment:9 mmstick]: > You're not being very intelligent about this matter. You have a link failure, which is likely because you fail at achieving what you were asked in the very first comment. Please understand that we won't debug your script. Now, I'd suggest you stop re-opening the issue until you are able to provide the necessary information or you'll likely get banned on a whim. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:36:51 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:36:51 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.20e81b3973768c205d9fb993baf7aa2f@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by ubitux): * status: reopened => closed * resolution: => invalid -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:40:39 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:40:39 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.048f6136943fb506d033efa078470641@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mmstick): Replying to [comment:11 ubitux]: > Replying to [comment:9 mmstick]: > > You're not being very intelligent about this matter. > > You have a link failure, which is likely because you fail at achieving what you were asked in the very first comment. Please understand that we won't debug your script. > > Now, I'd suggest you stop re-opening the issue until you are able to provide the necessary information or you'll likely get banned on a whim. I repeat, there is NOTHING wrong with my script; now stop acting like dumbasses, it's not professional at all. You haven't asked for any information at all, but have done much to ignore the issue by shoving it off claiming it is a problem with my script. If you think there is a problem with my script, then prove me wrong; it's that simple. I have the latest git of x264 installed; ff you think I have the wrong version somehow, then why do I have libx264.so.140 in my lib directory? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:42:26 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:42:26 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.51fef4bdd3bd6b3025be79bf936df03c@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): Please post these questions on the user mailing list where I will support you. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:43:23 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:43:23 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.72841ca94678fa83ab3fe742210c26e2@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mmstick): Replying to [comment:14 cehoyos]: > Please post these questions on the user mailing list where I will support you. This is not a question; read the fine print. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:47:45 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:47:45 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.8ff2b01b2bcdced9256c9c5c89c3eb6c@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): Replying to [comment:15 mmstick]: > Replying to [comment:14 cehoyos]: > > Please post these questions on the user mailing list where I will support you. > This is not a question; read the fine print. I consider the following three sentences questions: > You haven't asked for any information at all > If you think there is a problem with my script, then prove me wrong > why do I have libx264.so.140 in my lib directory? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:50:33 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:50:33 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.80b2384da61b3371fd6992e9f56fa2d4@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mmstick): Replying to [comment:16 cehoyos]: > Replying to [comment:15 mmstick]: > > Replying to [comment:14 cehoyos]: > > > Please post these questions on the user mailing list where I will support you. > > This is not a question; read the fine print. > > I consider the following three sentences questions: > > You haven't asked for any information at all > > If you think there is a problem with my script, then prove me wrong > > why do I have libx264.so.140 in my lib directory? I consider all of your replies to be highly snobbishly sarcastic. You only read what you want to read and nothing else. You apparently seem to think I don't know what I'm doing and that there are problems with my script, but that is not the case; I'm no fool like you. If you think there is a problem on my end then prove it -- you aren't able to. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:52:36 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:52:36 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.41b90cf1cad3e7c9c96b27c405c029ba@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by saste): Replying to [comment:13 mmstick]: [...] > I repeat, there is NOTHING wrong with my script; now stop acting like dumbasses, it's not professional at all. You haven't asked for any information at all, but have done much to ignore the issue by shoving it off claiming it is a problem with my script. We don't provide assistance for your script, whatever that thing is. We fix build failures related to ffmpeg. So it is your problem to provide evidence that the ffmpeg build is broken. > If you think there is a problem with my script, then prove me wrong; it's that simple. No, you get it backwards. We don't care about your script, that's not our problem. Note that we are not claiming that your script is either wrong or correct. You need to prove that there is a problem with the ffmpeg build. We already gave directions about that, but you're ignoring them. > I have the latest git of x264 installed; If you think I have the wrong version somehow, then why do I have libx264.so.140 in my lib directory? If you want to continue being dumbasses, then I'll just switch to using avconv instead. Talking about professionalism, calling people names, that's clearly a good way to get someone to assist you. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:53:32 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:53:32 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.f0d3c0b8f8f90c4164d5964a90140751@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): If you want me to help you please post all your questions and support requests on the ffmpeg-user mailing list. If you don't want to post there, you will have to find the problems in your script yourself. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 11:58:23 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 10:58:23 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.d8b8627495f6534d7d4e5f0ec1882213@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mmstick): Replying to [comment:18 saste]: > Replying to [comment:13 mmstick]: > [...] > > I repeat, there is NOTHING wrong with my script; now stop acting like dumbasses, it's not professional at all. You haven't asked for any information at all, but have done much to ignore the issue by shoving it off claiming it is a problem with my script. > > We don't provide assistance for your script, whatever that thing is. We fix build failures related to ffmpeg. So it is your problem to provide evidence that the ffmpeg build is broken. > > > If you think there is a problem with my script, then prove me wrong; it's that simple. > > No, you get it backwards. > > We don't care about your script, that's not our problem. Note that we are not claiming that your script is either wrong or correct. You need to prove that there is a problem with the ffmpeg build. We already gave directions about that, but you're ignoring them. > > > I have the latest git of x264 installed; If you think I have the wrong version somehow, then why do I have libx264.so.140 in my lib directory? If you want to continue being dumbasses, then I'll just switch to using avconv instead. > > Talking about professionalism, calling people names, that's clearly a good way to get someone to assist you. You have not given any directions at all, and you still refuse to do so. The only thing you told me was that I have a differing x264 version when that is NOT the case. The script I showed you clearly shows that it ALWAYS downloads the latest git and compiles/installs it BEFORE it compiles and installs ffmpeg. It is NOT possible to have a differing version unless ffmpeg does not support the latest git of x264. Therefore, I have already proven that there is a problem with the ffmpeg build, but you refuse to accept it as a problem. You have no right to talk about professionalism when you have displayed such a poor attitude. You are deserving of any insults you have been given. Again, there are NO issues with my script or system. I run this script on 5 different machines weekly, and this week there is a build error. I have encoded over 300,000 minutes of video and audio over the last 2 years. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 12:04:10 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 11:04:10 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.1dd552875f7568c158790355cef8d01b@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): Replying to [comment:17 mmstick]: > I consider all of your replies to be highly snobbishly sarcastic. I am not so sure: My comment:1 was asking for missing information, remember that your original report was simply {{{make: * [libavcodec/x86/h264_qpel_10bit.o] Error 139}}} which is (unrelated to your later problem but) impossible to parse. My next comment:3 contained the (short) solution for your problem, one can of course argue if "wrong symlink" or "incomplete installation" or "header / library mismatch" is the same as "conflicting versions" but it should typically help. Of course my remaining comments were sarcastic! (Me being a snob would depend on your definition.) Claiming "my script cannot be wrong the problem must be within FFmpeg" imo asks loudly for sarcastic comments;-) -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 12:06:02 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 11:06:02 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.eb54cf4963a50f2dafd3ddb6ec3fa2bf@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by ubitux): Replying to [comment:20 mmstick]: > You have not given any directions at all, and you still refuse to do so. The only thing you told me was that I have a differing x264 version when that is NOT the case. The script I showed you clearly shows that it ALWAYS downloads the latest git and compiles/installs it BEFORE it compiles and installs ffmpeg. It is NOT possible to have a differing version unless ffmpeg does not support the latest git of x264. Therefore, I have already proven that there is a problem with the ffmpeg build, but you refuse to accept it as a problem. > Final linking seems not to be unable to find the x264, that's all we can tell from the information you provide. We can't reproduce such problem here (also, your script is not portable enough and doesn't isolate the problem). > Again, there are NO issues with my script or system. I run this script on 5 different machines weekly, and this week there is a build error. I have encoded over 300,000 minutes of video and audio over the last 2 years. Again, we didn't tell you there was a problem with your script, we just don't want to debug it. We are requesting information so we can reproduce the problem. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 12:09:41 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 11:09:41 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.8a9996580196f6a5593b6c493ca96865@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mmstick): Replying to [comment:22 ubitux]: > Replying to [comment:20 mmstick]: > > You have not given any directions at all, and you still refuse to do so. The only thing you told me was that I have a differing x264 version when that is NOT the case. The script I showed you clearly shows that it ALWAYS downloads the latest git and compiles/installs it BEFORE it compiles and installs ffmpeg. It is NOT possible to have a differing version unless ffmpeg does not support the latest git of x264. Therefore, I have already proven that there is a problem with the ffmpeg build, but you refuse to accept it as a problem. > > > > Final linking seems not to be unable to find the x264, that's all we can tell from the information you provide. We can't reproduce such problem here (also, your script is not portable enough and doesn't isolate the problem). > > > Again, there are NO issues with my script or system. I run this script on 5 different machines weekly, and this week there is a build error. I have encoded over 300,000 minutes of video and audio over the last 2 years. > > Again, we didn't tell you there was a problem with your script, we just don't want to debug it. We are requesting information so we can reproduce the problem. libx264.so and libx264.so.140 are in the same directory as the rest of the ffmpeg libraries ( /usr/local/lib ). If it is looking in the same directory then it will find it. My script doesn't have to portable because it is Ubuntu-specific but that does not matter. There is no other information that I can provide other than what I have already provided. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 13:10:09 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 12:10:09 -0000 Subject: [FFmpeg-trac] #3194(avcodec:new): valgrind leak on example package In-Reply-To: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> References: <036.697038128e9323db3ae7e3625aee2fd6@avcodec.org> Message-ID: <051.7a9a9243f4c791a5cc56bc73e97677e1@avcodec.org> #3194: valgrind leak on example package ------------------------------------+----------------------------------- Reporter: andreyv | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git-master | Resolution: Keywords: leak | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by andreyv): I can't see why those functions are leaking ==15887== by 0x84AFD9B: default_lockmgr_cb (utils.c:78) ==15887== by 0x84B867A: ff_lock_avcodec (utils.c:3240) ==15887== by 0x84B2500: avcodec_open2 (utils.c:1180) The leak is small 26bytes. However, if you open 1000 decoders or 10000 it converts to be not so small -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 13:13:10 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 12:13:10 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.79bd3ce152ef3197b5309fac6b5e77d6@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by compn): this is a ubuntu bug. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 13:14:02 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 12:14:02 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.0891cebcd7f562b14033ca77e05a55a9@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mmstick): Replying to [comment:24 compn]: > this is a ubuntu bug. That's not very specific -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 13:37:26 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 12:37:26 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.60f00198567d430b45a6097b890c567e@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by ubitux): Was your script ever really linking with the x264 in /usr/local/lib? It was likely linking to a system installed one, or maybe /usr/local/lib was in your ld configuration. Anyway, you can try --extra-ldflags=-L/usr/local/lib. Note for developers: we should probably depend on pkg-config for the x264 probing so the linker flags are automatically added. I don't know when x264 made available the .pc file though. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 13:48:27 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 12:48:27 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.dcfb344bba770882e1ce93d33940acb1@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): Replying to [comment:26 ubitux]: > Note for developers: we should probably depend on pkg-config for the x264 probing so the linker flags are automatically added. Would that still allow to link libx264 on a system without pkg-config? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 13:51:51 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 12:51:51 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.9be9fc589f96703ffa70cecbeeca6494@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by ubitux): Replying to [comment:27 cehoyos]: > Replying to [comment:26 ubitux]: > > Note for developers: we should probably depend on pkg-config for the x264 probing so the linker flags are automatically added. > > Would that still allow to link libx264 on a system without pkg-config? Can you name a relevant one? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 14:01:01 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 13:01:01 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.bac8221c1d21f8e8a8642f3dcbb80733@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): Replying to [comment:28 ubitux]: > Replying to [comment:27 cehoyos]: > > Replying to [comment:26 ubitux]: > > > Note for developers: we should probably depend on pkg-config for the x264 probing so the linker flags are automatically added. > > > > Would that still allow to link libx264 on a system without pkg-config? > > Can you name a relevant one? (OS X?) What I meant was: If I build a libx264 library and move it (and the header) to a place of my choice, will I still be able to build FFmpeg using that libx264? If not, this sounds like a very bad idea. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 14:14:17 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 13:14:17 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.abd67de6c0e8a993ff83b5f0e961f5f5@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by Cigaes): Replying to [comment:29 cehoyos]: > What I meant was: If I build a libx264 library and move it (and the header) to a place of my choice, will I still be able to build FFmpeg using that libx264? If not, this sounds like a very bad idea. That is true for a lot of libraries, and not only the ones using pkg- config. The correct way of building a library is to specify its final location in its configuraiton phase. Note that editing a {{{.pc}}} file to set the correct path is easy, it is done with a simple text editor. Try editing libx11.so to change the path to the compose tables. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 14:16:48 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 13:16:48 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.cdbcd325e8f36258d5bda3df116b466a@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by ubitux): Replying to [comment:29 cehoyos]: > Replying to [comment:28 ubitux]: > > Replying to [comment:27 cehoyos]: > > > Replying to [comment:26 ubitux]: > > > > Note for developers: we should probably depend on pkg-config for the x264 probing so the linker flags are automatically added. > > > > > > Would that still allow to link libx264 on a system without pkg- config? > > > > Can you name a relevant one? > > (OS X?) Really? > What I meant was: If I build a libx264 library and move it (and the header) to a place of my choice, will I still be able to build FFmpeg using that libx264? If not, this sounds like a very bad idea. I would say yes, probably with {{{--enable-libx264 --extra- cflags=-I/weirdplace/include --extra-ldflags="-L/weirdplace/include -lx264"}}}, and "only" {{{--extra-ldflags=-lx264}}} if it's in a standard place. Though, I'm not sure how {{{check_pkg_config()}}} behaves when {{{pkg-config}}} is not available though. Maybe it aborts somewhere. If so, we could probably be more tolerant on that regard (by assuming the library is present). By the way, x264 has a .pc since v40 (and we require >= 118). -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 14:19:32 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 13:19:32 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.35552cc5333064afe29d798ee1769eaf@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by compn): Replying to [comment:25 mmstick]: > Replying to [comment:24 compn]: > > this is a ubuntu bug. > That's not very specific after i see the results of 'cd / && sudo find x264' , i will be more specific. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 14:24:24 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 13:24:24 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.a7db0352c036ba15b7383dc920000b6f@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by cehoyos): Replying to [comment:31 ubitux]: > > > > Would that still allow to link libx264 on a system without pkg- config? > > > > > > Can you name a relevant one? > > > > (OS X?) > > Really? I try very hard not to use pkg-config so I may be wrong but configure always prints funny warnings for me when I test on OS X. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 14:31:44 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 13:31:44 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.dd8305fe8654bb08226a5a1091a6d641@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mmstick): Replying to [comment:32 compn]: > Replying to [comment:25 mmstick]: > > Replying to [comment:24 compn]: > > > this is a ubuntu bug. > > That's not very specific > > after i see the results of 'cd / && sudo find x264' , i will be more specific. You won't find anything like that. If you are searching for where I have x264 installed, it's /usr/local/lib. I've never installed x264 from Ubuntu repositories before; I always compile it myself. ldconfig detects libx264.so just fine. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 14:33:53 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 13:33:53 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.fdad96959243d4cf54e1587409f86f53@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by compn): does libav work ? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 14:40:14 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 13:40:14 -0000 Subject: [FFmpeg-trac] #3217(avformat:closed): ac3 muxer does not force single stream In-Reply-To: <034.e42b288c249f19d47c296e8c739d84b3@avcodec.org> References: <034.e42b288c249f19d47c296e8c739d84b3@avcodec.org> Message-ID: <049.26b19227d69d4f22cfb25030cfaf17d2@avcodec.org> #3217: ac3 muxer does not force single stream ------------------------------------+------------------------------------ Reporter: Selur | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: ac3 | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * status: open => closed * resolution: => fixed Comment: Should be fixed in 945a440d - thank you for the report! -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 14:45:45 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 13:45:45 -0000 Subject: [FFmpeg-trac] #3217(avformat:closed): ac3 muxer does not force single stream In-Reply-To: <034.e42b288c249f19d47c296e8c739d84b3@avcodec.org> References: <034.e42b288c249f19d47c296e8c739d84b3@avcodec.org> Message-ID: <049.3eb2bbd9248a2b35826a21a1346134bd@avcodec.org> #3217: ac3 muxer does not force single stream ------------------------------------+------------------------------------ Reporter: Selur | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: ac3 | Blocked By: Blocking: | Reproduced by developer: 1 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Comment (by Selur): No problem and thanks for the fast response. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 15:33:00 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 14:33:00 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.bf7e7111327c30b7792f9c4473837cea@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: troll | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Changes (by saste): * keywords: => troll -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 15:43:50 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 14:43:50 -0000 Subject: [FFmpeg-trac] #3160(avcodec:new): ac3 silently chooses 5.1(side) channel layout In-Reply-To: <035.fdc15498fc5776daee1cecb4d5c0dc12@avcodec.org> References: <035.fdc15498fc5776daee1cecb4d5c0dc12@avcodec.org> Message-ID: <050.bd00c29636999df87f3474611365d034@avcodec.org> #3160: ac3 silently chooses 5.1(side) channel layout ------------------------------------+----------------------------------- Reporter: llogan | Owner: Type: defect | Status: new Priority: minor | Component: avcodec Version: git-master | Resolution: Keywords: ac3 | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by Selur): When using: {{{ ffmpeg -y -threads 8 -analyzeduration 100M -probesize 100M -i "h:\Outp ut\cut.m2ts" -map 0:1 -vn -filter_complex "aevalsrc=0:0:0:0:0:0::d=0.138:sample_ rate=48000[silence];[silence][0:a]concat=n=2:v=0:a=1[out]" -map [out] -c:a ac3 -ab 384000 -map_metadata -1 "H:\Output\iId_3_aid_4352_15_30_47_8910_01.ac3" }}} I get: {{{ ffmpeg version N-58971-g945a440 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 11 2013 15:17:28 with gcc 4.8.2 (rev0, Built by MinGW-W64 project ) configuration: --arch=x86_64 --prefix=/local64 --extra- cflags='-DPTW32_STATIC_LIB -DLIBTWOLAME_STATIC' --extra-libs='-lxml2 -lz -liconv -lws2_32 -lstdc++ -lpng -lm -lpthread -lwsock32' --disable-debug --enable-gpl--enable-version3 --enable-postproc --enable-w32threads --enable-runtime-cpudetect --enable-memalign-hack --disable-shared --enable-static --enable-avfilter --enable-bzlib --enable-zlib --enable- librtmp --enable-gnutls --enable-avisynth --enable-frei0r --enable- filter=frei0r --enable-libbluray --enable-libcaca --enable-libopenjpeg --enable-fontconfig --enable-libfreetype --enable-libass --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable- libschroedinger --enable-libsoxr --enable-libtwolame --enable-libutvideo --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libvo- aacenc --enable-libopus --enable-libvidstab --enable-libvpx --enable- libxavs --enable-libx264 --enable-libxvid --enable-libzvbi libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [h264 @ 000000000043f340] SEI type 1 size 56 truncated at 53 [h264 @ 000000000043f340] mmco: unref short failure Last message repeated 1 times [h264 @ 000000000043f340] number of reference frames (0+4) exceeds max (3; probably corrupt input), discarding one [h264 @ 000000000043f340] SEI type 1 size 56 truncated at 53 Last message repeated 38 times Input #0, mpegts, from 'h:\Output\cut.m2ts': Duration: 00:00:30.11, start: 4292.050000, bitrate: 7719 kb/s Program 1 Stream #0:0[0x1011]: Video: h264 (High) (HDMV / 0x564D4448), yuv420p(tv, bt709), 1920x1080 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #0:1[0x1100]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 384 kb/s [Parsed_aevalsrc_0 @ 000000000043d7a0] This syntax is deprecated. Use '|' to separate the list items. [ac3 @ 00000000070e41e0] ac3 files have exactly one stream Output #0, ac3, to 'H:\Output\iId_3_aid_4352_15_30_47_8910_01.ac3': Metadata: encoder : Lavf55.22.100 Stream #0:0: Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s Stream #0:1: Audio: ac3, 48000 Hz, 5.1, fltp, 384 kb/s Stream mapping: Stream #0:1 (ac3) -> concat:in1:a0 (graph 0) Stream #0:1 -> #0:0 (ac3 -> ac3) concat (graph 0) -> Stream #0:1 (ac3) Could not write header for output file #0 (incorrect codec parameters ?): Error number -22 occurred }} The problem for me seem so be the difference between 5.1 and 5.1(side), which is why I posted this here. -> is there a way to tell ffmpeg which to use "5.1" or "5.1(side)" ? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 15:52:11 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 14:52:11 -0000 Subject: [FFmpeg-trac] #3160(avcodec:new): ac3 silently chooses 5.1(side) channel layout In-Reply-To: <035.fdc15498fc5776daee1cecb4d5c0dc12@avcodec.org> References: <035.fdc15498fc5776daee1cecb4d5c0dc12@avcodec.org> Message-ID: <050.7b7c85b93bfa8f131fcebd4fd68a34c3@avcodec.org> #3160: ac3 silently chooses 5.1(side) channel layout ------------------------------------+----------------------------------- Reporter: llogan | Owner: Type: defect | Status: new Priority: minor | Component: avcodec Version: git-master | Resolution: Keywords: ac3 | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by Cigaes): Replying to [comment:3 Selur]: > {{{ > Could not write header for output file #0 (incorrect codec parameters ?): Error number -22 occurred > }}} This is certainly unrelated to your problem, but this line, the "error number -22", shows that something is seriously rotten in your ffmpeg build. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 16:59:58 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 15:59:58 -0000 Subject: [FFmpeg-trac] #3219(avcodec:new): Frame ref count behaviour change causing a memleak Message-ID: <035.aea5c625ccf4cfc08737b73551a11c40@avcodec.org> #3219: Frame ref count behaviour change causing a memleak -------------------------------------+------------------------------------- Reporter: ubitux | Owner: Type: defect | Status: new Priority: normal | Component: avcodec Version: git- | Keywords: regression master | examples Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- Since 7a901eb33 / 37a749012 the demuxing_decoding example is leaking with the default method (old API): {{{ ? ./ffmpeg -f lavfi -i testsrc -t 5 -y test.mpg ffmpeg version N-58970-g7f39352 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 11 2013 16:50:39 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-libx264 --enable-libmp3lame --enable-x11grab --enable-libvorbis --samples=/home/ux/fate-samples --enable-libvpx --cpu=native --cc='ccache cc' --disable-doc libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.100 / 55. 45.100 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, lavfi, from 'testsrc': Duration: N/A, start: 0.000000, bitrate: N/A Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc [mpeg @ 0x2f61c20] VBV buffer size not set, muxing may fail Output #0, mpeg, to 'test.mpg': Metadata: encoder : Lavf55.22.100 Stream #0:0: Video: mpeg1video, yuv420p, 320x240 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s, 90k tbn, 25 tbc Stream mapping: Stream #0:0 -> #0:0 (rawvideo -> mpeg1video) Press [q] to stop, [?] for help frame= 125 fps=0.0 q=2.4 Lsize= 216kB time=00:00:04.96 bitrate= 356.7kbits/s video:212kB audio:0kB subtitle:0 global headers:0kB muxing overhead 1.748527% }}} {{{ ? (cd doc/examples && PKG_CONFIG_PATH=pc-uninstalled make clean && PKG_CONFIG_PATH=pc-uninstalled make demuxing_decoding && valgrind --leak- check=full ./demuxing_decoding -refcount=old ../../test.mpg /dev/null /dev/null > /dev/null) rm -f test*.pgm test.h264 test.mp2 test.sw test.mpg rm -f decoding_encoding demuxing_decoding filtering_video filtering_audio metadata muxing resampling_audio scaling_video transcode_aac decoding_encoding.o demuxing_decoding.o filtering_video.o filtering_audio.o metadata.o muxing.o resampling_audio.o scaling_video.o transcode_aac.o cc -Ipc-uninstalled/../../.. -Wall -g -c -o demuxing_decoding.o demuxing_decoding.c demuxing_decoding.c: In function ?main?: demuxing_decoding.c:300:9: warning: ?avcodec_alloc_frame? is deprecated (declared at pc-uninstalled/../../../libavcodec/avcodec.h:3384) [-Wdeprecated-declarations] frame = avcodec_alloc_frame(); ^ cc demuxing_decoding.o -Lpc-uninstalled/../../../libavdevice -Lpc- uninstalled/../../../libavfilter -Lpc-uninstalled/../../../libpostproc -Lpc-uninstalled/../../../libavformat -Lpc-uninstalled/../../../libavcodec -Lpc-uninstalled/../../../libswresample -Lpc- uninstalled/../../../libswscale -Lpc-uninstalled/../../../libavutil -Wl,-rpath,pc-uninstalled/../../../libavdevice -lavdevice -ldl -lXv -lX11 -lXext -lvdpau -lva -lXfixes -lXext -lX11 -ljack -lasound -lSDL -lpthread -lx264 -lvpx -lvorbisenc -lvorbis -logg -lmp3lame -lm -pthread -lbz2 -lz -Wl,-rpath,pc-uninstalled/../../../libavfilter -lavfilter -ldl -lXv -lX11 -lXext -lvdpau -lva -lXfixes -lXext -lX11 -ljack -lasound -lSDL -lpthread -lx264 -lvpx -lvorbisenc -lvorbis -logg -lmp3lame -lm -pthread -lbz2 -lz -Wl,-rpath,pc-uninstalled/../../../libpostproc -lpostproc -Wl,-rpath,pc- uninstalled/../../../libavformat -lavformat -ldl -lXv -lX11 -lXext -lvdpau -lva -lXfixes -lXext -lX11 -ljack -lasound -lSDL -lpthread -lx264 -lvpx -lvorbisenc -lvorbis -logg -lmp3lame -lm -pthread -lbz2 -lz -Wl,-rpath,pc- uninstalled/../../../libavcodec -lavcodec -ldl -lXv -lX11 -lXext -lvdpau -lva -lXfixes -lXext -lX11 -ljack -lasound -lSDL -lpthread -lx264 -lvpx -lvorbisenc -lvorbis -logg -lmp3lame -lm -pthread -lbz2 -lz -Wl,-rpath,pc- uninstalled/../../../libswresample -lswresample -lm -Wl,-rpath,pc- uninstalled/../../../libswscale -lswscale -lm -Wl,-rpath,pc- uninstalled/../../../libavutil -lavutil -lm -o demuxing_decoding ==31771== Memcheck, a memory error detector ==31771== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al. ==31771== Using Valgrind-3.9.0 and LibVEX; rerun with -h for copyright info ==31771== Command: ./demuxing_decoding -refcount=old ../../test.mpg /dev/null /dev/null ==31771== Could not find audio stream in input file '../../test.mpg' Input #0, mpeg, from '../../test.mpg': Duration: 00:00:04.92, start: 0.540000, bitrate: 359 kb/s Stream #0:0[0x1e0]: Video: mpeg1video, yuv420p(tv), 320x240 [SAR 1:1 DAR 4:3], 104857 kb/s, 25 fps, 25 tbr, 90k tbn, 25 tbc ==31771== ==31771== HEAP SUMMARY: ==31771== in use at exit: 60,368 bytes in 748 blocks ==31771== total heap usage: 7,916 allocs, 7,168 frees, 3,161,169 bytes allocated ==31771== ==31771== 64 (8 direct, 56 indirect) bytes in 1 blocks are definitely lost in loss record 4 of 12 ==31771== at 0x4C27730: malloc (in /usr/lib/valgrind /vgpreload_memcheck-amd64-linux.so) ==31771== by 0x4C29B0F: realloc (in /usr/lib/valgrind /vgpreload_memcheck-amd64-linux.so) ==31771== by 0xA6EA45: av_frame_copy_props (frame.c:560) ==31771== by 0x89CB89: unrefcount_frame.isra.3 (utils.c:2043) ==31771== by 0x8A02B2: avcodec_decode_video2 (utils.c:2144) ==31771== by 0x44AC97: decode_packet (demuxing_decoding.c:77) ==31771== by 0x44B83B: main (demuxing_decoding.c:336) ==31771== ==31771== 7,936 (992 direct, 6,944 indirect) bytes in 124 blocks are definitely lost in loss record 10 of 12 ==31771== at 0x4C27730: malloc (in /usr/lib/valgrind /vgpreload_memcheck-amd64-linux.so) ==31771== by 0x4C29B0F: realloc (in /usr/lib/valgrind /vgpreload_memcheck-amd64-linux.so) ==31771== by 0xA6EA45: av_frame_copy_props (frame.c:560) ==31771== by 0x89CB89: unrefcount_frame.isra.3 (utils.c:2043) ==31771== by 0x8A02B2: avcodec_decode_video2 (utils.c:2144) ==31771== by 0x44AC97: decode_packet (demuxing_decoding.c:77) ==31771== by 0x44B7B0: main (demuxing_decoding.c:323) ==31771== ==31771== 52,328 (2,976 direct, 49,352 indirect) bytes in 124 blocks are definitely lost in loss record 12 of 12 ==31771== at 0x4C29D00: memalign (in /usr/lib/valgrind /vgpreload_memcheck-amd64-linux.so) ==31771== by 0x4C29E17: posix_memalign (in /usr/lib/valgrind /vgpreload_memcheck-amd64-linux.so) ==31771== by 0xA73E9F: av_mallocz (mem.c:94) ==31771== by 0xA6661D: av_buffer_ref (buffer.c:93) ==31771== by 0xA6EBE0: av_frame_copy_props (frame.c:509) ==31771== by 0x89CB89: unrefcount_frame.isra.3 (utils.c:2043) ==31771== by 0x8A02B2: avcodec_decode_video2 (utils.c:2144) ==31771== by 0x44AC97: decode_packet (demuxing_decoding.c:77) ==31771== by 0x44B7B0: main (demuxing_decoding.c:323) ==31771== ==31771== LEAK SUMMARY: ==31771== definitely lost: 3,976 bytes in 249 blocks ==31771== indirectly lost: 56,352 bytes in 498 blocks ==31771== possibly lost: 0 bytes in 0 blocks ==31771== still reachable: 40 bytes in 1 blocks ==31771== suppressed: 0 bytes in 0 blocks ==31771== Reachable blocks (those to which a pointer was found) are not shown. ==31771== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==31771== ==31771== For counts of detected and suppressed errors, rerun with: -v ==31771== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 2 from 2) }}} This is reproducible with {{{-refcount=new_norefcount}}} but not {{{-refcount=new_refcount}}}. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 17:52:43 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 16:52:43 -0000 Subject: [FFmpeg-trac] #3085(undetermined:reopened): Support for more than one AAC RDB per ADTS frame In-Reply-To: <040.dca3af2ede90bd60fe6b517b9383d692@avcodec.org> References: <040.dca3af2ede90bd60fe6b517b9383d692@avcodec.org> Message-ID: <055.743121dc43e32f502633cae2525fec88@avcodec.org> #3085: Support for more than one AAC RDB per ADTS frame -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: reopened Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by terran): Also seeing this issue. We don't see it with 0.11.1. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 18:27:21 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 17:27:21 -0000 Subject: [FFmpeg-trac] #3085(undetermined:reopened): Support for more than one AAC RDB per ADTS frame In-Reply-To: <040.dca3af2ede90bd60fe6b517b9383d692@avcodec.org> References: <040.dca3af2ede90bd60fe6b517b9383d692@avcodec.org> Message-ID: <055.407b20d6195b406ca3b56b14df8a93f9@avcodec.org> #3085: Support for more than one AAC RDB per ADTS frame -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: reopened Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:9 terran]: > Also seeing this issue. Please provide the sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Wed Dec 11 22:00:13 2013 From: trac at avcodec.org (FFmpeg) Date: Wed, 11 Dec 2013 21:00:13 -0000 Subject: [FFmpeg-trac] #3218(avcodec:closed): ffmpeg does not compile with the latest git of x264 In-Reply-To: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> References: <036.4c1a39b40e303cd7df548ccad6a16666@avcodec.org> Message-ID: <051.51b962d861fc5b17d4367317a15facda@avcodec.org> #3218: ffmpeg does not compile with the latest git of x264 ------------------------------------+----------------------------------- Reporter: mmstick | Owner: Type: defect | Status: closed Priority: normal | Component: avcodec Version: git-master | Resolution: invalid Keywords: troll | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+----------------------------------- Comment (by mmstick): Replying to [comment:35 compn]: > does libav work ? libav doesn't work either as it gets the same error. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 02:31:00 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 01:31:00 -0000 Subject: [FFmpeg-trac] #3197(avformat:open): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.be54aa7a397b0e13c76bde1f4048aefe@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: open Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): The assertion failure is a regression since 3a621c9d -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 02:35:22 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 01:35:22 -0000 Subject: [FFmpeg-trac] #3197(avformat:open): Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" In-Reply-To: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> References: <031.b0cb1aeae132dfc7b3a4f02825dc8407@avcodec.org> Message-ID: <046.f61ba4523a1d1c22f865d84b5725efed@avcodec.org> #3197: Assertion nus->keyframe_pts[k] > last_pts failed when using "-f segment" -------------------------------------+------------------------------------- Reporter: ob | Owner: Type: defect | Status: open Priority: important | Component: avformat Version: git-master | Resolution: Keywords: nut crash | Blocked By: abort regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:5 ob]: > {{{ > $ ~/git/ffmpeg/ffmpeg -i VTS_01_1.VOB -map 0:1 -codec copy -f segment output/output-1-%08d.nut > > ... > > [nut @ 0x9a05820] Negative pts not supported stream 0, pts -9223372036854775808 > av_interleaved_write_frame(): Invalid argument > }}} You might be able to fix this with {{{-fflags +genpts}}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 07:49:47 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 06:49:47 -0000 Subject: [FFmpeg-trac] #3220(avcodec:new): mpeg2 decoder crash Message-ID: <037.e9d857516e5bd880b2e7d65d168c4b1f@avcodec.org> #3220: mpeg2 decoder crash ----------------------------------+-------------------------------------- Reporter: kyh96403 | Type: defect Status: new | Priority: important Component: avcodec | Version: git-master Keywords: mpeg2 | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ----------------------------------+-------------------------------------- Lastest git version, decode "http://pan.baidu.com/s/1kXZkD" crash. detail desc... static void mpeg_decode_user_data(AVCodecContext *avctx, const uint8_t *p, int buf_size) ... ... ... if (S3D_video_format_type == 0x03 || S3D_video_format_type == 0x04 || S3D_video_format_type == 0x08 || S3D_video_format_type == 0x23) { Mpeg1Context *s1 = avctx->priv_data; MpegEncContext *s = &s1->mpeg_enc_ctx; AVStereo3D *stereo = av_stereo3d_create_side_data(&s->current_picture_ptr->f); s->current_picture_ptr can be NULL. So access NULL pointer error. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 08:31:19 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 07:31:19 -0000 Subject: [FFmpeg-trac] #3221(undetermined:new): best effort time stamp is wrong after av_seek_frame is called. Message-ID: <036.cbdfcfaa4b68e94c31b4e35449c7c7bd@avcodec.org> #3221: best effort time stamp is wrong after av_seek_frame is called. -------------------------------------+------------------------------------- Reporter: hxuanyu | Type: defect Status: new | Priority: normal Component: | Version: undetermined | unspecified Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- I built the latest ffmpeg libs and ran a test app to test av_seek_frame Basically what I did is 1. read packet + decode frame 2. av_seek_frame to a previous position 3. continue to read + decode but seems the best effort time stamps were wrong after seek was called. Below is part of the log to play av_divx_24_yuv420p_mp3_44100_2_1.avi rhbc73 pFormatCtx->start_time = 0 video stream index = 0 rhbc73 Packet [0] dts = 0, pts = -9223372036854775808, KEY =1 rhbc73 **************** NO complete frame rhbc73 Packet [1] dts = 1, pts = -9223372036854775808, KEY =1 rhbc73 **************** NO complete frame rhbc73 Packet [2] dts = 2, pts = -9223372036854775808, KEY =0 rhbc73 **************** NO complete frame rhbc73 Packet [3] dts = 3, pts = -9223372036854775808, KEY =1 rhbc73 **************** NO complete frame rhbc73 Packet [4] dts = 4, pts = -9223372036854775808, KEY =1 rhbc73 ======= got a complete frame, pkt_dts = 0, best effort time stamp = 0 rhbc73 Packet [5] dts = 5, pts = -9223372036854775808, KEY =0 rhbc73 ======= got a complete frame, pkt_dts = 1, best effort time stamp = 1 rhbc73 Packet [6] dts = 6, pts = -9223372036854775808, KEY =0 rhbc73 ======= got a complete frame, pkt_dts = 2, best effort time stamp = 2 rhbc73 Packet [7] dts = 7, pts = -9223372036854775808, KEY =0 rhbc73 ======= got a complete frame, pkt_dts = 3, best effort time stamp = 3 rhbc73 Packet [8] dts = 8, pts = -9223372036854775808, KEY =1 rhbc73 ======= got a complete frame, pkt_dts = 4, best effort time stamp = 4 rhbc73 Packet [9] dts = 9, pts = -9223372036854775808, KEY =0 rhbc73 ======= got a complete frame, pkt_dts = 5, best effort time stamp = 5 rhbc73 Packet [10] dts = 10, pts = -9223372036854775808, KEY =0 rhbc73 ======= got a complete frame, pkt_dts = 6, best effort time stamp = 6 rhbc73 now try to seek to packet where dts = 3 rhbc73 seek succeed, then continue to read rhbc73 Packet [11] dts = 3, pts = -9223372036854775808, KEY =1 rhbc73 ======= got a complete frame, pkt_dts = 7, best effort time stamp = 7 rhbc73 Packet [12] dts = 4, pts = -9223372036854775808, KEY =1 rhbc73 ======= got a complete frame, pkt_dts = 8, best effort time stamp = 8 rhbc73 Packet [13] dts = 5, pts = -9223372036854775808, KEY =0 rhbc73 ======= got a complete frame, pkt_dts = 9, best effort time stamp = 9 rhbc73 Packet [14] dts = 6, pts = -9223372036854775808, KEY =0 rhbc73 ======= got a complete frame, pkt_dts = 10, best effort time stamp = 10 rhbc73 Packet [15] dts = 7, pts = -9223372036854775808, KEY =0 rhbc73 ======= got a complete frame, pkt_dts = 3, best effort time stamp = 3 rhbc73 Packet [16] dts = 8, pts = -9223372036854775808, KEY =1 rhbc73 ======= got a complete frame, pkt_dts = 4, best effort time stamp = 4 rhbc73 Packet [17] dts = 9, pts = -9223372036854775808, KEY =0 rhbc73 ======= got a complete frame, pkt_dts = 5, best effort time stamp = 5 rhbc73 Packet [18] dts = 10, pts = -9223372036854775808, KEY =0 rhbc73 ======= got a complete frame, pkt_dts = 6, best effort time stamp = 6 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 08:37:03 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 07:37:03 -0000 Subject: [FFmpeg-trac] #3221(undetermined:new): best effort time stamp is wrong after av_seek_frame is called. In-Reply-To: <036.cbdfcfaa4b68e94c31b4e35449c7c7bd@avcodec.org> References: <036.cbdfcfaa4b68e94c31b4e35449c7c7bd@avcodec.org> Message-ID: <051.27442d20fbf886e58d7c64c729780fcb@avcodec.org> #3221: best effort time stamp is wrong after av_seek_frame is called. -------------------------------------+------------------------------------- Reporter: hxuanyu | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by hxuanyu): The file I tested with is here https://dl.dropboxusercontent.com/u/89678527/av_divx_24_yuv420p_mp3_44100_2_1.avi -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 10:01:08 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 09:01:08 -0000 Subject: [FFmpeg-trac] #3220(avcodec:open): mpeg2 decoder crash In-Reply-To: <037.e9d857516e5bd880b2e7d65d168c4b1f@avcodec.org> References: <037.e9d857516e5bd880b2e7d65d168c4b1f@avcodec.org> Message-ID: <052.d358ea9f81dfe8b3369a4c7b04630244@avcodec.org> #3220: mpeg2 decoder crash -------------------------------------+------------------------------------- Reporter: kyh96403 | Owner: Type: defect | Status: open Priority: important | Component: avcodec Version: git-master | Resolution: Keywords: mpeg2video | Blocked By: crash SIGSEGV regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: mpeg2 => mpeg2video crash SIGSEGV regression * status: new => open * reproduced: 0 => 1 Comment: Regression since 1dab49c3 / bacc2869 {{{ (gdb) r -i The\ program\ crashes_cut.ts Starting program: ffmpeg_g -i The\ program\ crashes_cut.ts [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib64/libthread_db.so.1". ffmpeg version N-59017-g551a679 Copyright (c) 2000-2013 the FFmpeg developers built on Dec 12 2013 09:50:32 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.101 / 55. 45.101 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Program received signal SIGSEGV, Segmentation fault. av_frame_new_side_data (frame=0x0, type=type at entry=AV_FRAME_DATA_STEREO3D, size=size at entry=8) at libavutil/frame.c:557 557 if (frame->nb_side_data > INT_MAX / sizeof(*frame->side_data) - 1) (gdb) bt #0 av_frame_new_side_data (frame=0x0, type=type at entry=AV_FRAME_DATA_STEREO3D, size=size at entry=8) at libavutil/frame.c:557 #1 0x0000000000cce683 in av_stereo3d_create_side_data (frame=) at libavutil/stereo3d.c:33 #2 0x0000000000906486 in mpeg_decode_user_data (buf_size=114828, p=, avctx=0x17d71a0) at libavcodec/mpeg12dec.c:2229 #3 decode_chunks (avctx=avctx at entry=0x17d71a0, picture=picture at entry=0x1809800, got_output=got_output at entry=0x7fffffffd1ec, buf=0x182d260 "", buf_size=115019) at libavcodec/mpeg12dec.c:2430 #4 0x00000000009067ab in mpeg_decode_frame (avctx=0x17d71a0, data=0x1809800, got_output=0x7fffffffd1ec, avpkt=) at libavcodec/mpeg12dec.c:2643 #5 0x0000000000a3a4d8 in avcodec_decode_video2 (avctx=0x17d71a0, picture=0x1809800, got_picture_ptr=got_picture_ptr at entry=0x7fffffffd1ec, avpkt=avpkt at entry=0x7fffffffd220) at libavcodec/utils.c:2107 #6 0x00000000005d62cd in try_decode_frame (s=s at entry=0x17d3100, st=st at entry=0x17d6ec0, avpkt=avpkt at entry=0x1809660, options=0x17d7ac0) at libavformat/utils.c:2508 #7 0x00000000005dec90 in avformat_find_stream_info (ic=0x17d3100, options=0x17d7ac0) at libavformat/utils.c:3048 #8 0x000000000046d4f2 in open_input_file (o=o at entry=0x7fffffffd6c0, filename=) at ffmpeg_opt.c:861 #9 0x000000000046b6a4 in open_files (inout=inout at entry=0xd3e9bf "input", open_file=open_file at entry=0x46d0b0 , l=, l=) at ffmpeg_opt.c:2583 #10 0x0000000000473139 in ffmpeg_parse_options (argc=argc at entry=3, argv=argv at entry=0x7fffffffdd78) at ffmpeg_opt.c:2620 #11 0x0000000000463ef8 in main (argc=3, argv=0x7fffffffdd78) at ffmpeg.c:3521 (gdb) disass $pc-27,$pc+32 Dump of assembler code from 0xcb61e0 to 0xcb621b: 0x0000000000cb61e0 : mov %rbx,-0x20(%rsp) 0x0000000000cb61e5 : mov %rbp,-0x18(%rsp) 0x0000000000cb61ea : mov %rdi,%rbx 0x0000000000cb61ed : mov %r12,-0x10(%rsp) 0x0000000000cb61f2 : mov %r13,-0x8(%rsp) 0x0000000000cb61f7 : sub $0x38,%rsp => 0x0000000000cb61fb : mov 0x228(%rdi),%eax 0x0000000000cb6201 : cmp $0xffffffe,%eax 0x0000000000cb6206 : ja 0xcb62b8 0x0000000000cb620c : mov %esi,%r13d 0x0000000000cb620f : lea 0x1(%rax),%esi 0x0000000000cb6212 : mov 0x220(%rdi),%rdi 0x0000000000cb6219 : mov %edx,%r12d End of assembler dump. (gdb) info register rax 0x5 5 rbx 0x0 0 rcx 0x17f59c0 25123264 rdx 0x8 8 rsi 0x2 2 rdi 0x0 0 rbp 0x17d71a0 0x17d71a0 rsp 0x7fffffffcec0 0x7fffffffcec0 r8 0x17f59c0 25123264 r9 0x1c08c 114828 r10 0x1 1 r11 0x7ffff5f7b360 140737320039264 r12 0x8 8 r13 0x1c08c 114828 r14 0x17f59c0 25123264 r15 0x18493ab 25465771 rip 0xcb61fb 0xcb61fb eflags 0x10206 [ PF IF RF ] cs 0x33 51 ss 0x2b 43 ds 0x0 0 es 0x0 0 fs 0x0 0 gs 0x0 0 }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 10:12:17 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 09:12:17 -0000 Subject: [FFmpeg-trac] #3085(undetermined:reopened): Support for more than one AAC RDB per ADTS frame In-Reply-To: <040.dca3af2ede90bd60fe6b517b9383d692@avcodec.org> References: <040.dca3af2ede90bd60fe6b517b9383d692@avcodec.org> Message-ID: <055.dcac1dd481cc03dd2e56070f791935c7@avcodec.org> #3085: Support for more than one AAC RDB per ADTS frame -------------------------------------+------------------------------------- Reporter: ramitbhalla | Owner: Type: enhancement | Status: reopened Priority: wish | Component: Version: git-master | undetermined Keywords: mpegts aac | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => mpegts aac * priority: normal => wish * version: unspecified => git-master Comment: What produced the original sample H264AAC.ts? -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 10:13:35 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 09:13:35 -0000 Subject: [FFmpeg-trac] #3112(undetermined:new): vcodec copy produces broken AVCHD files In-Reply-To: <042.cc9de9fda8bea4605e0ecf1c4f0ff413@avcodec.org> References: <042.cc9de9fda8bea4605e0ecf1c4f0ff413@avcodec.org> Message-ID: <057.2f6c1c12042419697f5bb376d77f09a3@avcodec.org> #3112: vcodec copy produces broken AVCHD files -------------------------------------+------------------------------------- Reporter: | Owner: spookybathtub | Status: new Type: defect | Component: Priority: normal | undetermined Version: git-master | Resolution: Keywords: mpegts h264 | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => mpegts h264 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 10:30:49 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 09:30:49 -0000 Subject: [FFmpeg-trac] #3215(undetermined:open): remuxed cvid gray8 have wrong colors In-Reply-To: <038.09e8ea990f4deade8be4da2ec0c9bc37@avcodec.org> References: <038.09e8ea990f4deade8be4da2ec0c9bc37@avcodec.org> Message-ID: <053.b498a0dcea98ff8e9d895ae9502d2126@avcodec.org> #3215: remuxed cvid gray8 have wrong colors -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: open Priority: normal | Component: Version: git-master | undetermined Keywords: mov | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 1 -------------------------------------+------------------------------------- Changes (by cehoyos): * keywords: => mov * status: new => open * version: unspecified => git-master * reproduced: 0 => 1 Comment: Removing the line "st->codec->bits_per_coded_sample = color_depth;" in libavformat/mov.c fixes the issue here. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 10:43:54 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 09:43:54 -0000 Subject: [FFmpeg-trac] #3132(undetermined:closed): ffmpeg Video Conversion In-Reply-To: <051.93d0f3b88148b5df16b3eb1bdb807ea5@avcodec.org> References: <051.93d0f3b88148b5df16b3eb1bdb807ea5@avcodec.org> Message-ID: <066.61eec467ea6289934c3df0a277fe2432@avcodec.org> #3132: ffmpeg Video Conversion -------------------------------------+------------------------------------- Reporter: | Owner: govind.durai@? | Status: closed Type: defect | Component: Priority: normal | undetermined Version: git-master | Resolution: Keywords: asf h264 | needs_more_info Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Changes (by cehoyos): * status: new => closed * resolution: => needs_more_info Comment: Please reopen this ticket if you can provide the input sample. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 11:35:41 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 10:35:41 -0000 Subject: [FFmpeg-trac] #3177(avcodec:closed): asm error on i686 In-Reply-To: <036.6091537d9f867d9511be2ba94cd66fea@avcodec.org> References: <036.6091537d9f867d9511be2ba94cd66fea@avcodec.org> Message-ID: <051.1e074d88192f1f4e3038ac77543245a5@avcodec.org> #3177: asm error on i686 -------------------------------------+------------------------------------- Reporter: andreas | Owner: Type: defect | Status: closed Priority: minor | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by ubitux): Replying to [comment:10 andreas]: > Thanks for the explanations and the fix! We backported it into our distribution. Using fate could be an option, but it is not clear whether downloading all the samples would be reasonable for a mainly source based distribution. Samples are optional with {{{make fate}}}. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 13:11:52 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 12:11:52 -0000 Subject: [FFmpeg-trac] #3142(FFserver:closed): FFserver ignores encoding params in stream context In-Reply-To: <039.09d7024b8463f67e35f5942ce675cb44@avcodec.org> References: <039.09d7024b8463f67e35f5942ce675cb44@avcodec.org> Message-ID: <054.c29b573b2f7c8e4b99c8839407cc216a@avcodec.org> #3142: FFserver ignores encoding params in stream context -------------------------------------+------------------------------------- Reporter: importinis | Owner: Type: defect | Status: closed Priority: important | Component: FFserver Version: unspecified | Resolution: Keywords: | needs_more_info Blocking: | Blocked By: Analyzed by developer: 1 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by importinis): Sorry for delay, please notice, that our ffmpeg versions different. ffserver.conf config: Port 5000 BindAddress 0.0.0.0 MaxHTTPConnections 100 MaxClients 100 MaxBandwidth 100000 File file.ffm FileMaxSize 10M Feed stream.ffm Format flv StartSendOnKey I run: ffmpeg -override_ffserver -i udp://233.239.0.3:1234 -flags:v +global_header -flags:a +global_header -c:v libx264 -b:v 1024k -s 640x480 -r 25 -c:a libfaac -ac 2 -ar 44100 -b:a 128k -f ffm http://localhost:5000/stream.ffm Then I run ffprobe: ffprobe http://localhost:5000/stream.flv -show_entries packet=codec_type,flags,pts -of compact -read_intervals "%+#10" -select_streams v ffprobe version N-58502-g738ebb4 Copyright (c) 2007-2013 the FFmpeg developers built on Dec 12 2013 10:24:32 with gcc 4.4.5 (Debian 4.4.5-8) configuration: --prefix=/usr/ffmpeg --enable-nonfree --enable-gpl --enable-runtime-cpudetect --disable-devices --enable-libmp3lame --enable- libfaac --enable-libx264 --disable-protocols --enable-protocol=http --enable-protocol=udp --enable-protocol=file --enable-protocol=pipe --enable-protocol=hls libavutil 52. 55.100 / 52. 55.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 21.102 / 55. 21.102 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, flv, from 'http://localhost:5000/stream.flv': Metadata: author : comment : copyright : title : encoder : Lavf55.21.102 Duration: 00:00:00.00, start: 0.000000, bitrate: N/A Stream #0:0: Video: h264 (High), yuv420p, 640x480 [SAR 1:1 DAR 4:3], 1024 kb/s, 25 tbr, 1k tbn, 50 tbc Stream #0:1: Audio: aac, 44100 Hz, stereo, fltp, 128 kb/s packet|codec_type=video|pts=64|flags=K packet|codec_type=video|pts=184|flags=K packet|codec_type=video|pts=144|flags=K packet|codec_type=video|pts=264|flags=K packet|codec_type=video|pts=224|flags=K packet|codec_type=video|pts=344|flags=K packet|codec_type=video|pts=304|flags=K packet|codec_type=video|pts=424|flags=K packet|codec_type=video|pts=384|flags=K packet|codec_type=video|pts=504|flags=K If I try to watch with vlc or web flash player - I get audio immediately, but clear video after 5-7sek. With older versions (for example: N-51689-g93e8fcb) no such problem. Thank you -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 13:13:34 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 12:13:34 -0000 Subject: [FFmpeg-trac] #3142(FFserver:reopened): FFserver ignores encoding params in stream context In-Reply-To: <039.09d7024b8463f67e35f5942ce675cb44@avcodec.org> References: <039.09d7024b8463f67e35f5942ce675cb44@avcodec.org> Message-ID: <054.22f34e9109d87b5a48b12161679fb68a@avcodec.org> #3142: FFserver ignores encoding params in stream context -------------------------------------+------------------------------------ Reporter: importinis | Owner: Type: defect | Status: reopened Priority: important | Component: FFserver Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Changes (by importinis): * status: closed => reopened * resolution: needs_more_info => -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 13:34:04 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 12:34:04 -0000 Subject: [FFmpeg-trac] #3142(FFserver:reopened): FFserver ignores encoding params in stream context In-Reply-To: <039.09d7024b8463f67e35f5942ce675cb44@avcodec.org> References: <039.09d7024b8463f67e35f5942ce675cb44@avcodec.org> Message-ID: <054.f9769beb6ac9e5aba216c4a8edf6bec6@avcodec.org> #3142: FFserver ignores encoding params in stream context -------------------------------------+------------------------------------ Reporter: importinis | Owner: Type: defect | Status: reopened Priority: important | Component: FFserver Version: unspecified | Resolution: Keywords: | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 1 | -------------------------------------+------------------------------------ Comment (by importinis): ffprobe from older ffserver(N-51689-g93e8fcb): ffprobe version N-58502-g738ebb4 Copyright (c) 2007-2013 the FFmpeg developers built on Dec 12 2013 10:24:32 with gcc 4.4.5 (Debian 4.4.5-8) configuration: --prefix=/usr/ffmpeg --enable-nonfree --enable-gpl --enable-runtime-cpudetect --disable-devices --enable-libmp3lame --enable- libfaac --enable-libx264 --disable-protocols --enable-protocol=http --enable-protocol=udp --enable-protocol=file --enable-protocol=pipe --enable-protocol=hls libavutil 52. 55.100 / 52. 55.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 21.102 / 55. 21.102 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, flv, from 'http://localhost:5001/stream.flv': Metadata: author : comment : copyright : title : encoder : Lavf55.1.100 Duration: 00:00:00.00, start: 0.000000, bitrate: N/A Stream #0:0: Video: h264 (High), yuv420p, 640x480 [SAR 1:1 DAR 4:3], 1024 kb/s, 25 tbr, 1k tbn, 50 tbc Stream #0:1: Audio: aac, 44100 Hz, stereo, fltp, 128 kb/s packet|codec_type=video|pts=0|flags=K packet|codec_type=video|pts=40|flags=_ packet|codec_type=video|pts=80|flags=_ packet|codec_type=video|pts=120|flags=_ packet|codec_type=video|pts=160|flags=_ packet|codec_type=video|pts=200|flags=_ packet|codec_type=video|pts=240|flags=_ packet|codec_type=video|pts=280|flags=_ packet|codec_type=video|pts=320|flags=_ packet|codec_type=video|pts=360|flags=_ -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 18:47:52 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 17:47:52 -0000 Subject: [FFmpeg-trac] #3222(avformat:new): RTSP (client): Fallback to TCP causes 454 Session Not Found Message-ID: <036.041ab651ed599465ddec294a966f5887@avcodec.org> #3222: RTSP (client): Fallback to TCP causes 454 Session Not Found -------------------------------------+------------------------------------- Reporter: GstBlub | Type: defect Status: new | Priority: normal Component: avformat | Version: 2.1.1 Keywords: rtsp | Blocked By: fallback tcp session | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Summary of the bug: The fallback mechanism to TCP when UDP times out seems to not work properly. I can't get this stream to work with ffmpeg, but it works fine with vlc and windows media player: rtsp://strm01.novotempo.org.br /radionovotempo-vivo I always get this error: method SETUP failed: 454 Session Not Found If I force ffmpeg to use TCP (using -rtsp_transport tcp), it works. How to reproduce: {{{ % ffmpeg -i rtsp://strm01.novotempo.org.br/radionovotempo-vivo -rtsp_transport tcp -acodec copy -vcodec copy test.file ffmpeg 2.1 (arm) ... [rtsp @ 0x59480] UDP timeout, retrying with TCP [rtsp @ 0x59480] method SETUP failed: 454 Session Not Found [rtsp @ 0x59480] Could not find codec parameters for stream 0 (Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, 2 channels, s16p, 256 kb/s): unspecified frame size Consider increasing the value for the 'analyzeduration' and 'probesize' options rtsp://strm01.novotempo.org.br/radionovotempo-vivo: could not find codec parameters }}} Forcing it to TCP however makes it work (disregard the decoding errors): {{{ % ffmpeg -rtsp_transport tcp -i rtsp://strm01.novotempo.org.br /radionovotempo-vivo -acodec copy -vcodec copy test.file ... [mp3 @ 0x5da80] Header missing Last message repeated 51 times [rtsp @ 0x59460] decoding for stream 0 failed [rtsp @ 0x59460] Could not find codec parameters for stream 0 (Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, 2 channels, s16p, 256 kb/s): unspecified frame size Consider increasing the value for the 'analyzeduration' and 'probesize' options rtsp://strm01.novotempo.org.br/radionovotempo-vivo: could not find codec parameters }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 19:04:15 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 18:04:15 -0000 Subject: [FFmpeg-trac] #2296(avformat:closed): mpegts metadata can't be set on segments when using HLS muxer In-Reply-To: <038.78abeb2936cbd29707ad7d3b4a30034a@avcodec.org> References: <038.78abeb2936cbd29707ad7d3b4a30034a@avcodec.org> Message-ID: <053.86e85134263a35862aaf39b58aba1e7a@avcodec.org> #2296: mpegts metadata can't be set on segments when using HLS muxer -------------------------------------+------------------------------------- Reporter: code-guru | Owner: Type: defect | Status: closed Priority: normal | Component: avformat Version: git-master | Resolution: fixed Keywords: metadata | Blocked By: hls segment | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Changes (by michael): * resolution: duplicate => fixed Comment: This was not a duplicate fixed in d780fdb904a4a3f555252fad6b898534c9af128b -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 19:29:27 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 18:29:27 -0000 Subject: [FFmpeg-trac] #3222(avformat:new): RTSP (client): Fallback to TCP causes 454 Session Not Found In-Reply-To: <036.041ab651ed599465ddec294a966f5887@avcodec.org> References: <036.041ab651ed599465ddec294a966f5887@avcodec.org> Message-ID: <051.c36f7f5b18dbf3b35b54c02f7377f53a@avcodec.org> #3222: RTSP (client): Fallback to TCP causes 454 Session Not Found -------------------------------------+------------------------------------- Reporter: GstBlub | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: 2.1.1 | Resolution: Keywords: rtsp | Blocked By: fallback tcp session | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Is this reproducible with current git head? To make this a valid ticket, please post the failing {{{ffmpeg -i}}} command together with the complete, uncut console output. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 19:50:52 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 18:50:52 -0000 Subject: [FFmpeg-trac] #3221(undetermined:new): best effort time stamp is wrong after av_seek_frame is called. In-Reply-To: <036.cbdfcfaa4b68e94c31b4e35449c7c7bd@avcodec.org> References: <036.cbdfcfaa4b68e94c31b4e35449c7c7bd@avcodec.org> Message-ID: <051.3e593367abb32b1a0d171920962900f9@avcodec.org> #3221: best effort time stamp is wrong after av_seek_frame is called. -------------------------------------+------------------------------------- Reporter: hxuanyu | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DonMoir): Call avcodec_flush_buffers on any open AVCodecContext before you call seek. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 22:55:58 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 21:55:58 -0000 Subject: [FFmpeg-trac] #3105(undetermined:new): hevc: crash with threads 1 and max_alloc (fuzzed file) In-Reply-To: <038.29daf2b63edefb559240ef64566580ca@avcodec.org> References: <038.29daf2b63edefb559240ef64566580ca@avcodec.org> Message-ID: <053.6bd17165e963fd3a86aa6dd632a9214e@avcodec.org> #3105: hevc: crash with threads 1 and max_alloc (fuzzed file) -------------------------------------+------------------------------------- Reporter: ami_stuff | Owner: Type: defect | Status: new Priority: important | Component: Version: unspecified | undetermined Keywords: hevc crash | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:4 cehoyos]: > Crashes here without max_alloc but my backtrace looks different. > Not reproducible with higher values for -threads, not reproducible with valgrind. > {{{ > (gdb) r -threads 1 -i fhevc2_2.ts -f null - >... > configuration: --enable-gpl >... > }}} This crash is not reproducible anymore since 7a901eb3 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 22:58:32 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 21:58:32 -0000 Subject: [FFmpeg-trac] #3222(avformat:new): RTSP (client): Fallback to TCP causes 454 Session Not Found In-Reply-To: <036.041ab651ed599465ddec294a966f5887@avcodec.org> References: <036.041ab651ed599465ddec294a966f5887@avcodec.org> Message-ID: <051.a2976b5eed3a5043e62b0a522c45a3c8@avcodec.org> #3222: RTSP (client): Fallback to TCP causes 454 Session Not Found -------------------------------------+------------------------------------- Reporter: GstBlub | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: 2.1.1 | Resolution: Keywords: rtsp | Blocked By: fallback tcp session | Reproduced by developer: 0 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by GstBlub): Yes, I just compiled ffmpeg from git head and it's failing the same way: {{{ LD_LIBRARY_PATH=../lib:$LD_LIBRARY_PATH ./ffmpeg -i rtsp://strm01.novotempo.org.br/radionovotempo-vivo -rtsp_transport tcp -acodec copy -vcodec copy test.file ffmpeg version N-59032-g3dbf9af Copyright (c) 2000-2013 the FFmpeg developers built on Dec 12 2013 14:49:25 with gcc 4.8 (Ubuntu/Linaro 4.8.1-10ubuntu9) configuration: --prefix=/home/gstblub/ffmpeg_build --bindir=/home/gstblub/ffmpeg_build/bin --enable-shared --enable-network --disable-protocols --enable-protocol=file --enable-protocol=tcp --enable- protocol=udp --disable-demuxers --enable-demuxer=asf --enable-demuxer=rtsp --enable-demuxer=ape --disable-decoders --enable-decoder=aac --enable- decoder=aac_latm --enable-decoder=wmav1 --enable-decoder=wmav2 --enable- decoder=wmapro --enable-decoder=wmalossless --enable-decoder=mp2 --enable- decoder=mp3 --disable-encoders --disable-muxers --enable-muxer=adts --enable-muxer=asf --enable-muxer=asf_stream --disable-parsers --enable- parser=aac --disable-bsfs --disable-devices --disable-filters libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.101 / 55. 45.101 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 [rtsp @ 0xdeba00] UDP timeout, retrying with TCP [rtsp @ 0xdeba00] method SETUP failed: 454 Session Not Found [rtsp @ 0xdeba00] Could not find codec parameters for stream 0 (Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, 2 channels, s16p, 256 kb/s): unspecified frame size Consider increasing the value for the 'analyzeduration' and 'probesize' options rtsp://strm01.novotempo.org.br/radionovotempo-vivo: could not find codec parameters }}} Forcing it into TCP doesn't trigger the 454 Session Not Found error: {{{ LD_LIBRARY_PATH=../lib:$LD_LIBRARY_PATH ./ffmpeg -rtsp_transport tcp -i rtsp://strm01.novotempo.org.br/radionovotempo-vivo -rtsp_transport tcp -acodec copy -vcodec copy test.file ffmpeg version N-59032-g3dbf9af Copyright (c) 2000-2013 the FFmpeg developers built on Dec 12 2013 14:49:25 with gcc 4.8 (Ubuntu/Linaro 4.8.1-10ubuntu9) configuration: --prefix=/home/gstblub/ffmpeg_build --bindir=/home/bstblub/ffmpeg_build/bin --enable-shared --enable-network --disable-protocols --enable-protocol=file --enable-protocol=tcp --enable- protocol=udp --disable-demuxers --enable-demuxer=asf --enable-demuxer=rtsp --enable-demuxer=ape --disable-decoders --enable-decoder=aac --enable- decoder=aac_latm --enable-decoder=wmav1 --enable-decoder=wmav2 --enable- decoder=wmapro --enable-decoder=wmalossless --enable-decoder=mp2 --enable- decoder=mp3 --disable-encoders --disable-muxers --enable-muxer=adts --enable-muxer=asf --enable-muxer=asf_stream --disable-parsers --enable- parser=aac --disable-bsfs --disable-devices --disable-filters libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.101 / 55. 45.101 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 [mp3 @ 0x2092c20] Header missing Last message repeated 51 times [rtsp @ 0x208cae0] decoding for stream 0 failed [rtsp @ 0x208cae0] Could not find codec parameters for stream 0 (Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, 2 channels, s16p, 256 kb/s): unspecified frame size Consider increasing the value for the 'analyzeduration' and 'probesize' options rtsp://strm01.novotempo.org.br/radionovotempo-vivo: could not find codec parameters }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 23:46:11 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 22:46:11 -0000 Subject: [FFmpeg-trac] #3223(avformat:new): rtsp regression Message-ID: <036.eb2fca8b38f9f1ae5e9e1d4e84af8501@avcodec.org> #3223: rtsp regression -------------------------------------+------------------------------------- Reporter: cehoyos | Owner: Type: defect | Status: new Priority: important | Component: avformat Version: git- | Keywords: rtsp rtp master | mp3 regression Blocked By: | Blocking: Reproduced by developer: 0 | Analyzed by developer: 0 -------------------------------------+------------------------------------- The sample stream from ticket #3222 cannot be decoded since 0a5da9cc / c6f1dc8e {{{ $ ffmpeg -i rtsp://strm01.novotempo.org.br/radionovotempo-vivo out.wav ffmpeg version N-59032-g3dbf9af Copyright (c) 2000-2013 the FFmpeg developers built on Dec 12 2013 23:44:02 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.101 / 55. 45.101 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [mp3 @ 0x282d8a0] Header missing Last message repeated 51 times [rtsp @ 0x2827900] decoding for stream 0 failed [rtsp @ 0x2827900] Could not find codec parameters for stream 0 (Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, 2 channels, s16p, 256 kb/s): unspecified frame size Consider increasing the value for the 'analyzeduration' and 'probesize' options rtsp://strm01.novotempo.org.br/radionovotempo-vivo: could not find codec parameters }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 23:47:11 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 22:47:11 -0000 Subject: [FFmpeg-trac] #3222(avformat:new): RTSP (client): Fallback to TCP causes 454 Session Not Found In-Reply-To: <036.041ab651ed599465ddec294a966f5887@avcodec.org> References: <036.041ab651ed599465ddec294a966f5887@avcodec.org> Message-ID: <051.82249addeb86a4255bb028ca410ae6ba@avcodec.org> #3222: RTSP (client): Fallback to TCP causes 454 Session Not Found ------------------------------------+------------------------------------ Reporter: GstBlub | Owner: Type: defect | Status: new Priority: normal | Component: avformat Version: git-master | Resolution: Keywords: rtsp tcp | Blocked By: Blocking: | Reproduced by developer: 0 Analyzed by developer: 0 | ------------------------------------+------------------------------------ Changes (by cehoyos): * keywords: rtsp fallback tcp session => rtsp tcp * version: 2.1.1 => git-master Comment: I cannot reproduce the problem you are describing here but I opened ticket #3223 for the regression. {{{ $ ffmpeg -i rtsp://strm01.novotempo.org.br/radionovotempo-vivo ffmpeg version N-59032-g3dbf9af Copyright (c) 2000-2013 the FFmpeg developers built on Dec 12 2013 23:44:02 with gcc 4.7 (SUSE Linux) configuration: --enable-gpl libavutil 52. 58.100 / 52. 58.100 libavcodec 55. 45.101 / 55. 45.101 libavformat 55. 22.100 / 55. 22.100 libavdevice 55. 5.102 / 55. 5.102 libavfilter 3. 92.100 / 3. 92.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 [mp3 @ 0x2f890e0] Header missing Last message repeated 51 times [rtsp @ 0x2f83100] decoding for stream 0 failed [rtsp @ 0x2f83100] Could not find codec parameters for stream 0 (Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, 2 channels, s16p, 256 kb/s): unspecified frame size Consider increasing the value for the 'analyzeduration' and 'probesize' options rtsp://strm01.novotempo.org.br/radionovotempo-vivo: could not find codec parameters }}} -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Thu Dec 12 23:50:32 2013 From: trac at avcodec.org (FFmpeg) Date: Thu, 12 Dec 2013 22:50:32 -0000 Subject: [FFmpeg-trac] #3221(undetermined:new): best effort time stamp is wrong after av_seek_frame is called. In-Reply-To: <036.cbdfcfaa4b68e94c31b4e35449c7c7bd@avcodec.org> References: <036.cbdfcfaa4b68e94c31b4e35449c7c7bd@avcodec.org> Message-ID: <051.7cf8cb61fe03ca0d6d5c43d8a238047d@avcodec.org> #3221: best effort time stamp is wrong after av_seek_frame is called. -------------------------------------+------------------------------------- Reporter: hxuanyu | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by hxuanyu): Hi I added avcodec_flush_buffers before calling av_seek_frame, but result still seems incorrect, sorry the log format is not so good, you can check attached file log1. When I seek to dts 3, and continue to read. I expected to get a full frame straight away. But in fact until I read out 5 packets I could get the first full frame. Line 463: 00:00:32.620 MAIN rhbc73 Packet [0] dts = 0, pts = -9223372036854775808, KEY =1 Line 465: 00:00:32.620 MAIN rhbc73 **************** NO complete frame Line 469: 00:00:32.620 MAIN rhbc73 Packet [1] dts = 1, pts = -9223372036854775808, KEY =1 Line 471: 00:00:32.620 MAIN rhbc73 **************** NO complete frame Line 473: 00:00:32.620 MAIN rhbc73 Packet [2] dts = 2, pts = -9223372036854775808, KEY =0 Line 475: 00:00:32.620 MAIN rhbc73 **************** NO complete frame Line 477: 00:00:32.620 MAIN rhbc73 Packet [3] dts = 3, pts = -9223372036854775808, KEY =1 Line 479: 00:00:32.620 MAIN rhbc73 **************** NO complete frame Line 481: 00:00:32.620 MAIN rhbc73 Packet [4] dts = 4, pts = -9223372036854775808, KEY =1 Line 483: 00:00:32.620 MAIN rhbc73 ======= got a complete frame, pkt_dts = 0, best effort time stamp = 0 Line 485: 00:00:32.620 MAIN rhbc73 Packet [5] dts = 5, pts = -9223372036854775808, KEY =0 Line 487: 00:00:32.620 MAIN rhbc73 ======= got a complete frame, pkt_dts = 1, best effort time stamp = 1 Line 489: 00:00:32.620 MAIN rhbc73 Packet [6] dts = 6, pts = -9223372036854775808, KEY =0 Line 491: 00:00:32.620 MAIN rhbc73 ======= got a complete frame, pkt_dts = 2, best effort time stamp = 2 Line 493: 00:00:32.620 MAIN rhbc73 Packet [7] dts = 7, pts = -9223372036854775808, KEY =0 Line 495: 00:00:32.635 MAIN rhbc73 ======= got a complete frame, pkt_dts = 3, best effort time stamp = 3 Line 497: 00:00:32.635 MAIN rhbc73 Packet [8] dts = 8, pts = -9223372036854775808, KEY =1 Line 499: 00:00:32.635 MAIN rhbc73 ======= got a complete frame, pkt_dts = 4, best effort time stamp = 4 Line 501: 00:00:32.635 MAIN rhbc73 Packet [9] dts = 9, pts = -9223372036854775808, KEY =0 Line 503: 00:00:32.635 MAIN rhbc73 ======= got a complete frame, pkt_dts = 5, best effort time stamp = 5 Line 505: 00:00:32.635 MAIN rhbc73 Packet [10] dts = 10, pts = -9223372036854775808, KEY =0 Line 507: 00:00:32.635 MAIN rhbc73 ======= got a complete frame, pkt_dts = 6, best effort time stamp = 6 Line 509: 00:00:32.635 MAIN rhbc73 now try to see to packet where dts = 3 Line 511: 00:00:32.635 MAIN rhbc73 seek succeed, then continue to read Line 515: 00:00:32.635 MAIN rhbc73 Packet [11] dts = 3, pts = -9223372036854775808, KEY =1 Line 517: 00:00:32.635 MAIN rhbc73 **************** NO complete frame Line 521: 00:00:32.635 MAIN rhbc73 Packet [12] dts = 4, pts = -9223372036854775808, KEY =1 Line 523: 00:00:32.635 MAIN rhbc73 **************** NO complete frame Line 527: 00:00:32.635 MAIN rhbc73 Packet [13] dts = 5, pts = -9223372036854775808, KEY =0 Line 529: 00:00:32.635 MAIN rhbc73 **************** NO complete frame Line 531: 00:00:32.635 MAIN rhbc73 Packet [14] dts = 6, pts = -9223372036854775808, KEY =0 Line 533: 00:00:32.651 MAIN rhbc73 **************** NO complete frame Line 537: 00:00:32.651 MAIN rhbc73 Packet [15] dts = 7, pts = -9223372036854775808, KEY =0 Line 539: 00:00:32.651 MAIN rhbc73 ======= got a complete frame, pkt_dts = 3, best effort time stamp = 3 Line 541: 00:00:32.651 MAIN rhbc73 Packet [16] dts = 8, pts = -9223372036854775808, KEY =1 Line 543: 00:00:32.651 MAIN rhbc73 ======= got a complete frame, pkt_dts = 4, best effort time stamp = 4 Line 547: 00:00:32.651 MAIN rhbc73 Packet [17] dts = 9, pts = -9223372036854775808, KEY =0 Line 549: 00:00:32.651 MAIN rhbc73 ======= got a complete frame, pkt_dts = 5, best effort time stamp = 5 Line 553: 00:00:32.651 MAIN rhbc73 Packet [18] dts = 10, pts = -9223372036854775808, KEY =0 Line 555: 00:00:32.651 MAIN rhbc73 ======= got a complete frame, pkt_dts = 6, best effort time stamp = 6 Line 557: 00:00:32.651 MAIN rhbc73 Packet [19] dts = 11, pts = -9223372036854775808, KEY =0 Line 559: 00:00:32.651 MAIN rhbc73 ======= got a complete frame, pkt_dts = 7, best effort time stamp = 7 Line 563: 00:00:32.651 MAIN rhbc73 Packet [20] dts = 12, pts = -9223372036854775808, KEY =1 Line 565: 00:00:32.651 MAIN rhbc73 ======= got a complete frame, pkt_dts = 8, best effort time stamp = 8 Line 567: 00:00:32.651 MAIN rhbc73 Packet [21] dts = 13, pts = -9223372036854775808, KEY =0 Line 569: 00:00:32.651 MAIN rhbc73 ======= got a complete frame, pkt_dts = 9, best effort time stamp = 9 -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 13 01:34:30 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 13 Dec 2013 00:34:30 -0000 Subject: [FFmpeg-trac] #3221(undetermined:new): best effort time stamp is wrong after av_seek_frame is called. In-Reply-To: <036.cbdfcfaa4b68e94c31b4e35449c7c7bd@avcodec.org> References: <036.cbdfcfaa4b68e94c31b4e35449c7c7bd@avcodec.org> Message-ID: <051.c876dab886ced6e838d18404a8dc87f2@avcodec.org> #3221: best effort time stamp is wrong after av_seek_frame is called. -------------------------------------+------------------------------------- Reporter: hxuanyu | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by DonMoir): Something odd and maybe wrong index_entries list but can't really say. You will need to do at least this from ffmpeg commamd line: ffmpeg -i av_divx_24_yuv420p_mp3_44100_2_1.avi -f null - Add the output of that to this ticket. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 13 01:43:00 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 13 Dec 2013 00:43:00 -0000 Subject: [FFmpeg-trac] #3221(undetermined:new): best effort time stamp is wrong after av_seek_frame is called. In-Reply-To: <036.cbdfcfaa4b68e94c31b4e35449c7c7bd@avcodec.org> References: <036.cbdfcfaa4b68e94c31b4e35449c7c7bd@avcodec.org> Message-ID: <051.0158a05f4bece38e3dbb658089b3cae3@avcodec.org> #3221: best effort time stamp is wrong after av_seek_frame is called. -------------------------------------+------------------------------------- Reporter: hxuanyu | Owner: Type: defect | Status: new Priority: normal | Component: Version: unspecified | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+------------------------------------- Comment (by hxuanyu): Replying to [comment:4 DonMoir]: > Something odd and maybe wrong index_entries list but can't really say. > > You will need to do at least this from ffmpeg commamd line: > > ffmpeg -i av_divx_24_yuv420p_mp3_44100_2_1.avi -f null - > > Add the output of that to this ticket. Thanks, DonMoir Here is the output $ ffmpeg -i av_divx_24_yuv420p_mp3_44100_2_1.avi -f null - ffmpeg version N-58485-ga12b4bd Copyright (c) 2000-2013 the FFmpeg developers built on Nov 26 2013 22:01:46 with gcc 4.8.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable- librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo- aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 55.100 / 52. 55.100 libavcodec 55. 44.100 / 55. 44.100 libavformat 55. 21.102 / 55. 21.102 libavdevice 55. 5.101 / 55. 5.101 libavfilter 3. 91.100 / 3. 91.100 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, avi, from 'av_divx_24_yuv420p_mp3_44100_2_1.avi': Duration: 00:01:48.27, start: 0.000000, bitrate: 1162 kb/s Stream #0:0: Video: mpeg4 (DIVX / 0x58564944), yuv420p, 480x360, 23.98 fps, 23.98 tbr, 23.98 tbn, 1 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, stereo, s16p, 127 kb/s Output #0, null, to 'pipe:': Metadata: encoder : Lavf55.21.102 Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 480x360, q=2-31, 200 kb/s, 90k tbn, 23.98 tbc Stream #0:1: Audio: pcm_s16le, 44100 Hz, stereo, s16, 1411 kb/s Stream mapping: Stream #0:0 -> #0:0 (mpeg4 -> rawvideo) Stream #0:1 -> #0:1 (mp3 -> pcm_s16le) Press [q] to stop, [?] for help [mpeg4 @ 03712520] looks like this file was encoded with (divx4/(old)xvid/opendivx) -> forcing low_delay flag [null @ 036e3aa0] Encoder did not produce proper pts, making some up. [mp3 @ 036ddd20] incomplete frameA time=00:01:25.89 bitrate=N/A Error while decoding stream #0:1: Invalid data found when processing input [mpeg4 @ 03712520] ac-tex damaged at 14 20 [mpeg4 @ 03712520] Error at MB: 634 [mpeg4 @ 03712520] concealing 125 DC, 125 AC, 125 MV errors in I frame frame= 2701 fps=0.0 q=0.0 Lsize=N/A time=00:01:53.05 bitrate=N/A video:169kB audio:19476kB subtitle:0 global headers:0kB muxing overhead -100.000109% -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 13 11:37:33 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 13 Dec 2013 10:37:33 -0000 Subject: [FFmpeg-trac] #3177(avcodec:closed): asm error on i686 In-Reply-To: <036.6091537d9f867d9511be2ba94cd66fea@avcodec.org> References: <036.6091537d9f867d9511be2ba94cd66fea@avcodec.org> Message-ID: <051.129345537b18937187843788055c3bc6@avcodec.org> #3177: asm error on i686 -------------------------------------+------------------------------------- Reporter: andreas | Owner: Type: defect | Status: closed Priority: minor | Component: avcodec Version: git-master | Resolution: fixed Keywords: h264 | Blocked By: regression | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by andreas): Thanks for the additional explanations, we switched to "make fate" accordingly. -- Ticket URL: FFmpeg FFmpeg issue tracker From trac at avcodec.org Fri Dec 13 12:17:45 2013 From: trac at avcodec.org (FFmpeg) Date: Fri, 13 Dec 2013 11:17:45 -0000 Subject: [FFmpeg-trac] #1582(swscale:open): Banding/discoloration in darker gradients when converting to rgb24 In-Reply-To: <036.14b2e3fd86f92f10b8123e4f26801033@avcodec.org> References: <036.14b2e3fd86f92f10b8123e4f26801033@avcodec.org> Message-ID: <051.d4df581daf2b02fe8e15125f699ec695@avcodec.org> #1582: Banding/discoloration in darker gradients when converting to rgb24 -------------------------------------+------------------------------------- Reporter: y3kcjd5 | Owner: Type: defect | Status: open Priority: normal | Component: swscale Version: git-master | Resolution: Keywords: swscale, | Blocked By: bounty | Reproduced by developer: 1 Blocking: | Analyzed by developer: 0 | -------------------------------------+------------------------------------- Comment (by cehoyos): Replying to [comment:9 11rcombs]: > "ffmpeg -ss