summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2013-02-02suppress warning for wrong use of printing flagsJan Klemkow3-3/+3
2013-02-02add findcut graph plotting for documentationJan Klemkow1-0/+3
2013-02-02add findcutJan Klemkow1-2/+5
2013-02-02add tool to recognize a cut inside a videoJan Klemkow1-0/+88
2013-02-01Add graph and text into documentation.Jan Klemkow1-2/+4
2013-02-01add data for plotting and documentationJan Klemkow2-0/+4193
2013-02-01cutting: BUG FIXJan Klemkow1-2/+2
2013-02-01plot: fix file pathJan Klemkow1-1/+1
2013-02-01cuttime: use diff slope for cut detectionJan Klemkow1-1/+1
2013-02-01fix filedescriptor leakJan Klemkow1-1/+1
2013-02-01improve graph plotting with labes and unitsJan Klemkow1-7/+14
2013-02-01improve output posebilitiesJan Klemkow1-10/+26
2013-02-01video_decode: cur_dts includes start time, so substract it for frame dtsBenjamin Franzke1-0/+2
2013-02-01util: Add sobel operatorBenjamin Franzke2-0/+45
2013-02-01add help flag and improve help messageJan Klemkow2-4/+8
2013-02-01Rename cutting to cutting.shBenjamin Franzke1-0/+0
Without the suffix it always looks like a binary, which i'd like to delete.
2013-02-01Also put frame_average into utilBenjamin Franzke3-19/+23
Not yet needed by other tools than cuttime, but its really just a utility function.
2013-02-01.gitignore: Add overlap, and fix advtime->cuttime renamingBenjamin Franzke1-1/+2
2013-02-01Put frame_diff and pswap into utilBenjamin Franzke4-64/+35
2013-02-01overlap: Remove unnused functionsBenjamin Franzke1-30/+0
2013-02-01rename advtime into cuttime even in usage()Jan Klemkow1-1/+1
2013-02-01rename advtime into cuttimeJan Klemkow2-4/+4
2013-02-01clean up code.Jan Klemkow1-6/+4
2013-01-31util: Add pgm_read functionBenjamin Franzke2-0/+44
2013-01-31overlap: Remove print_time (since its in util)Benjamin Franzke1-14/+0
2013-01-31Put print_time into util.cBenjamin Franzke3-14/+19
2013-01-31video_decode: Fix a leak when decoding failsBenjamin Franzke1-0/+1
2013-01-31frame_to_pgm: On error do not return 0Benjamin Franzke1-1/+1
2013-01-31Makefile: Allow specifying DEBUG=1 as parameterBenjamin Franzke2-3/+2
2013-01-31video-decode: Fix the got_picture = 0 caseBenjamin Franzke1-21/+16
We actually tried to read the same packet again, but that doesnt work, so lets just drop it..
2013-01-31overlap: Use video_decode_seek to get fast to last frameBenjamin Franzke1-2/+2
2013-01-31video-decode: Add seek functionBenjamin Franzke2-0/+15
2013-01-31advtime: Check if frame_b can be freedBenjamin Franzke1-1/+2
2013-01-31cutting: Generate wmv's instead of mpgBenjamin Franzke1-1/+1
So that we're able to actually read from it.
2013-01-31video-decode: Add duration to struct video_decodeBenjamin Franzke2-6/+12
2013-01-31add overlap toolJan Klemkow4-4/+185
2013-01-31describe parameter in usage partJan Klemkow1-2/+10
2013-01-29advtime: Remove old debug outputBenjamin Franzke1-15/+1
2013-01-29Use frame_a for last_dtsBenjamin Franzke1-4/+2
2013-01-29video-decode: Make struct video_decode private againBenjamin Franzke3-14/+7
2013-01-29video_decode: Store cur_dts in a video frameBenjamin Franzke3-2/+4
2013-01-29Fix stream id by another broken hard-coded value.Benjamin Franzke1-2/+2
We should av_find_best_stream which frame is the video of intrest.
2013-01-29advtime: The end-time of frame n-1 needs to be < start_time of frame nBenjamin Franzke1-7/+10
2013-01-29advtime: Also print the range for the last frameBenjamin Franzke1-7/+17
2013-01-29advtime: Need to start the interval from the previous dtsBenjamin Franzke1-1/+1
Or we duration and start time are not in sync.
2013-01-29cutting: The time-slot needs to be a output-parameter for accuracyBenjamin Franzke1-1/+1
The avconv manpage adds a note, that it is more accurate to have this as output parameter, but slower. Without this it seeks in the input file to the given position, but it looks like it jumps to near i-frames, which results in incorrect positions.
2013-01-29cutting: use printf instead of sed hack to form parametersBenjamin Franzke1-2/+1
2013-01-29Makefile: Add a space before output parameterBenjamin Franzke1-1/+1
2013-01-29Fix warningsBenjamin Franzke2-3/+3
2013-01-29add script for video cuttingJan Klemkow1-0/+20