summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* move DEBUG_SEEK definition before get_pts since func uses itBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move get_pts function to avoid useless declarationBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unneeded includeBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split ffm de/muxerBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reenable test, data is available in this caseBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* parse audio in ogm demuxer.Justin Ruggles2008-05-26
| | | | | | fixes issue165. Originally committed as revision 13407 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ac3 in avi work better.Michael Niedermayer2008-05-26
| | | | | | fixes issue355. Originally committed as revision 13406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that one can store X bytes in a fifo of size X.Michael Niedermayer2008-05-25
| | | | | | Fixed issue417. Originally committed as revision 13405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_fifo*_read() ignore the available amount of data.Michael Niedermayer2008-05-25
| | | | | | | | | | | | This is more efficient as in practice the check is redundant most of the time. Callers which do not know if enough data is available have to check it with av_fifo_size(). Doing the check in *read() means the caller has no choice to skip the check when its known to be redundant. Also the return value was never documented in a public header so changing it should not break the API. Besides this fixes the case where read() failed on a 100% full fifo. Originally committed as revision 13404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set correct duration when using b framesBaptiste Coudurier2008-05-25
| | | | Originally committed as revision 13372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compute the end of all chapters when end is not specified in the containerAurelien Jacobs2008-05-24
| | | | Originally committed as revision 13363 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationAurelien Jacobs2008-05-24
| | | | Originally committed as revision 13280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless title checkAurelien Jacobs2008-05-24
| | | | Originally committed as revision 13279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify, remove useless varsBaptiste Coudurier2008-05-24
| | | | Originally committed as revision 13270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add new h264 and aac flv idsBaptiste Coudurier2008-05-23
| | | | Originally committed as revision 13269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* in flv this field is dts finallyBaptiste Coudurier2008-05-23
| | | | Originally committed as revision 13268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flv use 32 bit ptsBaptiste Coudurier2008-05-23
| | | | Originally committed as revision 13267 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
* Document pts/dts.Michael Niedermayer2008-05-23
| | | | Originally committed as revision 13265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn user about invalid timestamps.Michael Niedermayer2008-05-23
| | | | Originally committed as revision 13264 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
* Make ff_new_chapter() return AVChapter instead of int so its consistant withMichael Niedermayer2008-05-23
| | | | | | | av_new_program() and its simpler to set other fields in AVChapter which arent set by ff_new_chapter(). Originally committed as revision 13262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nb_chapters should be unsignedMichael Niedermayer2008-05-23
| | | | Originally committed as revision 13261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* s/num_chapters/nb_chapters/ all other similar variables are called nb_*.Michael Niedermayer2008-05-23
| | | | Originally committed as revision 13260 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vertical alignMichael Niedermayer2008-05-23
| | | | Originally committed as revision 13259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-05-23
| | | | Originally committed as revision 13258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless title checkMichael Niedermayer2008-05-23
| | | | Originally committed as revision 13257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-05-23
| | | | Originally committed as revision 13256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add id to AVChapter, untested (where do i find matroska files with chapters?).Michael Niedermayer2008-05-23
| | | | Originally committed as revision 13255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clarify start/end timebaseMichael Niedermayer2008-05-23
| | | | Originally committed as revision 13254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* align commentsMichael Niedermayer2008-05-23
| | | | Originally committed as revision 13253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* chapter id and timebaseMichael Niedermayer2008-05-23
| | | | Originally committed as revision 13252 to svn://svn.ffmpeg.org/ffmpeg/trunk
* don't set a dummy chapter title when title is unknownAurelien Jacobs2008-05-23
| | | | Originally committed as revision 13249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationAurelien Jacobs2008-05-23
| | | | Originally committed as revision 13248 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allows adding chapters with NULL titleAurelien Jacobs2008-05-23
| | | | Originally committed as revision 13247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: allows inserting chapters with unspecified endAurelien Jacobs2008-05-22
| | | | Originally committed as revision 13242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* demux chapters out of matroskaAnton Khirnov2008-05-22
| | | | | | patch by Anton Khirnov wyskas _at_ gmail _dot_ com Originally committed as revision 13241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for chapters definition in lavfAnton Khirnov2008-05-22
| | | | | | patch by Anton Khirnov wyskas _at_ gmail _dot_ com Originally committed as revision 13240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* free moov and cmov when error occurs, fix memleak, patch by Albert Astals ↵Albert Astals Cid2008-05-22
| | | | | | Cid, aastals at tv-wan dot es Originally committed as revision 13237 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless varBaptiste Coudurier2008-05-21
| | | | Originally committed as revision 13230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, fix compilationBaptiste Coudurier2008-05-21
| | | | Originally committed as revision 13229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use duration from pktBaptiste Coudurier2008-05-21
| | | | Originally committed as revision 13228 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyBaptiste Coudurier2008-05-21
| | | | Originally committed as revision 13227 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyBaptiste Coudurier2008-05-21
| | | | Originally committed as revision 13226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check pkt stream index before returning packet, prevent segfaultBaptiste Coudurier2008-05-21
| | | | Originally committed as revision 13224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not loop endlessly if converting into dv with timestamps Jan 1st notCarl Eugen Hoyos2008-05-21
| | | | | | | | | immediately following a lapyear. Patch by babupillai. Fixes issue 443. Originally committed as revision 13207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support dvd pcm 20/24 bits, patch by Lars Täuber, lars.taeuber gmx netLars Täuber2008-05-21
| | | | Originally committed as revision 13206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless/obsolete commentsBaptiste Coudurier2008-05-20
| | | | Originally committed as revision 13205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless close functionBaptiste Coudurier2008-05-20
| | | | Originally committed as revision 13204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split swf de/muxerBaptiste Coudurier2008-05-20
| | | | Originally committed as revision 13203 to svn://svn.ffmpeg.org/ffmpeg/trunk