aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/nutdec.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove unused code + variable, fixes a warning.Diego Biurrun2007-04-241-4/+1
| | | | Originally committed as revision 8794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make some functions which aren't used outside their declaring source fileStefan Huehner2007-04-081-2/+2
| | | | | | | and have no prototype in a header file static. patch by Stefan Huehner, stefan huehner org Originally committed as revision 8686 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix end-of-file detectionClemens Ladisch2007-03-181-3/+2
| | | | | | | | | | | | At the end of a nut file, the check for url_feof() fails because the eof flag was cleared by the url_fseek() call that was used to skip over the index packet. This patch fixes this patch by: Clemens Ladisch % cladisch A fastmail P net % Original thread: Date: Feb 27, 2007 6:13 PM Subject: [Ffmpeg-devel] [PATCH] nutdec: fix end-of-file detection Originally committed as revision 8447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_packetheader() forgot to read the header_checksum in big packetsLuca Barbato2007-02-281-0/+2
| | | | | | | patch from Clemens Ladisch cladisch AT fastmail dot net (stray base64 patch reverted in the next commits) Originally committed as revision 8156 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-01-211-11/+6
| | | | Originally committed as revision 7602 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check max_pts_distanceMichael Niedermayer2006-11-161-11/+13
| | | | Originally committed as revision 7100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip non keyframes after seeking between syncpoint and the first keyframeMichael Niedermayer2006-11-161-1/+9
| | | | Originally committed as revision 7099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unused variablesMichael Niedermayer2006-11-161-2/+1
| | | | Originally committed as revision 7098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removing unused codeMichael Niedermayer2006-11-161-25/+1
| | | | Originally committed as revision 7096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for frames with 2*size > max_dist and no crcMichael Niedermayer2006-11-141-0/+3
| | | | Originally committed as revision 7076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* resync from last syncpointMichael Niedermayer2006-11-141-1/+1
| | | | Originally committed as revision 7075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove skip spamMichael Niedermayer2006-11-141-1/+0
| | | | Originally committed as revision 7074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentionMichael Niedermayer2006-11-141-21/+21
| | | | Originally committed as revision 7058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seeking with indexMichael Niedermayer2006-11-141-15/+14
| | | | Originally committed as revision 7057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* index less seeking in O(log n) timeMichael Niedermayer2006-11-141-9/+79
| | | | Originally committed as revision 7056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix checksum check (was my bug not libnut)Michael Niedermayer2006-11-121-20/+11
| | | | Originally committed as revision 6980 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix timestamp rounding in syncpointsMichael Niedermayer2006-11-121-2/+103
| | | | | | index reading (unfinished and disabled) Originally committed as revision 6979 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-11-111-4/+2
| | | | Originally committed as revision 6971 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont do startcode search from last syncpoint if there are no errorsMichael Niedermayer2006-11-111-1/+3
| | | | Originally committed as revision 6969 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nut simple seeking first tryMichael Niedermayer2006-11-111-4/+54
| | | | Originally committed as revision 6968 to svn://svn.ffmpeg.org/ffmpeg/trunk
* updating nut demuxer to latest specMichael Niedermayer2006-11-111-0/+691
no muxing yet no index yet no seeking yet libnuts crcs dont match mine (didnt investigate yet) samplerate is stored wrong by libnut (demuxer has a workaround) code is not clean or beautifull yet, but i thought its better to commit early before someone unneccesarily wastes his time duplicating the work demuxer split from muxer Originally committed as revision 6966 to svn://svn.ffmpeg.org/ffmpeg/trunk