aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* retrieve flags from mxf_parse_mpeg2_frame using a paramBaptiste Coudurier2009-02-101-8/+9
| | | | Originally committed as revision 17123 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, edit unit offset is after klv fillBaptiste Coudurier2009-02-101-2/+1
| | | | Originally committed as revision 17122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, associate mxf_write_klv_fill to aligned elementsBaptiste Coudurier2009-02-101-7/+2
| | | | Originally committed as revision 17121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write component depth and horizontal subsampling best effort local tagsBaptiste Coudurier2009-02-101-1/+12
| | | | Originally committed as revision 17120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix header byte countBaptiste Coudurier2009-02-101-1/+2
| | | | Originally committed as revision 17119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move up mxf_write_klv_fill and align index, rip and primer packBaptiste Coudurier2009-02-101-16/+23
| | | | Originally committed as revision 17118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix primer pack local tags ulsBaptiste Coudurier2009-02-101-4/+4
| | | | Originally committed as revision 17117 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly set multi track operational patternBaptiste Coudurier2009-02-101-2/+15
| | | | Originally committed as revision 17116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix compilation with DEBUG defined, field does not exist anymoreBaptiste Coudurier2009-02-101-1/+1
| | | | Originally committed as revision 17115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary emms Assembler instructions.Diego Biurrun2009-02-101-9/+0
| | | | Originally committed as revision 28518 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use AV_GCC_VERSION_AT_LEAST instead of complicated __GNUC__ version check.Diego Biurrun2009-02-101-1/+1
| | | | Originally committed as revision 17114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove now useless av_set_program_name() functionAurelien Jacobs2009-02-102-12/+0
| | | | Originally committed as revision 17113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new metadata API in mpegts demuxerAurelien Jacobs2009-02-101-3/+5
| | | | Originally committed as revision 17112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document coeff and length fields in SwsVector.Stefano Sabatini2009-02-091-2/+2
| | | | Originally committed as revision 28512 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* move vp6_filter_diag4() to a new vp6dsp.c file and use it throught dsputilAurelien Jacobs2009-02-095-37/+73
| | | | Originally committed as revision 17111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace snprintf() with av_strlcpy().Patrik2009-02-091-1/+1
| | | | | | | | | | Fixes the following warning on some systems: audioconvert.c:131: warning: format not a string literal and no format arguments Patch by Patrik patrik A yes D nu Originally committed as revision 17110 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add SEI recovery point frame counter to H264Context and use it whenIvan Schreter2009-02-092-1/+28
| | | | | | | | setting key_frame. Patch by Ivan Schreter schreter A gmx D net Originally committed as revision 17109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp56: alpha_offset is uninitialized on purposeAurelien Jacobs2009-02-091-1/+1
| | | | Originally committed as revision 17108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libvorbis: Use 0-10 range for audio quality.Nicolas George2009-02-091-1/+1
| | | | | | Patch by Nicolas George (nicolas george normalesup org) Originally committed as revision 17107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix: libavcodec/msmpeg4.c:1612: warning: ‘dc_pred_dir’ may be used ↵Michael Niedermayer2009-02-091-1/+1
| | | | | | uninitialized in this function Originally committed as revision 17106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_flatten to make the similarly named attribute available.Michael Niedermayer2009-02-091-0/+8
| | | | Originally committed as revision 17105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_uninit() to suppress false uninitialized warnings from gcc without ↵Michael Niedermayer2009-02-091-0/+8
| | | | | | deoptimizing code. Originally committed as revision 17104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename ff_audio_interleave to ff_audio_rechunk_interleaveBaptiste Coudurier2009-02-094-4/+4
| | | | Originally committed as revision 17103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert #undefining system functions, it is not necessary.Diego Biurrun2009-02-091-7/+0
| | | | Originally committed as revision 28502 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Try to clarify doxy of avformat_seek_file().Michael Niedermayer2009-02-091-1/+1
| | | | Originally committed as revision 17102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for duplicate const/static/inline.Michael Niedermayer2009-02-091-0/+1
| | | | Originally committed as revision 17101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add config.h #include for ARCH_X86 definition.Diego Biurrun2009-02-091-0/+1
| | | | Originally committed as revision 28500 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add #undefs to reenable system functions that are normally forbidden in otherDiego Biurrun2009-02-091-0/+7
| | | | | | parts of FFmpeg but OK in this test program. Fixes the build. Originally committed as revision 28499 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Drop DECLARE_ALIGNED from extern declarations. It creates trouble whenDiego Biurrun2009-02-091-2/+2
| | | | | | swscale_internal.h is #included without HAVE_AV_CONFIG_H defined. Originally committed as revision 28498 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Try to doxyfy av_resample_init(). I hope I did not misremember anything as IMichael Niedermayer2009-02-091-0/+5
| | | | | | just briefly checked the source. Originally committed as revision 17100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move doxy for public resample2 functions to the public header.Michael Niedermayer2009-02-092-25/+29
| | | | Originally committed as revision 17099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefix visible YUV2RGB functions with sws_Kostya Shishkov2009-02-096-16/+16
| | | | Originally committed as revision 28496 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Give better name to Inverse_Table_6_9Kostya Shishkov2009-02-092-4/+4
| | | | Originally committed as revision 28495 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove svn:executable property from source file.Diego Biurrun2009-02-091-0/+0
| | | | Originally committed as revision 17098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove file name from file headers.Diego Biurrun2009-02-091-1/+1
| | | | | | It provides no useful information and breaks on renames. Originally committed as revision 28494 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove file name from file headers.Diego Biurrun2009-02-095-6/+2
| | | | | | It provides no useful information and breaks on renames. Originally committed as revision 17097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no more needed fields in GIFContext, patch by Daniel Verkamp, daniel ↵Daniel Verkamp2009-02-091-2/+0
| | | | | | at drv dot nu Originally committed as revision 17096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove dead rgb24 code, gif encoder now directly takes palette, patch by ↵Daniel Verkamp2009-02-091-76/+5
| | | | | | Daniel Verkamp, daniel at drv dot nu Originally committed as revision 17095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove dead netscape loop header code in gif encoder, patch by Daniel ↵Daniel Verkamp2009-02-091-38/+2
| | | | | | Verkamp, daniel at drv dot nu Originally committed as revision 17094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check that there are subtitle rects to encode in avcodec_encode_subtitle()Björn Axelsson2009-02-091-0/+2
| | | | | | Patch by Björn Axelsson ( gecko A acc D umu D se ) Originally committed as revision 17093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check that start_display_time is 0 in avcodec_encode_subtitle()Björn Axelsson2009-02-091-0/+4
| | | | | | Patch by Björn Axelsson ( gecko A acc D umu D se ) Originally committed as revision 17092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase the number of packets required to identify as MPEG PES to keep fromAlex Converse2009-02-091-1/+1
| | | | | | identifying MP3 files with padding or garbage at the beginning. Originally committed as revision 17091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP3: Do not ignore error from read_huffman_tree().Alex Converse2009-02-091-5/+10
| | | | Originally committed as revision 17090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ffplay subtitle stream selection command-line parameterBjörn Axelsson2009-02-091-1/+13
| | | | | | Patch by Björn Axelsson ( gecko A acc D umu D se ) Originally committed as revision 17089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix blend_subrect for even-width subrects positioned on odd columnsBjörn Axelsson2009-02-091-1/+1
| | | | | | Patch by Björn Axelsson ( gecko A acc D umu D se ) Originally committed as revision 17088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix timestamp parsing in XSUB decoder.Björn Axelsson2009-02-091-1/+1
| | | | | | Patch by Björn Axelsson gecko A acc D umu D se Originally committed as revision 17087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no more needed comment, declaration is in internal headerBaptiste Coudurier2009-02-091-3/+0
| | | | Originally committed as revision 17086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: typo/grammar fixes in doxygen and other commentsDiego Biurrun2009-02-081-6/+6
| | | | Originally committed as revision 17085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix a few typos and use a consistent codec long name.Diego Biurrun2009-02-081-5/+5
| | | | Originally committed as revision 17084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variables.Diego Biurrun2009-02-081-1/+0
| | | | Originally committed as revision 17083 to svn://svn.ffmpeg.org/ffmpeg/trunk