summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* configure: fix PIC activation for x86_64 shared libsMåns Rullgård2009-01-11
| | | | Originally committed as revision 16563 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing inclusion of libavutil/intreadwrite.h, fix compilation whenStefano Sabatini2009-01-11
| | | | | | libtheora is enabled. Originally committed as revision 16562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the dimensions in tkhd for timed text tracksDavid Conrad2009-01-11
| | | | Originally committed as revision 16561 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass subarch instead of arch to YASMFLAGSRamiro Polla2009-01-11
| | | | Originally committed as revision 16560 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend 'checkheaders' target to architecture-specific subdirectories.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split arch variable into arch and subarch.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16558 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use 'enabled' function to simplify x86_64 check in the mingw32 section.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add truncf() replacement function.Michael Kostylev2009-01-11
| | | | | | Patch by Michael Kostylev <mik at it-1 dot ru> Originally committed as revision 16555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement the avfilter_default_draw_slice() handler and use it inStefano Sabatini2009-01-11
| | | | | | | avfilter_draw_slice() when the draw_slice callback is not defined in the input pad. Originally committed as revision 16554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use setmode() if it exists in <io.h>, and not based on O_BINARY.Ramiro Polla2009-01-11
| | | | Originally committed as revision 16553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use 'enabled' function instead of raw 'test' calls in arch checks.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add my GPG key.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationDiego Biurrun2009-01-11
| | | | Originally committed as revision 16550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix illegal identifier starting with an underscore.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ffindex set before mov_read_default so it can be used in functionsBaptiste Coudurier2009-01-11
| | | | Originally committed as revision 16548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add necessary, remove unnecessary #includes.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop unnecessary intreadwrite.h and bswap.h #includes.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing #include to fix 'make checkheaders'.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16545 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove useless quotes.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16544 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1l: better alphabetical orderDiego Biurrun2009-01-11
| | | | Originally committed as revision 16543 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing --disable-armv6t2 to help output.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16542 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase BUFFER_SIZE.Michael Niedermayer2009-01-11
| | | | | | Fixes issue719. Originally committed as revision 16541 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix indentionMichael Niedermayer2009-01-11
| | | | Originally committed as revision 16540 to svn://svn.ffmpeg.org/ffmpeg/trunk
* All negative values are errors not just -1.Michael Niedermayer2009-01-11
| | | | Originally committed as revision 16539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check the return of audio and video encoders.Michael Niedermayer2009-01-11
| | | | Originally committed as revision 16538 to svn://svn.ffmpeg.org/ffmpeg/trunk
* All negative returns are errors not just -1.Michael Niedermayer2009-01-11
| | | | Originally committed as revision 16537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 30l: when reading mb_offset in RV30 slice header its sizeKostya Shishkov2009-01-11
| | | | | | should be calculated from current frame dimensions Originally committed as revision 16536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticsBaptiste Coudurier2009-01-11
| | | | Originally committed as revision 16535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove warnings about uninitialized varsBaptiste Coudurier2009-01-11
| | | | Originally committed as revision 16534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add size that is needed for the wmapro codecBenjamin Larsson2009-01-11
| | | | Originally committed as revision 16533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticsBaptiste Coudurier2009-01-11
| | | | Originally committed as revision 16532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for muxing mov/mp4/3gp timed text streamsDavid Conrad2009-01-11
| | | | Originally committed as revision 16531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read extradata (justification, colors, fonts, etc) for mov/mp4 timed textDavid Conrad2009-01-11
| | | | Originally committed as revision 16530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RV30 decoder passes possible frame sizes in extradata and selectsKostya Shishkov2009-01-11
| | | | | | | | | an appropriate frame size from them in slice, make my decoder do that as well. This fixes issue 779 Originally committed as revision 16529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove comment, this is not relevant anymoreBaptiste Coudurier2009-01-11
| | | | Originally committed as revision 16528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2009-01-11
| | | | Originally committed as revision 16527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for negative dts value even if bitstream is already formated,Baptiste Coudurier2009-01-11
| | | | | | this fixes dts when stream copying. Originally committed as revision 16526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use coff as objformat for dos.Michael Kostylev2009-01-11
| | | | | | Patch by Michael Kostylev <mik at it-1 dot ru> Originally committed as revision 16525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove H264Context from vdpau_internal.h.Carl Eugen Hoyos2009-01-11
| | | | Originally committed as revision 16524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix warning: assignment makes pointer from integer without a castAurelien Jacobs2009-01-10
| | | | Originally committed as revision 16523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix OBJS-$(CONFIG_H264_VDPAU_DECODER).Carl Eugen Hoyos2009-01-10
| | | | Originally committed as revision 16522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Rename ff_vdpau_h264_add_data_chunk as ff_vdpau_add_data_chunk.Carl Eugen Hoyos2009-01-10
| | | | Originally committed as revision 16521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use only MpegEncContext in ff_vdpau_h264_add_data_chunk.Carl Eugen Hoyos2009-01-10
| | | | Originally committed as revision 16520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Break long line.Carl Eugen Hoyos2009-01-10
| | | | Originally committed as revision 16519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a separate 'testclean' rule to clean regression test data withoutFrancesco Cosoleto2009-01-10
| | | | | | | removing compiled files. patch by Francesco Cosoleto, cosoleto gmail com Originally committed as revision 16518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix capitalization and missing periods issues.Stefano Sabatini2009-01-10
| | | | Originally committed as revision 16517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the AVFormatContext options definition to a dedicated file,Stefano Sabatini2009-01-10
| | | | | | reduce the utils.c clutter. Originally committed as revision 16516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fill range_map* in VC1Context.Carl Eugen Hoyos2009-01-10
| | | | Originally committed as revision 16515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the AVCodecContext options definition to a dedicated file, reduceStefano Sabatini2009-01-10
| | | | | | the utils.c clutter. Originally committed as revision 16514 to svn://svn.ffmpeg.org/ffmpeg/trunk