OSDN Git Service

coroid/ffmpeg_saccubus.git
17 years agoURL of the webinterface
Michael Niedermayer [Fri, 3 Aug 2007 21:59:01 +0000 (21:59 +0000)]
URL of the webinterface

Originally committed as revision 9879 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoget rid of some double timebase convertion
Michael Niedermayer [Fri, 3 Aug 2007 20:49:53 +0000 (20:49 +0000)]
get rid of some double timebase convertion

Originally committed as revision 9878 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoremove the mailinglist still preferred note, roundup is much nicer even though
Michael Niedermayer [Fri, 3 Aug 2007 19:29:52 +0000 (19:29 +0000)]
remove the mailinglist still preferred note, roundup is much nicer even though
it still has some issues which lu_zero needs to deal with :)

Originally committed as revision 9877 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoproperly implement "user specified start time offset" which was added in r3217
Michael Niedermayer [Fri, 3 Aug 2007 19:21:50 +0000 (19:21 +0000)]
properly implement "user specified start time offset" which was added in r3217
-ss should now work again
fixes decoding of low.ogg
closes issue47

Originally committed as revision 9876 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agocosmetics: be sure all lines fit into 79 characters
Alex Beregszaszi [Fri, 3 Aug 2007 18:46:59 +0000 (18:46 +0000)]
cosmetics: be sure all lines fit into 79 characters

Originally committed as revision 9875 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agocosmetics: indent correctly
Alex Beregszaszi [Fri, 3 Aug 2007 18:45:44 +0000 (18:45 +0000)]
cosmetics: indent correctly

Originally committed as revision 9874 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoUse getCachedContext instead getContext to support resolution change. Patch by Glenn...
Glenn A. Serre [Fri, 3 Aug 2007 18:44:44 +0000 (18:44 +0000)]
Use getCachedContext instead getContext to support resolution change. Patch by Glenn A. Serre

Originally committed as revision 9873 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoReduce Theora decoder verbosity.
Diego Biurrun [Fri, 3 Aug 2007 16:43:11 +0000 (16:43 +0000)]
Reduce Theora decoder verbosity.

Originally committed as revision 9872 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agomove code which adds a AVPacket into the packet buffer into its own function
Michael Niedermayer [Fri, 3 Aug 2007 08:56:00 +0000 (08:56 +0000)]
move code which adds a AVPacket into the packet buffer into its own function

Originally committed as revision 9871 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agooutput last frame if seq end code is encountered
Michael Niedermayer [Thu, 2 Aug 2007 20:49:42 +0000 (20:49 +0000)]
output last frame if seq end code is encountered
fixes video decoding of AC3TEST.vob
closes issue19

Originally committed as revision 9870 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agocorrect order of fixedpoint in CONFIG list
Marc Hoffman [Thu, 2 Aug 2007 11:32:04 +0000 (11:32 +0000)]
correct order of fixedpoint in CONFIG list

Originally committed as revision 9869 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoRemove unused variable.
Diego Biurrun [Thu, 2 Aug 2007 07:42:06 +0000 (07:42 +0000)]
Remove unused variable.

Originally committed as revision 9868 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agosimplify s->mv_dir init
Michael Niedermayer [Thu, 2 Aug 2007 01:28:37 +0000 (01:28 +0000)]
simplify s->mv_dir init

Originally committed as revision 9867 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years ago--enable-fixedpoint, for configuring fixedpoint optimizations, this is just the confi...
Marc Hoffman [Thu, 2 Aug 2007 00:14:11 +0000 (00:14 +0000)]
--enable-fixedpoint, for configuring fixedpoint optimizations, this is just the config aspect

Originally committed as revision 9866 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoget rid of mb_type_len
Michael Niedermayer [Wed, 1 Aug 2007 22:39:03 +0000 (22:39 +0000)]
get rid of mb_type_len

