Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-05-17set avg frame rate in mkv demuxerBaptiste Coudurier
Originally committed as revision 23152 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-16Add NV12 and NV21 AVI tags.Stefano Sabatini
Both are listed in fourcc.org. Originally committed as revision 23145 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-15Change MAX_READ_SIZE message during av_find_stream_info to DEBUG level.Baptiste Coudurier
It is not harmful and it scares too many users. Originally committed as revision 23139 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-13Reindent after r23112.Sebastian Vater
Patch by Sebastian Vater <cdgs basty googlemail com>. Originally committed as revision 23113 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-13Move handling of paletted data to the IFF demuxer. This allows futureSebastian Vater
handling of things such as masking/EHB/HAM for this type of data. Patch by Sebastian Vater <cdgs basty googlemail com>. Originally committed as revision 23112 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-13Doxygen av_codec_get_id() and av_codec_get_tag().Stefano Sabatini
Originally committed as revision 23102 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-10Add FourCC MJPG for CODEC_ID_JPEGLS.Francesco Lavra
Patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 23076 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-10Add support to the Y411 codec tag, corresponding to the rawvideo pixelStefano Sabatini
format uyyvyy411. The codec tag is referenced in fourcc.org. Originally committed as revision 23072 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-10Make the nut demuxer issue a more meaningful error message if itStefano Sabatini
cannot recognize the provided codec tag. Originally committed as revision 23071 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-10Replace usage of s->streams[0]->* with st->*, which is shorter.Sebastian Vater
Patch by Sebastian Vater <cdgs basty googlemail com>. Originally committed as revision 23069 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-07Favor chunk size over hitting the correct position after reading the chunk ↵Michael Niedermayer
size in asf. Fixes issue1923 Originally committed as revision 23040 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-05Parse IFF metadata.Sebastian Vater
Patch by Sebastian Vater, cdgs D basty A googlemail Originally committed as revision 23024 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-05movenc: Write QuickTime chaptersDavid Conrad
Originally committed as revision 23022 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-05movenc: Swap positions of mov_write_header and mov_write_packetDavid Conrad
Originally committed as revision 23021 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-05mov: Read nero chaptersDavid Conrad
Originally committed as revision 23020 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-04Do not use pkt->size when it is potentially uninitialized.Thierry Foucu
Patch by Thierry Foucu, tfoucu gmail Originally committed as revision 23017 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-01Fix off-by-one errors in description of score_max argument forReimar Döffinger
av_probe_input_format2 Originally committed as revision 23004 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-01Export av_probe_input_format2.Reimar Döffinger
Originally committed as revision 23002 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-29Add version to AVClass so we can add to and use fields of AVClass without ↵Michael Niedermayer
ABI issues. Originally committed as revision 22987 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Fix FourCC when remuxing VP6F, regression introduced in r22941.Anssi Hannula
Patch by Anssi Hannula, anssi D hannula A iki fi Originally committed as revision 22985 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Reindent after rr22977.Sebastian Vater
Patch by Sebastian Vater <cdgs.basty googlemail com>. Originally committed as revision 22978 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Make the IFF demuxer a little more standards-compliant, e.g. respect the sizeSebastian Vater
fields of common media header chunks (these can have different sizes depending on the type of IFF file you read), better handle odd sizes (like RIFF, every field is padded to word) and handle headerchunks after the BODY chunk. Patch by Sebastian Vater <cdgs.basty googlemail com>. Originally committed as revision 22977 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Make file_open() return the error code set in errno if open() fails,Stefano Sabatini
rather than always ENOENT. Originally committed as revision 22972 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-25Mark av_metadata_set() as deprecated, and use av_metadata_set2()Stefano Sabatini
in its place. av_metadata_set() is going to be dropped at the next major bump. Originally committed as revision 22961 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Disable LATM AAC in mpegts, this is not supported and produce too manyBaptiste Coudurier
bug reports. Also warn the user about it. Originally committed as revision 22947 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-22Fix off-by-1 error in the tag parsing code.Jai Menon
Originally committed as revision 22945 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-22Made FLIC demuxer capable of handling the videos from "X-COM: Terror from ↵Tomas Härdin
the Deep". Originally committed as revision 22942 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-22Support VP6F in Matroska.Christian Schmidt
Patch by Christian Schmidt, schmidt digadd de Originally committed as revision 22941 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-22Do not initialize res in url_fseek(), in the case !s->seek directlyStefano Sabatini
return AVERROR(EPIPE) rather than the pre-defined value of res. Slightly improve readability. Originally committed as revision 22939 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-21Fix MTV decoding on big-endian systemsVitor Sessak
Originally committed as revision 22929 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-21mov: Read QuickTime chaptersDavid Conrad
Originally committed as revision 22928 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-21movenc: Write nero chaptersDavid Conrad
Originally committed as revision 22927 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-21seems aac gets screwed up by the parser so disable itBaptiste Coudurier
Originally committed as revision 22926 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-21parse stream headers for audio streams in mkv, needed for frame sizeBaptiste Coudurier
Originally committed as revision 22925 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Reindent / reformat some code with broken indenting.Sebastian Vater
Patch by Sebastian Vater <cdgs DOT basty googlemail com>. Originally committed as revision 22924 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Change a %2 to &1. Patch by Sebastian Vater <cdgs DOT basty googlemail com>.Sebastian Vater
Originally committed as revision 22922 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Add missing internal.h #include for brktimegm(), fixes the warning:Diego Biurrun
libavformat/dvenc.c:82: warning: implicit declaration of function ‘brktimegm’ Originally committed as revision 22920 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Reset RTCP timestamps after seeking, add range start offset to the packets ↵Martin Storsjö
timestamps If these aren't reset, the timestamps make a huge jump when the next RTCP is received. Originally committed as revision 22918 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Revert svn rev 21857, readd first_rtcp_ntp_time in RTPDemuxContextMartin Storsjö
In order to sync RTP streams that get their initial RTCP timestamp at different times, propagate the NTP timestamp of the first RTCP packet to all other streams. This makes the timestamps of returned packets start at (near) zero instead of at any random offset. Originally committed as revision 22917 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Set AVFMT_NOTIMESTAMPS flag for mp3 muxerBaptiste Coudurier
Fixes issue 1026 Originally committed as revision 22916 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-19Make rtp protocol obey rfc3550Luca Barbato
Originally committed as revision 22906 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-18Implement librtmp seek support.Howard Chu
Implement flv_read_seek(), add a missing check on stream_index and fix timestamp rounding in rtmp_read_seek(). Also add the flv_read_seek2() function, which is not enabled but is useful as reference. To actually implement flv_read_seek2() correctly, there would need to be some corresponding av_url_read_fseek2() function to propagate the timestamps down to the ByteIOContext and URLContext. Patch by Howard Chu <hyc <at> highlandsun.com>. See the thread: Subject: [FFmpeg-devel] RTMP seek support Date: 2010-03-28 23:35:02 GMT Originally committed as revision 22904 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-18Prefer AVERROR(ENOSYS) over AVERROR_NOTSUPP.Stefano Sabatini
AVERROR_NOTSUPP is (maybe) going to be deprecated. Originally committed as revision 22903 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-18Make url_fsize() return AVERROR(ENOSYS) rather than AVERROR(EPIPE) ifStefano Sabatini
the seek operation is not defined in the ByteIOContext. Originally committed as revision 22902 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-18Make url_seek() return AVERROR(ENOSYS) rather than AVERROR(EPIPE) inStefano Sabatini
the case where the seek operation is not defined in the protocol handler. Originally committed as revision 22901 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-17Parse strf mov atomsMartin Storsjö
This fixes roundup issue 1270. Originally committed as revision 22894 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-16oggdec: Move warning about missing granule to the correct placeDavid Conrad
Originally committed as revision 22891 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-16oggdec: Fix duration calculation if the last page in a file has no granuleDavid Conrad
Originally committed as revision 22890 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-16oggdec: Remove write-only variableDavid Conrad
Originally committed as revision 22889 to svn://svn.ffmpeg.org/ffmpeg/trunk