summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Split developer documentation off from general documentation.Diego Biurrun2009-06-24
| | | | Originally committed as revision 19269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rewrite doxy for av_strtod().Stefano Sabatini2009-06-24
| | | | Originally committed as revision 19268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flvdec: Build a Speex header during FLV demuxing using required andJustin Ruggles2009-06-24
| | | | | | | default values. This is needed because FLV files with Speex do not contain a Speex header, which is necessary for stream copy. Originally committed as revision 19267 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve wording: s/reseted/resetHaruhiko Yamagata2009-06-24
| | | | | | Patch by Haruhiko Yamagata, h D yamagata A nifty D com Originally committed as revision 19266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after last patch.Reimar Döffinger2009-06-24
| | | | Originally committed as revision 19265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov demuxer: Track the current position also for streams that have ↵Reimar Döffinger2009-06-24
| | | | | | | | | AVDISCARD_ALL set. This allows for seamless switching of e.g. audio streams, with the previous code playback started always from the beginning when removing AVDISCARD_ALL. Originally committed as revision 19264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov_read_packet: extract code that searches for the stream/sample to demux nextReimar Döffinger2009-06-24
| | | | | | into a separate function. Originally committed as revision 19263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov_read_packet: if dv_get_packet fails, return exactly its error valueReimar Döffinger2009-06-24
| | | | | | | instead of always -1 (makes no real difference currently since dv_get_packet always returns -1 so far). Originally committed as revision 19262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov_read_packet remember the AVStream we want to demux next instead of theReimar Döffinger2009-06-24
| | | | | | | MOVStreamContext. We need the AVStream anyway and it is easier to get the MOVStreamContext from the AVStream than the other way around. Originally committed as revision 19261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* LSF (Line Spectral Frequencies) decoding routine.Vladimir Voroshilov2009-06-24
| | | | Originally committed as revision 19260 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check stream existence before assignment, fix #1222Baptiste Coudurier2009-06-24
| | | | Originally committed as revision 19259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix H.264 picture reordering, 2nd try.Haruhiko Yamagata2009-06-23
| | | | | | | | First, reverted one was r19239. Patch by Haruhiko Yamagata, h D yamagata A nifty D com Originally committed as revision 19258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make documentation better match the code. Now AVCodecContext.sample_fmtBrian Crowell2009-06-23
| | | | | | | | is used. Patch by Brian Crowell <($firstname)@fluggo.com> Originally committed as revision 19257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for "chunked" data blocks. Patch by Peter Holik (peter holik at).Peter Holik2009-06-23
| | | | Originally committed as revision 19256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Edge emulation should be used in B-frame MC in mspel mode withKostya Shishkov2009-06-23
| | | | | | mv_x < 1 or mv_y < 1. Originally committed as revision 19255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_ prefixes to exported symbols in libavformat/riff.h.Daniel Verkamp2009-06-22
| | | | | | patch by Daniel Verkamp, aniel drv nu Originally committed as revision 19254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently rename variables denoting regression reference file(s)Stefano Sabatini2009-06-22
| | | | | | | | using the _REFFILE(S) postfix, and regression result file(s) using the _RESFILE(S) postfix. Improve legibility. Originally committed as revision 19253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export av_strtod() to eval.h.Stefano Sabatini2009-06-22
| | | | Originally committed as revision 19252 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document making AVFormatContext.packet_size unsigned API change.Ronald S. Bultje2009-06-22
| | | | Originally committed as revision 19251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change packet_size from signed to unsigned, since it never has a negativeRonald S. Bultje2009-06-22
| | | | | | | | | value. Currently, this is only used in qcp.c and mpegenc.c, and they are practically unaffected by this change. See "[PATCH] make packet_size in AVFormatContext unsigned" thread on ML. Originally committed as revision 19250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: rename 'name' av_strtod() param to 'numstr'. The new nameStefano Sabatini2009-06-21
| | | | | | is more expressive. Originally committed as revision 19249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggenc: Change error log text. An error here does not necessarily meanJustin Ruggles2009-06-21
| | | | | | corrupted data. Originally committed as revision 19248 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggenc: return error value from ogg_build_flac_headers()Justin Ruggles2009-06-21
| | | | Originally committed as revision 19247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: spacing and commentsJustin Ruggles2009-06-21
| | | | Originally committed as revision 19246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggenc: check for failed av_mallocz()Justin Ruggles2009-06-21
| | | | Originally committed as revision 19245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fetch timestamp for the first frame of field only if frame_offset andBaptiste Coudurier2009-06-21
| | | | | | | | next_frame_offset are not set, because second field has next frame offset set but not frame_offset, otherwise this wrongly fetch timestamp for the second field. Originally committed as revision 19244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clarify encoder and decoder opening error messagesBaptiste Coudurier2009-06-21
| | | | Originally committed as revision 19243 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert unintended hunk of r19241.Carl Eugen Hoyos2009-06-20
| | | | Originally committed as revision 19242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r19239: It broke four conformance tests.Carl Eugen Hoyos2009-06-20
| | | | Originally committed as revision 19241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convertion of LSF values to coefficients of linear prediction filterVladimir Voroshilov2009-06-20
| | | | Originally committed as revision 19240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix H.264 picture reordering.Haruhiko Yamagata2009-06-20
| | | | | | Patch by Haruhiko Yamagata, h D yamagata A nifty D com Originally committed as revision 19239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation after last commit.Carl Eugen Hoyos2009-06-20
| | | | Originally committed as revision 19238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix yamaha adpcm stereo (issue 1117).Yoshihisa Uchida2009-06-20
| | | | | | Patch by Yoshihisa Uchida, yoshihisa D uchida A gmail Originally committed as revision 19237 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix onMetaData property count in flv files (issue 1206).Yoshihisa Uchida2009-06-20
| | | | | | Patch by Yoshihisa Uchida, yoshihisa D uchida A gmail Originally committed as revision 19236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make remaining run level decode comments doxygen commentsSascha Sommer2009-06-20
| | | | Originally committed as revision 19235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify run level decoding:Sascha Sommer2009-06-20
| | | | | | | | | | - remove unneeded vlc code < 0 check - reorder vlc code handling so that the unlikely escape decoding part comes last - move overflow check out of the decode loop - branchless sign conversion Originally committed as revision 19234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation after the previous commitSascha Sommer2009-06-20
| | | | Originally committed as revision 19233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for escape coded wmapro run level coefficientsSascha Sommer2009-06-20
| | | | Originally committed as revision 19232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce WMACoef typedef for decoded coefficientsSascha Sommer2009-06-20
| | | | | | | and change default type to float so that the run level decoding functionality can be shared with wmapro Originally committed as revision 19231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print meaningful error messages when url_fopen fails.Jai Menon2009-06-20
| | | | Originally committed as revision 19230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add 0-termination in table, patch by Wolfram Gloger, wmglo at dent dot med ↵Wolfram Gloger2009-06-20
| | | | | | dot uni-muenchen dot de Originally committed as revision 19229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix dvcprohd 720p channels 3 and 4 audio timestamps, patch by Brian Brice, ↵Brian Brice2009-06-19
| | | | | | bbrice at gmail dot com Originally committed as revision 19228 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable network support if required headers cannot be found.Michael Kostylev2009-06-19
| | | | | | patch by Michael Kostylev, michael.kostylev gmail com Originally committed as revision 19227 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support varying frame sizes in a single file.Eric Buehl2009-06-19
| | | | | | patch by Eric Buehl, eric.buehl gmail com Originally committed as revision 19226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for id3 tag parsing for ADTS AAC streamsPatrick Dehne2009-06-19
| | | | | | Patch by Patrick Dehne ( patrick mysonicweb com ) Originally committed as revision 19225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move id3v1/id3v2 handling code from mp3.c to id3v[12].c.Patrick Dehne2009-06-19
| | | | | | patch by Patrick Dehne, patrick mysonicweb com Originally committed as revision 19224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for muxing XSUB subtitles to AVI muxer.Reimar Döffinger2009-06-19
| | | | Originally committed as revision 19223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for encoding XSUB subtitles. Muxing support is still missing.Reimar Döffinger2009-06-19
| | | | | | Based on code by DivX, Inc., heavily changed by Björn Axelsson [gecko acc.umu.se] and me. Originally committed as revision 19222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add pts field to AVSubtitle, for use by future XSUB encoder (and XSUB decoderReimar Döffinger2009-06-19
| | | | | | should use it, too). Originally committed as revision 19221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename tests/ffmpeg.regression.ref to tests/vsynth.regression.ref,Stefano Sabatini2009-06-18
| | | | | | since that is the name of the corresponding test. Originally committed as revision 19220 to svn://svn.ffmpeg.org/ffmpeg/trunk