[Ffmpeg-devel-irc] ffmpeg-devel.log.20141101

burek burek021 at gmail.com
Sun Nov 2 02:05:02 CET 2014


[00:03] <GodofGrunts> So when I do that it says it can't find my libs
[00:04] <GodofGrunts> Was I supposed to static compile the libs?
[01:07] <cone-518> ffmpeg.git 03Lukasz Marek 07master:fe72622819d3: lavd/alsa: implement get_device_list callbacks
[01:07] <cone-518> ffmpeg.git 03Lukasz Marek 07master:ed1f8915daf6: ffserver_config: postpone codec context creation
[02:12] <cone-518> ffmpeg.git 03Lukasz Marek 07master:d2d97b34a0a8: ffserver_config: fix compilation warning
[02:26] <GodofGrunts> Okay so this is what I got now
[02:26] <GodofGrunts> ./configure --target-os=mingw32 --extra-cflags="-I/usr/local/include/fontconfig -static" --extra-cflags="-I/usr/local/include/fdk-aac -static" --extra-cflags="-I/usr/local/include/ass -static" --extra-cflags="-I/usr/local/include -static" --extra-ldflags="-L/usr/local/lib/pkgbuild -static" --extra-ldflags="-L/usr/local/lib -static" --extra-libs=-lstdc++ --enable-static --disable-shared 
[02:26] <GodofGrunts> --disable-ffplay --disable-ffserver --enable-memalign-hack --enable-gpl --enable-nonfree --arch=x86 --enable-runtime-cpudetect --enable-w32threads --enable-libx264 --enable-libx265 --enable-libfdk-aac --enable-fontconfig
[02:26] <GodofGrunts> Finally builds, but now it's complaining that it needs libx264-142.dll
[02:26] <GodofGrunts>  What am I missing to make this thing completely static?
[02:27] <rcombs> probably a static libx264 to link against
[02:27] <GodofGrunts> Shouldn't pgkbuild handle it regardless if it was built static or not?
[02:28] <GodofGrunts> I mean I have libx264.a in my /lib
[02:28] <rcombs> pkgbuild?
[02:28] <GodofGrunts> er
[02:28] <GodofGrunts> pgkonfig
[02:28] <GodofGrunts> pgkconfig*
[02:29] <rcombs> also, you don't have -L/lib in there and I'm not sure if that's in by default on mingw
[02:29] <GodofGrunts> in mingw everything goes to /usr/local/lib
[02:29] <rcombs> why do you need it completely static anyway?
[02:30] <GodofGrunts> Mostly wanting to try it out and I'd like to be able to carry the exe with me on a flash drive without everything else.
[02:31] <GodofGrunts> hmm
[02:31] <GodofGrunts> I goofed a bit
[02:31] <rcombs> use `make V=1` to figure out what the actual linker command for ffmpeg_g.exe is
[02:31] <GodofGrunts> --extra-ldflags="-L/usr/local/lib/pkgbuild -static" should be --extra-ldflags="-L/usr/local/lib/pkgconfig -static"
[02:32] <GodofGrunts> Okay
[02:32] <rcombs> uh, why are you -L-ing your pkgconfig dir?
[02:32] <rcombs> that's generally not how that works
[02:33] <GodofGrunts> idk, found it online somewhere about fontconfig. It fixed my issue
[02:33] <rcombs> also, do multiple instances of --extra-*flags all apply with ffmpeg's configure? (I'm not sure)
[02:34] <GodofGrunts> I really don't know either. I can try to get rid of them to see if I have issues
[02:34] <rcombs> looking at the code; I _think_ that should work
[02:35] <rcombs> either way, see exactly what gets passed to the linker
[02:35] <GodofGrunts> Okay.
[02:38] <GodofGrunts> Hmm, I feel like I should have stdout this to a file
[02:45] <J_Darnley> Why do you have so many --extra-cflags options?  I don't think they work like that at all.
[02:45] <rcombs> J_Darnley: apparently each one appends to the variable, so they _should_ work (but my instinct was also "wat")
[02:45] <J_Darnley> Oh they do?
[02:46] <rcombs> yeah, unless I'm _really_ bad at reading shell
[02:46] <rcombs> and I'm pretty sure I'm not
[02:48] <J_Darnley> Well it would certainly be clearer to merge them all into one.
[02:48] <rcombs> yup
[02:48] <rcombs> and -L-ing a pkgconfig dir smells nasty
[02:57] <GodofGrunts> Hi. Sorry for my shitty hacks, make v=1 is done. What am I looking for?
[03:01] <J_Darnley> The error?
[03:01] <GodofGrunts> There is no error during make
[03:02] <J_Darnley> Then what's the problem?  That you are linking to some shared libs?
[03:02] <GodofGrunts> It's just that it's not staticly building the external libs into the exe
[03:02] <GodofGrunts> Yah
[03:02] <J_Darnley> Did you install a static version of each lib you want?
[03:03] <GodofGrunts> I didn't as far as I know
[03:03] <GodofGrunts> I'm new to this
[03:04] <GodofGrunts> I was under the impression that pkgconfig would handle it
[03:05] <J_Darnley> No.  That just handles dependencies.
[03:05] <GodofGrunts> So I need to rebuild all of my dependdencies?
[03:06] <J_Darnley> Maybe.  For some, like libx264, static should be the default.
[03:07] <GodofGrunts> If it's static I should get a .a file correct?
[03:08] <J_Darnley> only a .a file, yes
[03:09] <GodofGrunts> I think all of my stuff was just giving me .a and .pc
[03:09] <GodofGrunts> So I think they're all static
[03:11] <GodofGrunts> So the make install is giving me a whole bunch of dlls
[03:11] <GodofGrunts> I don't even know. I have to go, but I'll try later.
[03:11] <GodofGrunts> Thanks
[10:39] <kevmitch> was thinking of adding telecine detection to vf_idet
[10:41] <kevmitch> initial tests looks like finding repeated fields is relatively reliable
[10:43] <kevmitch> does adding a tally of frames with repeated fields sound sane?
[11:37] <cone-455> ffmpeg.git 03Michael Niedermayer 07master:cc769931ab0c: avcodec/parser: use av_freep() to avoid leaving stale pointers in memory
[11:37] <cone-455> ffmpeg.git 03Michael Niedermayer 07master:842745fe1705: avcodec/pthread_frame: Simplify code by using av_reallocp_array()
[11:37] <cone-455> ffmpeg.git 03Michael Niedermayer 07master:e5054c8eed33: avcodec/pthread_slice: Use av_freep() to avoid leaving stale pointers in memory
[13:21] <cone-455> ffmpeg.git 03Anton Khirnov 07release/2.4:de31f857077a: hevc_mvs: initialize the temporal MV in case of missing ref
[13:21] <cone-455> ffmpeg.git 03Anton Khirnov 07release/2.4:0b41eeac45fb: hevc_mvs: make sure to always initialize the temporal MV fully
[13:21] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:13ecdb06f850: Merge commit 'de31f857077a52714f3a2f2e92ac037d42d37769' into release/2.4
[13:21] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:0ddcee172ec8: Merge commit '0b41eeac45fb7f7ad6d3f4fc846b00d108824b0b' into release/2.4
[13:28] <cone-455> ffmpeg.git 03Vittorio Giovara 07release/2.4:e443165c3234: imc: fix order of operations in coefficients read
[13:28] <cone-455> ffmpeg.git 03Timothy B. Terriberry 07release/2.4:ca8c62d187fd: resample: Avoid off-by-1 errors in PTS calcs.
[13:28] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:3b7db9c4f55d: Merge commit 'e443165c323406d01da7e7930f042d265d01fb35' into release/2.4
[13:28] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:20071ff1a4ba: Merge commit 'ca8c62d187fdca13979379fb2ab172ed662aa2f8' into release/2.4
[13:35] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:81b38caf21fc: swresample/swresample: fix sample drop loop end condition
[13:35] <cone-455> ffmpeg.git 03Christophe Gisquet 07release/2.4:f3d34cff7681: utvideoenc: properly set slice height/last line
[13:35] <cone-455> ffmpeg.git 03Karl Kiniger 07release/2.4:71af22097d33: vf_drawtext: add missing clear of pointers after av_expr_free()
[13:35] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:5a1efc7b8585: postproc/postprocess: fix quant store for fq mode
[13:35] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:bf7ee2524b8d: postproc: fix qp count
[13:35] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:2185103bcdd2: avformat/mxfdec: Fix termination of mxf_data_essence_container_uls
[13:35] <cone-455> ffmpeg.git 03Lukasz Marek 07release/2.4:e4d921dc71cd: lavd: export all symbols with av_ prefix
[13:35] <cone-455> ffmpeg.git 03Christophe Gisquet 07release/2.4:30a0622a5dbf: avcodec/tiffenc: properly compute packet size
[13:35] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:045670a6f7e4: avcodec/hevc_ps: Check default display window bitstream and skip if invalid
[13:35] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:ca47574e16ca: avcodec/sgidec: fix linesize for 16bit
[13:36] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:73c6520c096b: avcodec/sgidec: fix count check
[13:36] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:8cba067fe52a: avcodec/diracdec: Use 64bit in calculation of codeblock coordinates
[13:36] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:8e95ddbe82c4: avcodec/diracdec: Tighter checks on CODEBLOCKS_X/Y
[13:36] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:3f3e5f8f60ef: avcodec/dirac_arith: fix integer overflow
[13:36] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:c7b7e0790c7b: avcodec/dxa: check dimensions
[13:36] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:66fcf1fa404e: avcodec/dnxhddec: treat pix_fmt like width/height
[13:36] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:24d725f45574: avcodec/utils: Align dimensions by at least their chroma sub-sampling factors.
[13:36] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:1f636a697f6b: avcodec/g2meet: check tile dimensions to avoid integer overflow
[13:36] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:35bc67503e80: avcodec/cook: check that the subpacket sizes fit in block_align
[13:36] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:63523485f4d3: avcodec/svq1dec: zero terminate embedded message before printing
[13:40] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:04aa2ffbcf70: Update for 2.4.3
[14:33] <cone-455> ffmpeg.git 03Christophe Gisquet 07release/2.3:c3c8857263d4: avcodec/tiffenc: properly compute packet size
[14:33] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:4a03c31728c8: avcodec/sgidec: fix linesize for 16bit
[14:33] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:5c791b1c9ce0: avcodec/sgidec: fix count check
[14:33] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:1ec6a3c768b2: avcodec/diracdec: Use 64bit in calculation of codeblock coordinates
[14:33] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:ad98b2891cea: avcodec/diracdec: Tighter checks on CODEBLOCKS_X/Y
[14:33] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:e26fd791efaa: avcodec/dirac_arith: fix integer overflow
[14:33] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:7b7d12ea0448: avcodec/dxa: check dimensions
[14:33] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:e3275571c7e2: avcodec/dnxhddec: treat pix_fmt like width/height
[14:34] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:0db579445f52: avcodec/utils: Align dimensions by at least their chroma sub-sampling factors.
[14:34] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:bfee1e90725a: avcodec/g2meet: check tile dimensions to avoid integer overflow
[14:34] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:25d2a4dde724: avcodec/cook: check that the subpacket sizes fit in block_align
[14:34] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:9395a3a96bf8: avcodec/svq1dec: zero terminate embedded message before printing
[14:34] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:b44506c393b1: update for 2.3.5
[14:47] <cone-455> ffmpeg.git 03Michael Niedermayer 07fatal: ambiguous argument 'refs/tags/n2.3.5': unknown revision or path not in the working tree.
[14:47] <cone-455> Use '--' to separate paths from revisions
[14:47] <cone-455> refs/tags/n2.3.5:HEAD: avcodec/pthread_slice: Use av_freep() to avoid leaving stale pointers in memory
[15:25] <cone-455> ffmpeg.git 03Rémi Denis-Courmont 07release/2.2:c7caed88a035: h264: Always invoke the get_format() callback
[15:25] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:2d1d053c5d2c: Merge commit 'c7caed88a03567e8777a606f4bd42f093c6b302c' into release/2.2
[15:40] <cone-455> ffmpeg.git 03Rémi Denis-Courmont 07release/2.2:0989a120f1de: mpeg12: Always invoke the get_format() callback
[15:40] <cone-455> ffmpeg.git 03Vittorio Giovara 07release/2.2:787a6156a2d8: imc: fix order of operations in coefficients read
[15:40] <cone-455> ffmpeg.git 03Timothy B. Terriberry 07release/2.2:72ed4166a647: resample: Avoid off-by-1 errors in PTS calcs.
[15:40] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:0f4c03cd6340: Merge commit '0989a120f1dec400c54fcb54670cb84bba36d99b' into release/2.2
[15:40] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:7ac50d846c8f: Merge commit '787a6156a2d887bb1d65c1233a94a61741e7af7c' into release/2.2
[15:40] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:3bb4c3e74dee: Merge commit '72ed4166a64714952777fb028b546a52e5b4e2c2' into release/2.2
[15:44] <cone-455> ffmpeg.git 03Reimar Döffinger 07master:46353759cb3c: mpeg4vdpau: Fix priv data size.
[15:45] <cone-455> ffmpeg.git 03Carl Eugen Hoyos 07release/2.4:857e39169728: Stop demuxing wtv on eof.
[15:45] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:39518589e73e: avformat/options_table: add FF_COMPLIANCE_UNOFFICIAL
[15:45] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:a8a6cdfcd7b6: avformat/matroskadec: do not trust the default duration to be the real 1/timebase if its less than 5fps
[15:55] <wm4> what a hack
[15:56] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:4f515913a205: avformat/matroskadec: do not trust the default duration to be the real 1/timebase if its less than 5fps
[15:56] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:10464ca0eba3: avformat/options_table: add FF_COMPLIANCE_UNOFFICIAL
[15:56] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:63ed7e09dd1e: avformat/mpegts: Improve probe heuristic by considering the overall frequency of 0x47 headers
[15:56] <cone-455> ffmpeg.git 03Clément BSsch 07release/2.3:193b949f715e: avcodec/mjpegdec: Fix chroma width rounding
[15:56] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:19ccc06d8b61: avformat/mp3dec: Improve seeking frame sync code
[15:57] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:4e2e997fafc6: avformat/mpeg: increase score for short mpeg-ps by 1
[15:57] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:48b586ca4e8c: ffmpeg: Copy extradata if it has been initialized later from the encoder
[15:58] <cone-455> ffmpeg.git 03Christophe Gisquet 07release/2.2:aa40f11b815a: utvideoenc: properly set slice height/last line
[15:58] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:13b7962aae30: postproc/postprocess: fix quant store for fq mode
[15:58] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:17f0581e0dd5: postproc: fix qp count
[15:58] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:6505eb45bcf4: avcodec/diracdec: Use 64bit in calculation of codeblock coordinates
[15:58] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:81e1b5f5fe5b: avcodec/diracdec: Tighter checks on CODEBLOCKS_X/Y
[15:58] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:45361d8aa300: avcodec/dirac_arith: fix integer overflow
[15:58] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:557e8bd58968: avcodec/dxa: check dimensions
[15:58] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:635215381116: avcodec/dnxhddec: treat pix_fmt like width/height
[15:59] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:16a4aef34574: avcodec/utils: Align dimensions by at least their chroma sub-sampling factors.
[15:59] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:f6499563c306: avcodec/g2meet: check tile dimensions to avoid integer overflow
[15:59] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:f00ec3307b5f: avcodec/cook: check that the subpacket sizes fit in block_align
[15:59] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:9b8b35910ffb: avcodec/svq1dec: zero terminate embedded message before printing
[15:59] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:e812a089f549: avcodec/svq3: Dont memcpy AVFrame
[16:02] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:41ee9a44955b: update for 2.2.10
[16:13] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:c9659dfd2942: avformat/mpeg: increase score for short mpeg-ps by 1
[16:13] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:114e4b970e0a: avformat/mp3dec: Improve seeking frame sync code
[16:13] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:64624c56784d: avformat/matroskadec: do not trust the default duration to be the real 1/timebase if its less than 5fps
[16:14] <wm4> michaelni: what if the file is actually, say, a slide-show?
[16:15] <michaelni> wm4, ehm, what exactly do you talk about, what file ?
[16:15] <wm4> about this commit: avformat/matroskadec: do not trust the default duration to be the real 1/timebase if its less than 5fps
[16:18] <michaelni> then the generic code will calculate the frame rate from the timestamps
[16:19] <wm4> why not always do this?
[16:19] <michaelni> it needs to read a bit more of the file/stream than otherwise
[16:20] <cone-455> ffmpeg.git 03Reimar Döffinger 07release/2.4:25fc3deed800: mpeg4vdpau: Fix priv data size.
[16:20] <michaelni> also i wonder, is the default duration in general set "correctly" for slide shows in matroska
[16:20] <wm4> maybe ideally there should be a separate API function to retrieve such information
[16:21] <michaelni> yes
[16:28] <cehoyos> thardin: I failed to backport the fix for ticket #4040 to origin/release/2.4
[16:28] <cehoyos> Do you have time to look at this? Michael wants to do a 2.4 release soon.
[16:32] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:70f6d553d98e: Move get_avc_nalsize() and find_start_code() to h264.h
[16:32] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:5405ba7b635b: avcodec/h264: simplify find_start_code()
[16:33] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.4:9a641b909cb8: avcodec/h264_parser: rewrite the parse_nal_units() loop logic based on h264.c
[16:41] <cone-455> ffmpeg.git 03Thomas Volkert 07master:8d9277c3c01c: avformat/rtpdec_h261: code aligned to the HEVC code
[16:51] <arwa> I am not able to send a mail on ffmpeg-devel list. It have attached some sample reference input images and their output. 
[16:52] <arwa> has*
[16:52] <arwa> I*
[16:56] <ubitux> arwa: why are you comparing to scale2x?
[16:56] <ubitux> it's not the same algorithm as xbr
[16:57] <arwa> but they have xbr implemented
[16:57] <ubitux> oh, alright
[17:00] <saste> arwa, i'm leaving, i'll check it later tonight
[17:00] <arwa> should I send the source code also?
[17:00] <arwa> okay
[17:01] <saste> arwa, we have a size limit on the mailing-list, so if you add big attachment the message will be moderated
[17:02] <arwa> So, should I mail it to you on your mail id?
[17:03] <saste> arwa, no, can you put it on a server and post the link?
[17:03] <saste> also, for small images it shouldn't be a problem
[17:03] <saste> how big was the attachment?
[17:04] <wm4> the mail already got through
[17:04] <arwa> 2.5 mb zip file
[17:04] <saste> arwa, that's huge
[17:05] <arwa> I will put the results on a server.
[17:08] <ubitux> yup
[17:08] <ubitux> upload the images on imgur or lut.im or wherever
[17:08] <saste> arwa, but yes the email got through so i can see the samples
[17:08] <saste> anyway, time to leave, see you later
[17:12] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:ab43652c67a4: Move get_avc_nalsize() and find_start_code() to h264.h
[17:13] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:48bf926bad57: avcodec/h264: simplify find_start_code()
[17:13] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.3:4b8cb3fe51eb: avcodec/h264_parser: rewrite the parse_nal_units() loop logic based on h264.c
[17:41] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/1.2:e5cf4d16c60e: avformat/mpeg: increase score for short mpeg-ps by 1
[17:41] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/1.2:1abb0e563918: avformat/matroskadec: do not trust the default duration to be the real 1/timebase if its less than 5fps
[18:12] <cone-455> ffmpeg.git 03Kevin Mitchell 07master:2847843868c9: avfilter/idet: add metadata to "current" frame instead of "next" frame
[18:12] <cone-455> ffmpeg.git 03Kevin Mitchell 07master:ae6118de19a5: avfilter/idet: add current frame classification to metadata
[18:39] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:667fe8c75b0b: Move get_avc_nalsize() and find_start_code() to h264.h
[18:39] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:76587eea6486: avcodec/h264: simplify find_start_code()
[18:39] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/2.2:969aee07e68c: avcodec/h264_parser: rewrite the parse_nal_units() loop logic based on h264.c
[19:05] <cone-455> ffmpeg.git 03Kevin Mitchell 07fatal: ambiguous argument 'refs/tags/n2.2.10': unknown revision or path not in the working tree.
[19:05] <cone-455> Use '--' to separate paths from revisions
[19:05] <cone-455> refs/tags/n2.2.10:HEAD: avfilter/idet: add current frame classification to metadata
[19:39] <cone-455> ffmpeg.git 03Rodger Combs 07master:ae437c7ce704: avformat/assenc: Add ignore_gaps option
[20:16] <cone-455> ffmpeg.git 03Michael Niedermayer 07master:6d64a14e6dea: avformat: add webp muxer
[20:16] <cone-455> ffmpeg.git 03Michael Niedermayer 07master:5aaf5df06de6: avcodec/libwebpenc: support "P" frames in webp animations
[20:27] <lukaszmluki> Hi, I have question. Do codecs have any other common options beside these defined in options_table.h?
[20:38] <cehoyos> lukaszmluki: It is possible that options with identical names exist for different codecs, and I expect such options to exist
[20:39] <lukaszmluki> but you mean private options right, per specific codec ony?
[20:53] <cehoyos> Yes, private options
[21:04] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/1.2:7ddf252c7e1e: Move get_avc_nalsize() and find_start_code() to h264.h
[21:05] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/1.2:aa9d70587150: avcodec/h264: simplify find_start_code()
[21:05] <cone-455> ffmpeg.git 03Michael Niedermayer 07release/1.2:9282c96071be: avcodec/h264_parser: rewrite the parse_nal_units() loop logic based on h264.c
[00:00] --- Sun Nov  2 2014


More information about the Ffmpeg-devel-irc mailing list