summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Generic metadata API.Michael Niedermayer2009-01-04
| | | | | | | | avi is updated as example. No version bump, the API still might change slightly ... No update to ffmpeg.c as requested by aurel. Originally committed as revision 16424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: indentAurelien Jacobs2009-01-04
| | | | Originally committed as revision 16423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a termination conditionAurelien Jacobs2009-01-04
| | | | Originally committed as revision 16422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If we find a VBR tag at the beginning of the file don't attempt toYoav Steinberg2009-01-04
| | | | | | | parse it as a valid frame. patch by (Yoav Steinberg yoav out monfort in co in il) Originally committed as revision 16421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop the deprecated parse_image_size() and parse_frame_rate() functionsStefano Sabatini2009-01-04
| | | | | | at the next libavformat major version bump. Originally committed as revision 16420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use H264 MMX chroma functions to accelerate RV40 decoding.Mathieu Velten2009-01-04
| | | | | | Patch by Mathieu Velten (matmaul A gmail) Originally committed as revision 16419 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump LIBAVCODEC_VERSION_MINOR due to AVSubtitle changes.Michael Niedermayer2009-01-03
| | | | Originally committed as revision 16418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add type, text and ass to AVSubtitleRect.Michael Niedermayer2009-01-03
| | | | Originally committed as revision 16417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace AVSubtitleRect.rgba_palette and bitmap by AVPicture.Michael Niedermayer2009-01-03
| | | | Originally committed as revision 16416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace some fixed width variable from AVSubtitle* by normal int.Michael Niedermayer2009-01-03
| | | | Originally committed as revision 16415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Forgot to update (I likely missed it due to its similar name to dvb...)Michael Niedermayer2009-01-03
| | | | Originally committed as revision 16414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Future doxy for a few fields of AVSubtitleRect.Michael Niedermayer2009-01-03
| | | | Originally committed as revision 16413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change AVSubtitle.rects to an array of pointers so ABI does not breakMichael Niedermayer2009-01-03
| | | | | | when the size of AVSubtitleRect changes. Originally committed as revision 16412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Display subtitles within the display area.Michael Niedermayer2009-01-03
| | | | | | | Fixes dvd-subtitle-problem.vob. (problem likely is that the video resolution is smaller than what the subtitles expect) Originally committed as revision 16411 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add enum AVSubtitleTypeMichael Niedermayer2009-01-03
| | | | Originally committed as revision 16410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add x264 SSE2 iDCT functions to H.264 decoder.Jason Garrett-Glaser2009-01-03
| | | | Originally committed as revision 16409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid POSIX-reserved _t namespace.Diego Biurrun2009-01-02
| | | | Originally committed as revision 16408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid POSIX-reserved _t namespace.Diego Biurrun2009-01-02
| | | | Originally committed as revision 16407 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump year number.Stefano Sabatini2009-01-02
| | | | Originally committed as revision 16406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: break line to make it not longer than 80 chars.Stefano Sabatini2009-01-02
| | | | Originally committed as revision 16405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l set AVPacket.size to the true size of the returned data instead ofMichael Niedermayer2008-12-31
| | | | | | | the (larger) allocated size. (prevents segfaults due to later failures from 900MB-sized packets, yes fuzzed file not a valid one) Originally committed as revision 16404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indention which was off by 1 space.Michael Niedermayer2008-12-31
| | | | Originally committed as revision 16403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace buffer by AVPacket and avoid a memcpy() for video when the numberMichael Niedermayer2008-12-31
| | | | | | | of allocated slices matches the actual. Audio still does a copy (marked with FIXME in the code so this is not missed). Originally committed as revision 16402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge videobuf and audiobuf.Michael Niedermayer2008-12-31
| | | | Originally committed as revision 16401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify the top of rm_assemble_video_frame().Michael Niedermayer2008-12-30
| | | | Originally committed as revision 16400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a few error checks to rm_assemble_video_frame()Michael Niedermayer2008-12-30
| | | | Originally committed as revision 16399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* All non zero returns of rm_assemble_video_frame() are errors, check thingsMichael Niedermayer2008-12-30
| | | | | | accordingly. Originally committed as revision 16398 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence two icc warnings:Carl Eugen Hoyos2008-12-30
| | | | | | | | | | | | | | /home/melanson/fate/source/ffserver.c(4349): warning #188: enumerated type mixed with another type audio_enc.codec_id = audio_id; ^ /home/melanson/fate/source/ffserver.c(4354): warning #188: enumerated type mixed with another type video_enc.codec_id = video_id; ^ Originally committed as revision 16397 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add my GnuPG fingerprint.Benoit Fouet2008-12-30
| | | | Originally committed as revision 16396 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: work around linker bug with movw/movt relocations in shared libsMåns Rullgård2008-12-30
| | | | Originally committed as revision 16395 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make shared/static full CONFIG optionsMåns Rullgård2008-12-30
| | | | Originally committed as revision 16394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: check for ARMv6T2 supportMåns Rullgård2008-12-30
| | | | Originally committed as revision 16393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: rename coefficient table in NEON IDCTMåns Rullgård2008-12-30
| | | | Originally committed as revision 16392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated dot product code. Use dsputil'sAurelien Jacobs2008-12-29
| | | | | | scalarproduct instead. Patch by Aurelien Jacobs. Originally committed as revision 16391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* My gpg key fingerprint.Reimar Döffinger2008-12-29
| | | | Originally committed as revision 16390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS. Write my full name instead.Reynaldo H. Verdejo Pinochet2008-12-29
| | | | Originally committed as revision 16389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add myself as qcelp* maintainer.Reynaldo H. Verdejo Pinochet2008-12-29
| | | | Originally committed as revision 16388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add my key fingerprint to the list.Reynaldo H. Verdejo Pinochet2008-12-29
| | | | Originally committed as revision 16387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: accept $TMP as location for temporary filesMåns Rullgård2008-12-29
| | | | Originally committed as revision 16386 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify TMPDIR settingMåns Rullgård2008-12-29
| | | | Originally committed as revision 16385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typos.Stefano Sabatini2008-12-29
| | | | Originally committed as revision 16384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify that the list of gpg fingerprints is not just for maintainers.Michael Niedermayer2008-12-29
| | | | Originally committed as revision 16383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add spaces into the gpg fingerprint for better readability.Michael Niedermayer2008-12-29
| | | | Originally committed as revision 16382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* It turned out that RV30 uses motion vectors for forward motion B-frameKostya Shishkov2008-12-29
| | | | | | | macroblocks to predict motion vectors for backward motion B-frame macroblocks and vice versa. Originally committed as revision 16381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Explain the lack of +3/7Michael Niedermayer2008-12-28
| | | | Originally committed as revision 16380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_free() -> av_freep(), patch by Reimar Doffinger, see discussion inReimar Döffinger2008-12-28
| | | | | | "rmdec.c: double free" thread on mailinglist. Originally committed as revision 16379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix double free which happens for playback of .rm files after r16365. SeeRonald S. Bultje2008-12-28
| | | | | | | "rmdec.c: double free" discussion on mailinglist, patch with suggestions from Reimar Doffinger. Originally committed as revision 16378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a list of GnuPG fingerprints.Michael Niedermayer2008-12-28
| | | | | | | This is not as good as personal keysigning (ala debian) but better than nothing. Originally committed as revision 16377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r16375: It broke aac decoding.Carl Eugen Hoyos2008-12-28
| | | | Originally committed as revision 16376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce number of warnings when compiling with icc by two.Carl Eugen Hoyos2008-12-28
| | | | Originally committed as revision 16375 to svn://svn.ffmpeg.org/ffmpeg/trunk