summaryrefslogtreecommitdiff
path: root/libavformat/nutdec.c
Commit message (Collapse)AuthorAge
* use new metadata API in nut demuxerAurelien Jacobs2009-02-27
| | | | Originally committed as revision 17652 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export gcd function as av_gcd()Aurelien Jacobs2009-01-17
| | | | Originally committed as revision 16653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove _t for POSIX compatibility.Michael Niedermayer2008-12-11
| | | | Originally committed as revision 16057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* convert every muxer/demuxer to write/read sample_aspect_ratio from/toAurelien Jacobs2008-08-23
| | | | | | the corresponding AVStream instead of AVCodecContext Originally committed as revision 14933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini2008-06-03
| | | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memleak, fixed CID123.Michael Niedermayer2008-05-27
| | | | Originally committed as revision 13472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass time_base as argument to new_chapter() as well.Michael Niedermayer2008-05-23
| | | | | | | This fixes the wrong timebase the matroska demuxer had after my previous commits. Maybe we should reduce new_chapter() to just (AVFormatContext, int id) ? Originally committed as revision 13266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Chapter demuxing support. (untested as I have no nuts with chapters)Michael Niedermayer2008-05-23
| | | | | | Isn't that much simpler than Matroska? Originally committed as revision 13263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 'comparison always false' warning.Diego Pettenò2008-05-04
| | | | | | patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com Originally committed as revision 13056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fixesDiego Biurrun2008-03-15
| | | | Originally committed as revision 12449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fixesDiego Biurrun2008-03-12
| | | | Originally committed as revision 12428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 'disposition' bitfield to AVStream and use it for both muxing and demuxingEvgeniy Stepanov2008-03-07
| | | | | | of matroska and nut. Originally committed as revision 12358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Subtitle support. (untested)Michael Niedermayer2008-03-05
| | | | Originally committed as revision 12330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factorizeMichael Niedermayer2008-03-02
| | | | Originally committed as revision 12293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* subtitles (codec tag tables still missing ...)Michael Niedermayer2008-03-02
| | | | Originally committed as revision 12292 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Elision header demuxing support.Michael Niedermayer2008-02-15
| | | | Originally committed as revision 11935 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read match time delta in the frame header.Michael Niedermayer2008-02-13
| | | | | | We do not do anything with it as lavf does not really support it yet. Originally committed as revision 11931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read match_time_delta in the framecode table.Michael Niedermayer2008-02-13
| | | | Originally committed as revision 11930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fix: inited --> initializedDiego Biurrun2008-02-13
| | | | Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove old workaround in nutdec.c for libnut bugOded Shimon2008-02-04
| | | | Originally committed as revision 11853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* missing " && j<syncpoint_count" protection in the index parsing, as theOded Shimon2008-02-04
| | | | | | spec instructs... Originally committed as revision 11852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_nut_reset_ts() expected to get 'ts*time_base_count', but muxer onlyOded Shimon2008-02-04
| | | | | | gave it 'ts'. Fixed by changing ff_nut_reset_ts() and demuxer params Originally committed as revision 11851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix info packet type, found by oded as well as the new pedantic constMichael Niedermayer2008-02-04
| | | | | | warnings. Originally committed as revision 11843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* -Wwrite-strings nitpicking fixMichael Niedermayer2008-02-04
| | | | Originally committed as revision 11842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More verbose aspect ratio error msg.Michael Niedermayer2007-12-31
| | | | Originally committed as revision 11362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-21
| | | | | | | patch by: Björn Axelsson, bjorn d axelsson a intinor d se thread: [PATCH] Remove static ByteIOContexts, 06 nov 2007 Originally committed as revision 11071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_ prefix to get_v()Kostya Shishkov2007-11-03
| | | | Originally committed as revision 10912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make get_v() available to the other demuxersKostya Shishkov2007-11-03
| | | | Originally committed as revision 10911 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename av_crc04C11DB7_update to ff_crc04C11DB7_update and move it to ↵Baptiste Coudurier2007-10-30
| | | | | | aviobuf.c so it can be reused by other (de)muxers Originally committed as revision 10873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warning fix:Diego Biurrun2007-09-16
| | | | | | | nutdec.c: In function ‘nut_read_timestamp’: nutdec.c:759: warning: label ‘resync’ defined but not used Originally committed as revision 10506 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable.Diego Biurrun2007-08-27
| | | | Originally committed as revision 10251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/wording cosmeticsDiego Biurrun2007-08-17
| | | | Originally committed as revision 10131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move syncpoint cache related stuff to common fileMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix forw_ptr crc checkMichael Niedermayer2007-08-09
| | | | | | | not really beautiful but i did not find a nice solution note, untested Originally committed as revision 10037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of printfMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move lsb2full to common fileMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move syncpoint timestamp resetting code to a common fileMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check forw_ptr CRCMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make StreamContext.time_base a pointerMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).Panagiotis Issaris2007-07-19
| | | | Originally committed as revision 9759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nutdec: don't use deprecated codec_get_{bmp,wav}_id()Måns Rullgård2007-07-08
| | | | Originally committed as revision 9528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license header consistency cosmeticsDiego Biurrun2007-07-05
| | | | Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new string functionsMåns Rullgård2007-06-23
| | | | | | based on patch by Reimar Döffinger Originally committed as revision 9401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix some printf format specifiersMåns Rullgård2007-06-16
| | | | Originally committed as revision 9334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused code + variable, fixes a warning.Diego Biurrun2007-04-24
| | | | 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-08
| | | | | | | 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