summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* | brstm: fix number of samples for the last blockJames Almer2012-12-16
| | | | | | | | Signed-off-by: James Almer <jamrial@gmail.com>
* | thp: set durationPiotr Bandurski2012-12-16
| |
* | wrap_timestamp: remove unneeded checkMichael Niedermayer2012-12-16
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavf: fix integer overflowsMichael Niedermayer2012-12-16
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavf: Provide a monotonic timestamp to the outside worldHarald Axmann2012-12-15
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavf/segment: provide more debug feedback when a new segment startsStefano Sabatini2012-12-14
| |
* | lavf/segment: add missing flags to segmenter option constantsStefano Sabatini2012-12-14
| |
* | westwood_vqa: fix null pointer dereferenceMichael Niedermayer2012-12-14
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | sauce: test filetype correctly for datatype 5 (binary text)Peter Ross2012-12-14
| |
* | flvenc: don't write random data if seek failsBjörn Axelsson2012-12-13
| | | | | | | | | | | | | | | | The FLV muxer tries to update the header in write_trailer, which is impossible if writing to a pipe or network stream. Don't write header data if seek to header fails. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavf/segment: add segment_start_number optionStefano Sabatini2012-12-13
| | | | | | | | Consistent with the image2 muxer.
* | lavf/segment: add function set_segment_filename()Stefano Sabatini2012-12-13
| | | | | | | | Factorize.
* | mpegts: check av_new_stream() return value.Michael Niedermayer2012-12-13
| | | | | | | | | | Fixes CID703728 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavf/matroskaenc: check for overflow in display width.Nicolas George2012-12-13
| |
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-12-13
|\| | | | | | | | | | | | | | | | | | | | | | | * qatar/master: aacdec: Fix an off-by-one overwrite when switching to LTP profile from MAIN. x86inc: fix stack alignment on win64 rtpproto: Remove unused defines Conflicts: libavcodec/aacdec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * rtpproto: Remove unused definesMartin Storsjö2012-12-12
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge commit 'f3f60dcbdd6ff2201526a603fe28293975bb7667'Michael Niedermayer2012-12-13
|\| | | | | | | | | | | | | | | | | * commit 'f3f60dcbdd6ff2201526a603fe28293975bb7667': rtpdec_mpeg4: Cosmetic cleanup rtpdec: Cosmetic cleanup of the header rtpdec: Get rid of a useless _s suffix on a struct name Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * rtpdec_mpeg4: Cosmetic cleanupMartin Storsjö2012-12-12
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
| * rtpdec: Cosmetic cleanup of the headerMartin Storsjö2012-12-12
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
| * rtpdec: Get rid of a useless _s suffix on a struct nameMartin Storsjö2012-12-12
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge commit '7941159df6aad2d219e2a7184489be7a735dd944'Michael Niedermayer2012-12-13
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '7941159df6aad2d219e2a7184489be7a735dd944': rtpdec/enc: Remove outdated/useless/misleading comments rtpdec: Improve some comments rtpdec: Remove unused context variables rtpdec: Limit writing to the buffer size svq1: Fix building with -DDEBUG svq1: return meaningful error codes. Conflicts: libavcodec/svq1dec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * rtpdec/enc: Remove outdated/useless/misleading commentsMartin Storsjö2012-12-12
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
| * rtpdec: Improve some commentsMartin Storsjö2012-12-12
| | | | | | | | | | | | | | The previous comment about the buffer was wildly inaccurate and misleading. Signed-off-by: Martin Storsjö <martin@martin.st>
| * rtpdec: Remove unused context variablesMartin Storsjö2012-12-12
| | | | | | | | | | | | | | These stem from back when both the rtp muxer and rtp depacketizing shared the same struct. Signed-off-by: Martin Storsjö <martin@martin.st>
| * rtpdec: Limit writing to the buffer sizeMartin Storsjö2012-12-12
| | | | | | | | | | | | This fixes potential buffer overwrites. Signed-off-by: Martin Storsjö <martin@martin.st>
* | lavf/matroskaenc: use integers to for display size.Nicolas George2012-12-12
| | | | | | | | | | Avoid rounding differences between x86_32 and x86_64. Fix trac ticket #1997.
* | read_gab2_sub: fix null pointer dereferenceMichael Niedermayer2012-12-12
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavf/concatdec: avoid leaking URLs.Nicolas George2012-12-12
| | | | | | | | | | Use av_realloc instead of av_realloc_f to keep the original array in case of failure: it is freed in full by the fail label.
* | mxf_set_audio_pts: fix division by 0Michael Niedermayer2012-12-12
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | oggspeexparse: fix array overreadMichael Niedermayer2012-12-12
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit 'd04c17c91363a6b15d1ac2d79c817f3d5e2998b3'Michael Niedermayer2012-12-12
|\| | | | | | | | | | | | | * commit 'd04c17c91363a6b15d1ac2d79c817f3d5e2998b3': swfdec: cosmetics: fix indentation Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * swfdec: cosmetics: fix indentationJustin Ruggles2012-12-11
| |
* | swfdec: print warning when len is clipedMichael Niedermayer2012-12-12
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit 'e70c5b034c4787377e82cab2d5565486baec0c2a'Michael Niedermayer2012-12-12
|\| | | | | | | | | | | | | | | | | | | | | * commit 'e70c5b034c4787377e82cab2d5565486baec0c2a': swfdec: do better validation of tag length Make LOCAL_ALIGNED syntactically similar on all systems Conflicts: libavformat/swfdec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * swfdec: do better validation of tag lengthJustin Ruggles2012-12-11
| | | | | | | | | | | | | | Avoids trying to read a packet with 0 or negative size. Avoids a potential infinite loop due to seeking backwards. Partially based on a patch by Michael Niedermayer.
* | cafdec: Check duration before use.Michael Niedermayer2012-12-12
| | | | | | | | | | | | | | Fix division by 0 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | bfi: fix division by 0Michael Niedermayer2012-12-12
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | mxfdec: drop unneeded extradata paddingMichael Niedermayer2012-12-11
| | | | | | | | | | Found-by: Tomas Härdin <tomas.hardin@codemill.se> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | mxfdec: fix leak of extradataMichael Niedermayer2012-12-11
| | | | | | | | | | Reviewed-by: Tomas Härdin <tomas.hardin@codemill.se> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | iff demuxer: support RGB8 and RGBNPeter Ross2012-12-11
| |
* | lavf: remove unneeded pb checkMichael Niedermayer2012-12-11
| | | | | | | | | | Fixes CID747727 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | astenc: fix assignment vs compareMichael Niedermayer2012-12-11
| | | | | | | | | | Fixes CID747736 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavf: fix memleakMichael Niedermayer2012-12-11
| | | | | | | | | | Fixes CID747738 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavf/segment: add reset_timestamps optionStefano Sabatini2012-12-11
| | | | | | | | | | | | | | The new options reset the timestamps at each new segment, so that the generated segments will have timestamps starting close to 0. It is meant to address trac ticket #1425.
* | http: dont null check p, its unneededMichael Niedermayer2012-12-11
| | | | | | | | | | Fixes CID747740 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | swfdec: check lens validityMichael Niedermayer2012-12-10
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-12-10
|\| | | | | | | | | | | | | | | | | * qatar/master: rtpdec: Remove an outdated todo comment rtpdec: Rename a static variable to normal naming conventions sh4: dsputil: remove duplicate of ff_gmc_c() Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * rtpdec: Remove an outdated todo commentMartin Storsjö2012-12-10
| | | | | | | | | | | | | | | | | | | | | | | | This comment was added in e309128f, in 2002, and has been brought along since then more or less unmodified. The first point of the todo was implemented in dbf30963 in 2006, the second one is not relevant to rtpdec.c (brought along from rtp.c in 8eb793c4 in 2008) but would be more relevant to the rtp muxer, although it isn't a good idea anyway. Signed-off-by: Martin Storsjö <martin@martin.st>
| * rtpdec: Rename a static variable to normal naming conventionsMartin Storsjö2012-12-10
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* | mov: parse @PRM and @PRQ metadata tagsPeter Ross2012-12-10
| | | | | | | | | | These tags describe the product and quicktime library version respectively. Originate from Adobe Premier, but some other products use them.