summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
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
2013-01-29flush output and use space als separatorJan Klemkow1-3/+7
2013-01-29video-decode: Allow reusing an old frameBenjamin Franzke3-11/+24
2013-01-29print_error: Be staticBenjamin Franzke1-1/+1
2013-01-29add flags for calc and output, print time and duration on cutJan Klemkow1-23/+55
2013-01-29add second diff over diffJan Klemkow2-7/+8
2013-01-10mv struct and wip stateJan Klemkow3-12/+40
2012-11-17Makefile: Add clean targetBenjamin Franzke1-0/+3
2012-11-17Makefile move DEBUG=0 to CFLAGSBenjamin Franzke1-3/+2
2012-11-17video_decode: Use av_strerror to get an error message if read_frame failsBenjamin Franzke1-2/+9
2012-11-17video_decode: Quient libav if DEBUG is disabledBenjamin Franzke1-0/+3
2012-11-17video_decode: Inidicate EOF in get_frameBenjamin Franzke4-4/+14
..and do not print an error message.
2012-11-15advtime: Compile with debugging symbols for nowBenjamin Franzke1-1/+1
2012-11-15Add img/ directory needed for advtime diff outputBenjamin Franzke1-0/+0
Or we fail (previously segfault) in opening the splitted frames.
2012-11-15pgm_save: Check whether file could be openedBenjamin Franzke3-5/+11
2012-11-15util: Remove pgm output in frame_mix functionBenjamin Franzke3-13/+7
That should be up to the utility user, to use pgm_save afterwards.
2012-11-15Add graph plotting script.Jan Klemkow2-0/+12
2012-11-15Add frame mix saving for high diffs.Jan Klemkow4-7/+64
2012-11-14Add frame diff calculation and getopt.Jan Klemkow1-15/+71
2012-11-14video_decode.h: Add header guardsBenjamin Franzke1-0/+5
2012-11-14Add util.cBenjamin Franzke2-0/+19
2012-11-14Add advtime to gitignoreBenjamin Franzke1-0/+1
2012-11-14advtime: Fix warningsBenjamin Franzke1-15/+2
2012-11-14advtime: Disable DEBUG for video_decodeBenjamin Franzke2-1/+6
2012-11-14frame_to_pgm: Fix identationBenjamin Franzke1-9/+9
2012-11-14Add average frame calculation.Jan Klemkow2-167/+50