summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* do not fail if audio is uncompressed and frame size is not set, just set itBaptiste Coudurier2008-09-05
| | | | Originally committed as revision 15216 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify bps code by using av_get_bits_per_sampleBaptiste Coudurier2008-09-05
| | | | Originally committed as revision 15215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify function selection codeBaptiste Coudurier2008-09-05
| | | | Originally committed as revision 27528 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* enable yuv422p to uyvy converterBaptiste Coudurier2008-09-05
| | | | Originally committed as revision 27527 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Cosmetics: indent after last commit and remove useless bracesVitor Sessak2008-09-05
| | | | Originally committed as revision 15214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: use a for instead of unrolling by handVitor Sessak2008-09-05
| | | | Originally committed as revision 15213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Functions mace{3,6}_decode_frame() are just wrappers to Exp1to{3,6}(). This ↵Vitor Sessak2008-09-04
| | | | | | | | commit moves the code of Exp1to* to the decode functions. Originally committed as revision 15212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: fix ASS subtitle track packets before emitting themAurelien Jacobs2008-09-04
| | | | | | | | | Matroska does some butchering when storing the ASS lines. The start and end time are removed (because they are duplicated in the container). The matroska_fix_ass_packet() function simply restore those start and end time in ASS lines to ensure our ASS packets comply with the ASS spec. Originally committed as revision 15211 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add -xerror option, ffmpeg will now exit right when an error occursBaptiste Coudurier2008-09-04
| | | | Originally committed as revision 15210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix msgsm in wav, do not set blkalign to frame size, this is wrong,Baptiste Coudurier2008-09-04
| | | | | | all samples have correct blkalign set to 65 Originally committed as revision 15209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: use two distinct functions to decode MACE3 and MACE6, since theVitor Sessak2008-09-04
| | | | | | previous mace_decode_init() function was almost just a switch statement. Originally committed as revision 15208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify mace_decode_frame()Vitor Sessak2008-09-04
| | | | Originally committed as revision 15207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: subtitle display duration must be stored in pkt->convergence_durationAurelien Jacobs2008-09-04
| | | | Originally committed as revision 15206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless commentsVitor Sessak2008-09-04
| | | | Originally committed as revision 15205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent mace.c, its indentation was completly inconsistent with the coding ↵Vitor Sessak2008-09-04
| | | | | | rules. Originally committed as revision 15204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make 16bit grayscale output work.Michael Niedermayer2008-09-04
| | | | Originally committed as revision 27524 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* set block align and frame size for gsm in aiffBaptiste Coudurier2008-09-04
| | | | Originally committed as revision 15203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix SWS_FAST_BILINEAR and SWS_POINT with some unscaled rgb<->bgr converters.Michael Niedermayer2008-09-04
| | | | Originally committed as revision 27523 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Cosmetics: s/LPC_type/LPC_TYPE/Vitor Sessak2008-09-04
| | | | Originally committed as revision 15202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support PIX_FMT_RGB32_1 and PIX_FMT_BGR32_1.Michael Niedermayer2008-09-04
| | | | | | Fixes issue248. Originally committed as revision 27522 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* print error when deinterlacing failsBaptiste Coudurier2008-09-04
| | | | Originally committed as revision 15201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 4 and 8 bit RGB/BGR input.Michael Niedermayer2008-09-04
| | | | Originally committed as revision 27521 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Properly use av_log rather than fprintf/printf.JonY2008-09-04
| | | | | | | Fix the "implicit declaration of function 'please_use_av_log'" warnings. Patch by JonY <10walls _AT_ gmail #dot# com> Originally committed as revision 15200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo.Michael Niedermayer2008-09-04
| | | | Originally committed as revision 15199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove workaround for rgb/bgr mess.Michael Niedermayer2008-09-04
| | | | Originally committed as revision 27520 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix 4 of the unscaled rgb15/16 converters, each of these containedMichael Niedermayer2008-09-04
| | | | | | | | 2-3 bugs each of which made it fail completely, this code clearly has never been tested and been written by somone who knows the difference between a potato and a computer is that the first is round. Originally committed as revision 27519 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* rgb vs bgr fix for the unscaled converters.Michael Niedermayer2008-09-04
| | | | Originally committed as revision 27518 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* cosmetics, remove whitespaceBaptiste Coudurier2008-09-04
| | | | Originally committed as revision 15198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* actually write dac3 atom, patch by Kurtnoise, kurtnoise at free dot frKurtnoise2008-09-04
| | | | Originally committed as revision 15197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix rgb15/16 vs. bgr part2.Michael Niedermayer2008-09-04
| | | | Originally committed as revision 27517 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* skip 2 bytes more when parsing ac3 frame, syncword 16bits + crc 16bits,Damiano Galassi2008-09-04
| | | | | | patch by Damiano Galassi, damiog at gmail dot com Originally committed as revision 15196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix rgb15/16 vs. bgr part1.Michael Niedermayer2008-09-04
| | | | Originally committed as revision 27516 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add fflush to prevent stdout & stderr from being mixed.Michael Niedermayer2008-09-04
| | | | Originally committed as revision 27515 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Multiply table by -1. This avoid doing this calculation (that was introducedVitor Sessak2008-09-04
| | | | | | in my last commit) in real time. Originally committed as revision 15195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix artifacts of MPEG4-720I-DN-SV8K.trp caused by lack of IDR pictures andMichael Niedermayer2008-09-04
| | | | | | subsequent zero POC value. Originally committed as revision 15194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid duplicating compute_lpc_coefs() function in both the RA288 and AAC ↵Vitor Sessak2008-09-04
| | | | | | decoders. Originally committed as revision 15193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove further 1sample=2byte assumptions within FFmpeg to allowPeter Ross2008-09-04
| | | | | | F32LE/F64BE/F64LE audio to be encoded properly. Originally committed as revision 15192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the nb_max_connections and nb_connections int variables unsigned.Stefano Sabatini2008-09-03
| | | | Originally committed as revision 15191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change the logic to mux 13818-3 and 11172-3 in mp4, less codeBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15190 to svn://svn.ffmpeg.org/ffmpeg/trunk
* forbid mp3 < 16000hz in anything except movBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15189 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dirac muxing support in mp4/movBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, move up mpeg1video mp4 objecttypeBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, change values to hex since mp4ra use hexBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, vertical alignBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ac3 muxing support in mov/mp4/m4vBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ignore the spec, and calculate aspect ratio on width/height.Michael Niedermayer2008-09-03
| | | | | | Fixes issue562 and issue621. Originally committed as revision 15183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the maximum number of simultaneous HTTP connections handled byStefano Sabatini2008-09-03
| | | | | | | ffserver a configuration parameter. The name of the new parameter introduced is MaxHTTPConnections. Originally committed as revision 15182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change doxygen comment: Clarify when av_write_trailer should be called.Reimar Döffinger2008-09-03
| | | | Originally committed as revision 15181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify sample_aspect_ratio.Michael Niedermayer2008-09-03
| | | | Originally committed as revision 15180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVPacket.convergence_duration.Michael Niedermayer2008-09-03
| | | | Originally committed as revision 15179 to svn://svn.ffmpeg.org/ffmpeg/trunk