Originally committed as revision 9865 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoexchange the values of MV_DIR_FORWARD and MV_DIR_BACKWARD (this is more sane,
Michael Niedermayer [Wed, 1 Aug 2007 22:12:52 +0000 (22:12 +0000)]
exchange the values of MV_DIR_FORWARD and MV_DIR_BACKWARD (this is more sane,
matches the order of some other stuff and allows some simplifications)

Originally committed as revision 9864 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoexchange if() and for() in the MT_FIELD case
Michael Niedermayer [Wed, 1 Aug 2007 21:17:26 +0000 (21:17 +0000)]
exchange if() and for() in the MT_FIELD case
18 cpu cycles faster for matrixbench

Originally committed as revision 9863 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoexchange for() and if() order in the MT_FRAME case
Michael Niedermayer [Wed, 1 Aug 2007 21:05:58 +0000 (21:05 +0000)]
exchange  for() and if() order in the MT_FRAME case
safes 24 cpu cycles

Originally committed as revision 9862 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agomaking reference models have the same API
Marc Hoffman [Wed, 1 Aug 2007 20:44:08 +0000 (20:44 +0000)]
making reference models have the same API

Originally committed as revision 9861 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agochange
Michael Niedermayer [Wed, 1 Aug 2007 20:37:41 +0000 (20:37 +0000)]
change
for(){
    if(){
        switch(){

to
switch(){
    for(){
        if(){

this halfs the number of times the switch is executed in bidir blocks, in
other blocks the number is the same
25 cpu cycles less with matrixbench on duron

Originally committed as revision 9860 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoreplace some "disabled" calls with "! enabled"
Måns Rullgård [Wed, 1 Aug 2007 20:23:29 +0000 (20:23 +0000)]
replace some "disabled" calls with "! enabled"

Originally committed as revision 9859 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agomerge another 2 if() to save a few cpu cycles
Michael Niedermayer [Wed, 1 Aug 2007 20:04:12 +0000 (20:04 +0000)]
merge another 2 if() to save a few cpu cycles

Originally committed as revision 9858 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoreorder if() so that the condition can be simplified
Michael Niedermayer [Wed, 1 Aug 2007 19:37:28 +0000 (19:37 +0000)]
reorder if() so that the condition can be simplified
saves another 4 cpu cycles

Originally committed as revision 9857 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agomerge/simplify 2 if()
Michael Niedermayer [Wed, 1 Aug 2007 19:26:24 +0000 (19:26 +0000)]
merge/simplify 2 if()
~4 cpu cylces faster for the matrixbench video

Originally committed as revision 9856 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agomerge 2 if()
Michael Niedermayer [Wed, 1 Aug 2007 19:17:36 +0000 (19:17 +0000)]
merge 2 if()
this safes 1-2 cpu cycles

Originally committed as revision 9855 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoalphabetical order
Diego Biurrun [Wed, 1 Aug 2007 19:10:54 +0000 (19:10 +0000)]
alphabetical order

Originally committed as revision 9854 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoRemove redundant variable declarations.
Diego Biurrun [Wed, 1 Aug 2007 19:06:19 +0000 (19:06 +0000)]
Remove redundant variable declarations.

Originally committed as revision 9853 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agouse buf_ptr to correctly decode second field
Baptiste Coudurier [Wed, 1 Aug 2007 13:18:23 +0000 (13:18 +0000)]
use buf_ptr to correctly decode second field

Originally committed as revision 9852 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agomove gray so as to not introduce further misordering
Michael Niedermayer [Wed, 1 Aug 2007 13:02:31 +0000 (13:02 +0000)]
move gray so as to not introduce further misordering

Originally committed as revision 9851 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoremove unneeded gray="no"
Michael Niedermayer [Wed, 1 Aug 2007 13:00:01 +0000 (13:00 +0000)]
remove unneeded gray="no"

Originally committed as revision 9850 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoadding myself to the CREDITS
Marc Hoffman [Wed, 1 Aug 2007 02:16:08 +0000 (02:16 +0000)]
adding myself to the CREDITS

Originally committed as revision 9849 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoalign array used in mdct. fixes segfault.
Justin Ruggles [Wed, 1 Aug 2007 01:13:58 +0000 (01:13 +0000)]
align array used in mdct. fixes segfault.

Originally committed as revision 9848 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agouse ENABLE_GRAY
Michael Niedermayer [Wed, 1 Aug 2007 01:01:03 +0000 (01:01 +0000)]
use ENABLE_GRAY

Originally committed as revision 9847 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agomake grayscale only decoding checks in inner loops compiletime killable
Michael Niedermayer [Wed, 1 Aug 2007 00:39:39 +0000 (00:39 +0000)]
make grayscale only decoding checks in inner loops compiletime killable

Originally committed as revision 9846 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agomove some code which was executed for every skipped MB so it is only executed
Michael Niedermayer [Tue, 31 Jul 2007 21:39:09 +0000 (21:39 +0000)]
move some code which was executed for every skipped MB so it is only executed
for the first skipped mb in a run

Originally committed as revision 9845 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoget rid of a useless variable
Michael Niedermayer [Tue, 31 Jul 2007 21:00:17 +0000 (21:00 +0000)]
get rid of a useless variable

Originally committed as revision 9844 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoavoid 2 additions (1 cpu cycle) per MB
Michael Niedermayer [Tue, 31 Jul 2007 20:52:49 +0000 (20:52 +0000)]
avoid 2 additions (1 cpu cycle) per MB

Originally committed as revision 9843 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agochroma_qscale seems not used anywhere for mpeg1/2 so do not waste cpu time setting it
Michael Niedermayer [Tue, 31 Jul 2007 20:44:48 +0000 (20:44 +0000)]
chroma_qscale seems not used anywhere for mpeg1/2 so do not waste cpu time setting it

Originally committed as revision 9842 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoFix typo
Panagiotis Issaris [Tue, 31 Jul 2007 16:22:57 +0000 (16:22 +0000)]
Fix typo

Originally committed as revision 9841 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agofill title, author, copyright and comment fields by parsing udta atom
Benoit Fouet [Tue, 31 Jul 2007 15:20:36 +0000 (15:20 +0000)]
fill title, author, copyright and comment fields by parsing udta atom

Originally committed as revision 9840 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agodeal with the case where one of pts,dts has wrapped but the other has not
Michael Niedermayer [Tue, 31 Jul 2007 15:06:27 +0000 (15:06 +0000)]
deal with the case where one of pts,dts has wrapped but the other has not

Originally committed as revision 9839 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agofix mem leak
Daniel Kristjansson [Tue, 31 Jul 2007 14:51:21 +0000 (14:51 +0000)]
fix mem leak
patch by Daniel Kristjansson: [danielk cuymedia net]
Original thread: [FFmpeg-devel] [PATCH] alloc_picture needs to free buffer when
it's not going to use it
Date: 07/20/2007 07:27 PM

Originally committed as revision 9838 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoIdentifiers starting with underscores are reserved.
Diego Biurrun [Tue, 31 Jul 2007 06:55:48 +0000 (06:55 +0000)]
Identifiers starting with underscores are reserved.

Originally committed as revision 9837 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agofix cabac decoding with some Blue-Ray sources
Andreas Öman [Mon, 30 Jul 2007 21:19:36 +0000 (21:19 +0000)]
fix cabac decoding with some Blue-Ray sources
Patch by Andreas Öman %andreas A olebyn P nu%
Original thread:
Date: Jul 7, 2007 1:23 AM
Subject: [FFmpeg-devel] Corrupted blocks and seeking issues in H264 disc sources

Originally committed as revision 9836 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agokill antiwrapping code, i do not think this did anything good
Michael Niedermayer [Mon, 30 Jul 2007 18:57:47 +0000 (18:57 +0000)]
kill antiwrapping code, i do not think this did anything good
fixes decoding of rete4.ps
closes issue44

Originally committed as revision 9835 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years ago replacing the use of deprecated unaligned*() routines by LD64 and AV_RB32
Roman Shaposhnik [Mon, 30 Jul 2007 18:05:46 +0000 (18:05 +0000)]
  replacing the use of deprecated unaligned*() routines by LD64 and AV_RB32

Originally committed as revision 9834 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoHandle malloc failure
Panagiotis Issaris [Mon, 30 Jul 2007 13:58:17 +0000 (13:58 +0000)]
Handle malloc failure

Originally committed as revision 9833 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agotreat NONE as U8 to fix qtNONE/000_0032.MOV, this should not any have side effect...
Baptiste Coudurier [Mon, 30 Jul 2007 10:00:42 +0000 (10:00 +0000)]
treat NONE as U8 to fix qtNONE/000_0032.MOV, this should not any have side effect since if bps is 16 in stsd, codec will be changed to s16be, just yell if this breaks any sample

Originally committed as revision 9832 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agosupport silly PCM variant used by zork nemesis
Michael Niedermayer [Mon, 30 Jul 2007 02:05:16 +0000 (02:05 +0000)]
support silly PCM variant used by zork nemesis
fixes audio decoding of T000A11C.AVI

Originally committed as revision 9831 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoprevent assert failure with negative quant_offset
Michael Niedermayer [Sun, 29 Jul 2007 21:34:31 +0000 (21:34 +0000)]
prevent assert failure with negative quant_offset

Originally committed as revision 9830 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agowarn user if max=bitrate && max > min
Michael Niedermayer [Sun, 29 Jul 2007 19:21:56 +0000 (19:21 +0000)]
warn user if max=bitrate && max > min

Originally committed as revision 9829 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agosupport raw 4bpp avi
Michael Niedermayer [Sun, 29 Jul 2007 13:32:53 +0000 (13:32 +0000)]
support raw 4bpp avi
fixes dance1.avi
closes issue40

Originally committed as revision 9828 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agomake the reference code use double instead of float where it is easy
Michael Niedermayer [Sun, 29 Jul 2007 10:11:12 +0000 (10:11 +0000)]
make the reference code use double instead of float where it is easy

Originally committed as revision 9827 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoprint max and mse
Michael Niedermayer [Sun, 29 Jul 2007 09:58:36 +0000 (09:58 +0000)]
print max and mse

Originally committed as revision 9826 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoMake bicubic interpolation standard compliant
Christophe Gisquet [Sun, 29 Jul 2007 04:04:21 +0000 (04:04 +0000)]
Make bicubic interpolation standard compliant

Patch by Christophe GISQUET
(echo -e "christophe\056gisquet\100 (antonym to malloc()) \056fr")

Thread [PATCH] Binary identicity for ffvc1 (was Re: [PATCH] VC-1 MMX DSP functions)

Originally committed as revision 9825 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agosimplify stereo rematrixing
Justin Ruggles [Sun, 29 Jul 2007 00:58:32 +0000 (00:58 +0000)]
simplify stereo rematrixing

Originally committed as revision 9824 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agochange 2 fields from context to local variables
Justin Ruggles [Sun, 29 Jul 2007 00:35:30 +0000 (00:35 +0000)]
change 2 fields from context to local variables

Originally committed as revision 9823 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoBLOCK_SIZE is not used properly, just use numbers instead to avoid confusion
Justin Ruggles [Sat, 28 Jul 2007 20:50:25 +0000 (20:50 +0000)]
BLOCK_SIZE is not used properly, just use numbers instead to avoid confusion

Originally committed as revision 9822 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoremove broken downmixing. will add new implementation later.
Justin Ruggles [Sat, 28 Jul 2007 19:33:19 +0000 (19:33 +0000)]
remove broken downmixing. will add new implementation later.

Originally committed as revision 9821 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoTake care of some renames (Doxygen and function name) after the previous pure rename...
Panagiotis Issaris [Sat, 28 Jul 2007 18:26:43 +0000 (18:26 +0000)]
Take care of some renames (Doxygen and function name) after the previous pure rename patch.

Originally committed as revision 9820 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoRename h264dsp.c to h264dspenc.c
Panagiotis Issaris [Sat, 28 Jul 2007 18:23:35 +0000 (18:23 +0000)]
Rename h264dsp.c to h264dspenc.c

Originally committed as revision 9819 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoMerge get_str() and get_str8() functions.
Ronald S. Bultje [Sat, 28 Jul 2007 18:05:11 +0000 (18:05 +0000)]
Merge get_str() and get_str8() functions.
patch by Ronald S. Bultje, rsbultje gmail com

Originally committed as revision 9818 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoFix get_str/get_str8() to also work if the target string is not long enough to
Ronald S. Bultje [Sat, 28 Jul 2007 18:02:19 +0000 (18:02 +0000)]
Fix get_str/get_str8() to also work if the target string is not long enough to
fit all data from the container string, and allow NULL as a string also to
simply skip the string altogether.
patch by Ronald S. Bultje, rsbultje gmail com

Originally committed as revision 9817 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agotypo
Diego Biurrun [Sat, 28 Jul 2007 14:17:25 +0000 (14:17 +0000)]
typo

Originally committed as revision 23889 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

17 years agoAhem, fix typos overlooked in last commit.
Diego Biurrun [Sat, 28 Jul 2007 12:50:28 +0000 (12:50 +0000)]
Ahem, fix typos overlooked in last commit.

Originally committed as revision 9816 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agocosmetics: misc typo fixes
Diego Biurrun [Sat, 28 Jul 2007 12:46:26 +0000 (12:46 +0000)]
cosmetics: misc typo fixes

Originally committed as revision 9815 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoAdd EBML ID for Segment UID
David Conrad [Sat, 28 Jul 2007 06:33:05 +0000 (06:33 +0000)]
Add EBML ID for Segment UID

Originally committed as revision 9814 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoReplace a return of -1 with ENOMEM.
Panagiotis Issaris [Fri, 27 Jul 2007 16:31:54 +0000 (16:31 +0000)]
Replace a return of -1 with ENOMEM.

Originally committed as revision 9813 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoAdd the possibility to show all configurable encoders, decoders, parsers,
Panagiotis Issaris [Fri, 27 Jul 2007 14:13:34 +0000 (14:13 +0000)]
Add the possibility to show all configurable encoders, decoders, parsers,
muxers, demuxers, protocols and bitstream filters.

Originally committed as revision 9812 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoAdd a section about C++ and extern "C" in the FAQ.
Panagiotis Issaris [Fri, 27 Jul 2007 13:40:02 +0000 (13:40 +0000)]
Add a section about C++ and extern "C" in the FAQ.

Originally committed as revision 9811 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agonote about removing needs_more_info
Michael Niedermayer [Fri, 27 Jul 2007 11:41:51 +0000 (11:41 +0000)]
note about removing needs_more_info

Originally committed as revision 9810 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agodetect voxware (closes issue39)
Michael Niedermayer [Fri, 27 Jul 2007 11:37:56 +0000 (11:37 +0000)]
detect voxware (closes issue39)

Originally committed as revision 9809 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agotry exact match before case insensitive match in codec_get_id
Michael Niedermayer [Fri, 27 Jul 2007 11:36:17 +0000 (11:36 +0000)]
try exact match before case insensitive match in codec_get_id

Originally committed as revision 9808 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoignore invalid packet_obj_size
Michael Niedermayer [Fri, 27 Jul 2007 00:29:33 +0000 (00:29 +0000)]
ignore invalid packet_obj_size
fixes video5.asf

Originally committed as revision 9807 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoIntroduce an SDP generator
Luca Abeni [Thu, 26 Jul 2007 22:34:26 +0000 (22:34 +0000)]
Introduce an SDP generator

Originally committed as revision 9806 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoremove "Advanced Prediction Mode not supported" spam
Michael Niedermayer [Thu, 26 Jul 2007 15:47:43 +0000 (15:47 +0000)]
remove "Advanced Prediction Mode not supported" spam

Originally committed as revision 9805 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoalso support DEBUG_PICT_INFO for h263i
Michael Niedermayer [Thu, 26 Jul 2007 15:46:43 +0000 (15:46 +0000)]
also support DEBUG_PICT_INFO for h263i

Originally committed as revision 9804 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agomove show_pict_info() to its own function
Michael Niedermayer [Thu, 26 Jul 2007 15:44:46 +0000 (15:44 +0000)]
move show_pict_info() to its own function

Originally committed as revision 9803 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agocosmetics: alignment
Aurelien Jacobs [Thu, 26 Jul 2007 13:02:07 +0000 (13:02 +0000)]
cosmetics: alignment

Originally committed as revision 9802 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoreplaces hardcoded values by the equivalent enum definitions
Aurelien Jacobs [Thu, 26 Jul 2007 13:01:09 +0000 (13:01 +0000)]
replaces hardcoded values by the equivalent enum definitions

Originally committed as revision 9801 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoadd vst option to select video stream
Michael Niedermayer [Wed, 25 Jul 2007 20:50:38 +0000 (20:50 +0000)]
add vst option to select video stream

Originally committed as revision 9800 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoAvoid misdetecting acelp in ASF as MP3.
Michael Niedermayer [Wed, 25 Jul 2007 20:39:43 +0000 (20:39 +0000)]
Avoid misdetecting acelp in ASF as MP3.
fixes 2001-04-11.asf

Originally committed as revision 9799 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoadd proper support for subtitles muxing/stream copying
Aurelien Jacobs [Wed, 25 Jul 2007 19:47:44 +0000 (19:47 +0000)]
add proper support for subtitles muxing/stream copying

Originally committed as revision 9798 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agocopy language information from input stream to output
Aurelien Jacobs [Wed, 25 Jul 2007 19:39:27 +0000 (19:39 +0000)]
copy language information from input stream to output

Originally committed as revision 9797 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agocopy packet duration when doing a stream copy
Aurelien Jacobs [Wed, 25 Jul 2007 19:36:43 +0000 (19:36 +0000)]
copy packet duration when doing a stream copy

Originally committed as revision 9796 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoremove wrong const qualifier
Aurelien Jacobs [Wed, 25 Jul 2007 19:34:31 +0000 (19:34 +0000)]
remove wrong const qualifier

Originally committed as revision 9795 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agouse the most appropriate codec id for A_MPEG/L1 and L2
Aurelien Jacobs [Wed, 25 Jul 2007 15:59:26 +0000 (15:59 +0000)]
use the most appropriate codec id for A_MPEG/L1 and L2

Originally committed as revision 9794 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoreorder matroska codec tags so that the encoder picks up the appropriate tag
Aurelien Jacobs [Wed, 25 Jul 2007 15:58:12 +0000 (15:58 +0000)]
reorder matroska codec tags so that the encoder picks up the appropriate tag

Originally committed as revision 9793 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agohave less functions as inline
Stefan Gehrer [Wed, 25 Jul 2007 05:09:54 +0000 (05:09 +0000)]
have less functions as inline

Originally committed as revision 9792 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoMinor cosmetics
Vitor Sessak [Tue, 24 Jul 2007 18:21:40 +0000 (18:21 +0000)]
Minor cosmetics

Originally committed as revision 9791 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoUpdate the dvdsub parser to be able to parse HD-DVD subtitle packets.
Ian Caulfield [Tue, 24 Jul 2007 14:17:13 +0000 (14:17 +0000)]
Update the dvdsub parser to be able to parse HD-DVD subtitle packets.
Patch by: Ian Caulfield, ian caulfield & gmx at

Originally committed as revision 9790 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoReindent two lines.
Ian Caulfield [Tue, 24 Jul 2007 13:05:28 +0000 (13:05 +0000)]
Reindent two lines.
Patch by: Ian Caulfield, ian caulfield & gmx at

Originally committed as revision 9789 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoAdd HD-DVD subpicture decoding.
Ian Caulfield [Tue, 24 Jul 2007 13:04:47 +0000 (13:04 +0000)]
Add HD-DVD subpicture decoding.
Patch by: Ian Caulfield, ian caulfield & gmx at

Originally committed as revision 9788 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoRename "palette" to "colormap" when it's referring to the mapping from a 2-bit
Ian Caulfield [Tue, 24 Jul 2007 13:03:13 +0000 (13:03 +0000)]
Rename "palette" to "colormap" when it's referring to the mapping from a 2-bit
encoded color to a 4-bit index into the DVD palette.
Patch by: Ian Caulfield, ian caulfield & gmx at

Originally committed as revision 9787 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoincrease buffer size of LAME MP3 encoder
Andreas Öman [Tue, 24 Jul 2007 09:59:54 +0000 (09:59 +0000)]
increase buffer size of LAME MP3 encoder
The previous size lead to A/V sync issues
Patch by Andreas Öman %andreas AA olebyn PP nu%
Original thread:
Date: Jul 21, 2007 9:53 AM
Subject: [FFmpeg-devel] [PATCH] lame buffer shortage

Originally committed as revision 9786 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agohelp some gcc version to optimize out those functions
Aurelien Jacobs [Tue, 24 Jul 2007 08:54:56 +0000 (08:54 +0000)]
help some gcc version to optimize out those functions

Originally committed as revision 9785 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agosimplify snr offset and bit allocation
Justin Ruggles [Tue, 24 Jul 2007 02:08:27 +0000 (02:08 +0000)]
simplify snr offset and bit allocation

Originally committed as revision 9784 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoonly use sized data types when necessary
Justin Ruggles [Tue, 24 Jul 2007 01:43:47 +0000 (01:43 +0000)]
only use sized data types when necessary

Originally committed as revision 9783 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agoset bit allocation parameters directly instead of copying
Justin Ruggles [Tue, 24 Jul 2007 01:35:25 +0000 (01:35 +0000)]
set bit allocation parameters directly instead of copying

Originally committed as revision 9782 to svn://svn.ffmpeg.org/ffmpeg/trunk

17 years agouse enum value instead of numerical value for acmod
Justin Ruggles [Mon, 23 Jul 2007 22:47:49 +0000 (22:47 +0000)]
use enum value instead of numerical value for acmod

Originally committed as revision 9781 to svn://svn.ffmpeg.org/ffmpeg/trunk