summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
* aac chan config is 0 if bitstream contains program_config_elementBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support non interleaved avi with phantom streams.Michael Niedermayer2008-05-26
| | | | Originally committed as revision 13436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace printf by av_logBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_hex_dump_logBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use dprintfBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, add demuxer wordBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove useless dotBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return error if frame_offset is negative, prevent segfaultBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return error if len is negative, prevent segfaultBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13419 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ffserver specific functions up and only include unistd.h in this caseBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ffm_seek1 before get_pts function since func uses itBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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