platform/upstream/libav.git
17 years agoadd an intermediate variable (prepare for next patch)
Aurelien Jacobs [Mon, 9 Apr 2007 17:00:09 +0000 (17:00 +0000)]
add an intermediate variable (prepare for next patch)

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

17 years agoadd support for seeking in matroska files
Aurelien Jacobs [Mon, 9 Apr 2007 16:48:28 +0000 (16:48 +0000)]
add support for seeking in matroska files

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

17 years agomove matroska_find_track_by_num() upper in the file
Aurelien Jacobs [Mon, 9 Apr 2007 16:45:43 +0000 (16:45 +0000)]
move matroska_find_track_by_num() upper in the file
so that it can be used by other part of the code

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

17 years agocluster position is relative to segment_start
Aurelien Jacobs [Mon, 9 Apr 2007 16:29:10 +0000 (16:29 +0000)]
cluster position is relative to segment_start

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

17 years agoproperly set streams start_time
Aurelien Jacobs [Mon, 9 Apr 2007 16:27:00 +0000 (16:27 +0000)]
properly set streams start_time

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

17 years agoremove unused context field
Aurelien Jacobs [Mon, 9 Apr 2007 16:24:03 +0000 (16:24 +0000)]
remove unused context field

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

17 years agoremove wrong and no more used packet reordering code
Aurelien Jacobs [Mon, 9 Apr 2007 16:22:18 +0000 (16:22 +0000)]
remove wrong and no more used packet reordering code

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

17 years agoWhen dst_length == 0 bit_length has to be 0, too, but the current code still
Reinhard Nissl [Mon, 9 Apr 2007 14:10:07 +0000 (14:10 +0000)]
When dst_length == 0 bit_length has to be 0, too, but the current code still
calls decode_rbsp_trailing() and therefore bit_length might get negative.
Although the remaining code is able to handle a negative bit_length, avoid
the calculation at all by setting bit_length to 0 for dst_length == 0.
patch by Reinhard Nissl, rnissl gmx de

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

17 years agoRemove a NAL unit's trailing zero bytes even when dst_length is 1.
Reinhard Nissl [Mon, 9 Apr 2007 13:39:35 +0000 (13:39 +0000)]
Remove a NAL unit's trailing zero bytes even when dst_length is 1.
Consider the following byte sequence

    00 00 01 0a 00 00 00 01 09 ...
               ^  ^
               A  B

decode_nal() determines dst_length to be 1 (i. e. the byte between label
A and B above). However, this byte is a trailing zero byte as the spec
says the the current NAL unit is terminated by a byte sequence 00 00 00.

The current code used a loop to decrement dst_length accordingly. But the
loop doesn't start as the loop condition checks for dst_length > 1, which
should read dst_length > 0.
patch by Reinhard Nissl, rnissl gmx de

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

17 years agoscenario: A properly coded frame is followed by an end of sequence NAL unit,
Reinhard Nissl [Mon, 9 Apr 2007 12:55:07 +0000 (12:55 +0000)]
scenario: A properly coded frame is followed by an end of sequence NAL unit,
i.e. the four bytes 00 00 01 0a.
When decode_nal() decodes the end of sequence NAL unit, it returns with
dst_length == 0. The original code leads to a return -1 which discards
the current properly decoded frame.
patch by Reinhard Nissl, rnissl gmx de

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

17 years agoGet rid of unnecessary pointer casts.
Nicholas Tung [Sun, 8 Apr 2007 20:24:16 +0000 (20:24 +0000)]
Get rid of unnecessary pointer casts.
patch by Nicholas Tung, ntung ntung com

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

17 years agoMake some functions which aren't used outside their declaring source file
Stefan Huehner [Sun, 8 Apr 2007 20:21:11 +0000 (20:21 +0000)]
Make some functions which aren't used outside their declaring source file
and have no prototype in a header file static.
patch by Stefan Huehner, stefan huehner org

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

17 years agoOnly compile in Theora-specific functions if the Theora decoder has been
Diego Biurrun [Sun, 8 Apr 2007 18:54:53 +0000 (18:54 +0000)]
Only compile in Theora-specific functions if the Theora decoder has been
enabled.  Also fixes some "defined but not used" warnings in that case.

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

17 years agocosmetics: Move one code block to save an #ifdef in the next commit.
Diego Biurrun [Sun, 8 Apr 2007 18:52:03 +0000 (18:52 +0000)]
cosmetics: Move one code block to save an #ifdef in the next commit.

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

17 years agoRemove #if 0 code.
Diego Biurrun [Sun, 8 Apr 2007 18:50:18 +0000 (18:50 +0000)]
Remove #if 0 code.

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

17 years agoFix compilation when Theora decoder is disabled, but VP3 is enabled.
Diego Biurrun [Sun, 8 Apr 2007 13:42:44 +0000 (13:42 +0000)]
Fix compilation when Theora decoder is disabled, but VP3 is enabled.

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

17 years agoRemove unused variable.
Diego Biurrun [Sun, 8 Apr 2007 13:02:25 +0000 (13:02 +0000)]
Remove unused variable.

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

17 years agocosmetics: indentation fix
Marco Gerards [Sun, 8 Apr 2007 12:05:02 +0000 (12:05 +0000)]
cosmetics: indentation fix
patch by Marco Gerards, mgerards xs4all nl

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

17 years agofile extension based probe is max/2
Michael Niedermayer [Sun, 8 Apr 2007 11:37:43 +0000 (11:37 +0000)]
file extension based probe is max/2

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

17 years agofactorize
Michael Niedermayer [Sun, 8 Apr 2007 11:37:04 +0000 (11:37 +0000)]
factorize

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

17 years agoallocate 32 extra bytes at the end of the probe buffer and remove most probe buf_size...
Michael Niedermayer [Sun, 8 Apr 2007 11:34:15 +0000 (11:34 +0000)]
allocate 32 extra bytes at the end of the probe buffer and remove most probe buf_size checks

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

17 years agoalso remove c93_ prefix for static function in the c93 demuxer
Michael Niedermayer [Sun, 8 Apr 2007 09:50:08 +0000 (09:50 +0000)]
also remove c93_ prefix for static function in the c93 demuxer

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

17 years agofactorize & 0x0F
Michael Niedermayer [Sun, 8 Apr 2007 09:44:34 +0000 (09:44 +0000)]
factorize & 0x0F

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

17 years agoremove c93_ prefix from static functions in c93.c
Michael Niedermayer [Sun, 8 Apr 2007 09:31:54 +0000 (09:31 +0000)]
remove c93_ prefix from static functions in c93.c

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

17 years agos/rle_num_bytes/code/
Michael Niedermayer [Sat, 7 Apr 2007 23:32:55 +0000 (23:32 +0000)]
s/rle_num_bytes/code/
shorter and correcter (its not the number of anything)

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

17 years agoalign vertically
Michael Niedermayer [Sat, 7 Apr 2007 23:31:30 +0000 (23:31 +0000)]
align vertically

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

17 years agoshorter variable names
Michael Niedermayer [Sat, 7 Apr 2007 23:30:47 +0000 (23:30 +0000)]
shorter variable names

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

17 years agogeneral purpose var should be int
Michael Niedermayer [Sat, 7 Apr 2007 23:27:11 +0000 (23:27 +0000)]
general purpose var should be int

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

17 years agosimplify
Michael Niedermayer [Sat, 7 Apr 2007 23:26:11 +0000 (23:26 +0000)]
simplify

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

17 years agoconform to spec
Michael Niedermayer [Sat, 7 Apr 2007 23:24:31 +0000 (23:24 +0000)]
conform to spec

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

17 years agoremove redundant comments
Michael Niedermayer [Sat, 7 Apr 2007 23:18:34 +0000 (23:18 +0000)]
remove redundant comments

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

17 years agoremove useless debuging av_log()
Michael Niedermayer [Sat, 7 Apr 2007 23:17:06 +0000 (23:17 +0000)]
remove useless debuging av_log()

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

17 years agoindention cleanup
Michael Niedermayer [Sat, 7 Apr 2007 23:16:05 +0000 (23:16 +0000)]
indention cleanup

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

17 years agouse shorter names for the block type enum
Michael Niedermayer [Sat, 7 Apr 2007 23:10:22 +0000 (23:10 +0000)]
use shorter names for the block type enum

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

17 years agocosmetic
Michael Niedermayer [Sat, 7 Apr 2007 23:02:43 +0000 (23:02 +0000)]
cosmetic

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

17 years agocode claims to use 32bit timestamp, lets make it also use that
Michael Niedermayer [Sat, 7 Apr 2007 22:57:04 +0000 (22:57 +0000)]
code claims to use 32bit timestamp, lets make it also use that

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

17 years agoremove redundant comments
Michael Niedermayer [Sat, 7 Apr 2007 22:55:15 +0000 (22:55 +0000)]
remove redundant comments

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

17 years agoremove inappropriate debuging av_log() alternatively they could be changed to dprintf()
Michael Niedermayer [Sat, 7 Apr 2007 22:51:05 +0000 (22:51 +0000)]
remove inappropriate debuging av_log() alternatively they could be changed to dprintf()

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

17 years agomemleak (seems ive missed that under the obfuscated indention)
Michael Niedermayer [Sat, 7 Apr 2007 22:47:55 +0000 (22:47 +0000)]
memleak (seems ive missed that under the obfuscated indention)

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

17 years agosane indention (no more 3 statements on one line...)
Michael Niedermayer [Sat, 7 Apr 2007 22:41:45 +0000 (22:41 +0000)]
sane indention (no more 3 statements on one line...)

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

17 years agouse bytestream reader instead of bitstream for THP
Michael Niedermayer [Sat, 7 Apr 2007 22:04:33 +0000 (22:04 +0000)]
use bytestream reader instead of bitstream for THP
5% smaller adpcm.o
20% faster

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

17 years agoCRYO APC demuxer
Anssi Hannula [Sat, 7 Apr 2007 21:34:18 +0000 (21:34 +0000)]
CRYO APC demuxer
patch by Anssi Hannula, anssi.hannula gmail com

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

17 years agosimplify
Michael Niedermayer [Sat, 7 Apr 2007 21:30:19 +0000 (21:30 +0000)]
simplify

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

17 years agoprev1/2 -> prev[2]
Michael Niedermayer [Sat, 7 Apr 2007 21:27:58 +0000 (21:27 +0000)]
prev1/2 -> prev[2]

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

17 years agosimplify
Michael Niedermayer [Sat, 7 Apr 2007 21:22:50 +0000 (21:22 +0000)]
simplify

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

17 years agogeneral purpose vars should be int
Michael Niedermayer [Sat, 7 Apr 2007 21:19:36 +0000 (21:19 +0000)]
general purpose vars should be int

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

17 years agotable[index][ch] -> table[ch][index] (might be faster ...)
Michael Niedermayer [Sat, 7 Apr 2007 21:15:52 +0000 (21:15 +0000)]
table[index][ch] -> table[ch][index] (might be faster ...)

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

17 years agoAdd THP video and audio decoders.
Diego Biurrun [Sat, 7 Apr 2007 20:55:16 +0000 (20:55 +0000)]
Add THP video and audio decoders.

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

17 years agoBethsoft VID demuxer and video decoder
Nicholas Tung [Sat, 7 Apr 2007 20:51:58 +0000 (20:51 +0000)]
Bethsoft VID demuxer and video decoder
patch by Nicholas Tung, ntung ntung com

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

17 years agoFix segmentation fault for gray16le to gray conversion.
Ivo van Poorten [Sat, 7 Apr 2007 19:24:27 +0000 (19:24 +0000)]
Fix segmentation fault for gray16le to gray conversion.

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

17 years agoRemove superfluous setting of has_b_frames in codecs without B-frames.
Nicholas Tung [Sat, 7 Apr 2007 17:37:30 +0000 (17:37 +0000)]
Remove superfluous setting of has_b_frames in codecs without B-frames.
patch by Nicholas Tung, ntung ntung com

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

17 years agoTHP PCM decoder, used on the Nintendo GameCube.
Marco Gerards [Sat, 7 Apr 2007 16:03:23 +0000 (16:03 +0000)]
THP PCM decoder, used on the Nintendo GameCube.
patch by Marco Gerards, mgerards xs4all nl

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

17 years agoTIFF-LZW encoding support by (Bartlomiej Wolowiec b.wolowiec students mimuw edu pl)
Michael Niedermayer [Sat, 7 Apr 2007 15:15:45 +0000 (15:15 +0000)]
TIFF-LZW encoding support by (Bartlomiej Wolowiec b.wolowiec  students mimuw edu pl)

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

17 years agoLZW encoder by Bartlomiej Wolowiec b.wolowiec students mimuw edu pl
Michael Niedermayer [Sat, 7 Apr 2007 15:10:22 +0000 (15:10 +0000)]
LZW encoder by Bartlomiej Wolowiec b.wolowiec  students mimuw edu pl

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

17 years agoInterplay C93 demuxer and video decoder
Anssi Hannula [Sat, 7 Apr 2007 14:25:25 +0000 (14:25 +0000)]
Interplay C93 demuxer and video decoder
patch by Anssi Hannula, anssi.hannula gmail com

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

17 years agotypos
Diego Biurrun [Sat, 7 Apr 2007 14:10:02 +0000 (14:10 +0000)]
typos

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

17 years agotypos/grammar
Diego Biurrun [Sat, 7 Apr 2007 14:09:20 +0000 (14:09 +0000)]
typos/grammar

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

17 years agotypo
Diego Biurrun [Sat, 7 Apr 2007 14:07:51 +0000 (14:07 +0000)]
typo

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

17 years agospelling/wording/grammar
Diego Biurrun [Sat, 7 Apr 2007 14:07:33 +0000 (14:07 +0000)]
spelling/wording/grammar

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

17 years agoPrint a list of valid AMR bitrates if a wrong one is used.
Víctor Paesa [Sat, 7 Apr 2007 11:57:35 +0000 (11:57 +0000)]
Print a list of valid AMR bitrates if a wrong one is used.
patch by Víctor Paesa, wzrlpy arsystel com

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

17 years agoYUV support patch by (Kamil Nowosad k.nowosad students mimuw edu pl)
Kamil Nowosad [Fri, 6 Apr 2007 23:16:08 +0000 (23:16 +0000)]
YUV support patch by (Kamil Nowosad  k.nowosad  students mimuw edu pl)

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

17 years agos/invert/photometric_interpretation/ patch by Kamil Nowosad k.nowosad students mimuw...
Kamil Nowosad [Fri, 6 Apr 2007 20:49:26 +0000 (20:49 +0000)]
s/invert/photometric_interpretation/ patch by Kamil Nowosad k.nowosad  students mimuw edu pl

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

17 years agotiff & sgi regression test
Michael Niedermayer [Fri, 6 Apr 2007 20:47:03 +0000 (20:47 +0000)]
tiff & sgi regression test

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

17 years agoSGI image decoder ported to the new image API.
Xiaohui Sun [Fri, 6 Apr 2007 18:29:27 +0000 (18:29 +0000)]
SGI image decoder ported to the new image API.
patch by Xiaohui Sun, sunxiaohui dsp.ac cn

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

17 years agoSuppress possible error from ulimit not having -c or being missing.
François Revol [Fri, 6 Apr 2007 15:02:13 +0000 (15:02 +0000)]
Suppress possible error from ulimit not having -c or being missing.

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

17 years agoReturn correct decoded size, decoder is called with only one frame at a time.
Benoit Fouet [Fri, 6 Apr 2007 10:37:34 +0000 (10:37 +0000)]
Return correct decoded size, decoder is called with only one frame at a time.
patch by Benoit Fouet, benoit.fouet purplelabs com

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

17 years agoIWMMXT-specific dsputils clear_blocks function.
David Bateman [Fri, 6 Apr 2007 09:59:55 +0000 (09:59 +0000)]
IWMMXT-specific dsputils clear_blocks function.
patch by David Bateman, adb014 gmail com

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

17 years agoAdd some help for the analyzeduration option.
Víctor Paesa [Fri, 6 Apr 2007 09:43:32 +0000 (09:43 +0000)]
Add some help for the analyzeduration option.
patch by Víctor Paesa, wzrlpy arsystel com

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

17 years agoThis codec is PAL8 so make it output PAL8 too
Kostya Shishkov [Fri, 6 Apr 2007 04:40:13 +0000 (04:40 +0000)]
This codec is PAL8 so make it output PAL8 too

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

17 years agoremove compound literals gcc 2.95 doesnt support taking an address of a compound...
Michael Niedermayer [Thu, 5 Apr 2007 00:09:48 +0000 (00:09 +0000)]
remove compound literals gcc 2.95 doesnt support taking an address of a compound literal
and the current code was my fault as i suggested the student to use compound literals
beliving gcc 2.95 supports them completely ...

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

17 years agoUpdate doc to show FLAC encoding
Justin Ruggles [Wed, 4 Apr 2007 21:00:18 +0000 (21:00 +0000)]
Update doc to show FLAC encoding

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

17 years agoWMA decoder improvement, output closer to the dmo binary.
Ian Braithwaite [Wed, 4 Apr 2007 13:49:55 +0000 (13:49 +0000)]
WMA decoder improvement, output closer to the dmo binary.
Patch by Ian Braithwaite ian braithwaite dot dk

[Ffmpeg-devel] WMA decoder improvement, 2007-03-28 15:50

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

17 years agovc1_split should be static
Kostya Shishkov [Wed, 4 Apr 2007 13:26:26 +0000 (13:26 +0000)]
vc1_split should be static

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

17 years agochanges some function declarations from () to (void) as per ansi c.
Stefan Huehner [Wed, 4 Apr 2007 11:51:08 +0000 (11:51 +0000)]
changes some function declarations from () to (void) as per ansi c.
Patch by Stefan Huehner % stefan A huehner P org %

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

17 years agoAdd some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.
Diego Biurrun [Wed, 4 Apr 2007 11:43:08 +0000 (11:43 +0000)]
Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.

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

17 years agotypo/grammar
Diego Biurrun [Wed, 4 Apr 2007 11:41:13 +0000 (11:41 +0000)]
typo/grammar

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

17 years agocosmetics: Fix indentation.
Diego Biurrun [Tue, 3 Apr 2007 22:17:37 +0000 (22:17 +0000)]
cosmetics: Fix indentation.

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

17 years agoRemove useless pointer shift.
Benoit Fouet [Tue, 3 Apr 2007 22:16:21 +0000 (22:16 +0000)]
Remove useless pointer shift.
patch by Benoit Fouet, benoit.fouet purplelabs com

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

17 years agoRemove commented-out while loop.
Benoit Fouet [Tue, 3 Apr 2007 22:13:16 +0000 (22:13 +0000)]
Remove commented-out while loop.
patch by Benoit Fouet, benoit.fouet purplelabs com

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

17 years agoThere were two files, libavformat/grab.c and libavformat/grab_bktr.c declaring
Diego Biurrun [Tue, 3 Apr 2007 21:09:36 +0000 (21:09 +0000)]
There were two files, libavformat/grab.c and libavformat/grab_bktr.c declaring
the video_grab_device_demuxer AVInputFormat.  Use two different names for the
AVInputFormats to reduce confusion and remove ugliness from the Makefile.

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

17 years agocosmetics: indentation
Diego Biurrun [Tue, 3 Apr 2007 16:47:43 +0000 (16:47 +0000)]
cosmetics: indentation

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

17 years agoGet rid of unnecessary conditionals.
Diego Biurrun [Tue, 3 Apr 2007 16:33:04 +0000 (16:33 +0000)]
Get rid of unnecessary conditionals.

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

17 years agoAdd CPP_OBJS-yes to CPP_OBJS, same as the other *_OBJS variables.
Diego Biurrun [Tue, 3 Apr 2007 16:32:11 +0000 (16:32 +0000)]
Add CPP_OBJS-yes to CPP_OBJS, same as the other *_OBJS variables.

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

17 years agoFix crash when trying to convert from or to RGBi (i<15) as in bgr8torgb24
Carl Eugen Hoyos [Tue, 3 Apr 2007 16:22:19 +0000 (16:22 +0000)]
Fix crash when trying to convert from or to RGBi (i<15) as in bgr8torgb24

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

17 years agoCONFIG_NETWORK depends on CONFIG_PROTOCOLS, no need to nest conditionals.
Diego Biurrun [Tue, 3 Apr 2007 15:59:15 +0000 (15:59 +0000)]
CONFIG_NETWORK depends on CONFIG_PROTOCOLS, no need to nest conditionals.

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

17 years agocosmetics: Put audio (de)muxer entries in alphabetical order.
Diego Biurrun [Tue, 3 Apr 2007 15:57:38 +0000 (15:57 +0000)]
cosmetics: Put audio (de)muxer entries in alphabetical order.

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

17 years agoAudio (de)muxer dependency on OSS is handled by configure.
Diego Biurrun [Tue, 3 Apr 2007 15:56:21 +0000 (15:56 +0000)]
Audio (de)muxer dependency on OSS is handled by configure.

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

17 years agoExplain which configure options are necessary for which AMR variant.
Diego Biurrun [Tue, 3 Apr 2007 14:15:59 +0000 (14:15 +0000)]
Explain which configure options are necessary for which AMR variant.

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

17 years agotypo
Michael Niedermayer [Tue, 3 Apr 2007 13:53:25 +0000 (13:53 +0000)]
typo

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

17 years agocosmetic
Michael Niedermayer [Tue, 3 Apr 2007 13:52:36 +0000 (13:52 +0000)]
cosmetic

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

17 years agoFF_CODER_TYPE_RAW / RLE / DEFLATE extracted from a patch by Kamil Nowosad
Kamil Nowosad [Tue, 3 Apr 2007 13:52:00 +0000 (13:52 +0000)]
FF_CODER_TYPE_RAW / RLE / DEFLATE extracted from a patch by Kamil Nowosad

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

17 years agotiff encoder by (Bartlomiej Wolowiec b.wolowiec students mimuw edu pl)
Michael Niedermayer [Tue, 3 Apr 2007 13:43:57 +0000 (13:43 +0000)]
tiff encoder by (Bartlomiej Wolowiec  b.wolowiec  students mimuw edu pl)

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

17 years agocosmetics: Better variable name, the ENABLE_* lists contain more than codecs.
Diego Biurrun [Tue, 3 Apr 2007 13:10:37 +0000 (13:10 +0000)]
cosmetics: Better variable name, the ENABLE_* lists contain more than codecs.

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

17 years agocosmetics: Sort list of input/output formats.
Diego Biurrun [Tue, 3 Apr 2007 12:40:17 +0000 (12:40 +0000)]
cosmetics: Sort list of input/output formats.

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

17 years agoRemove #if 0 code.
Diego Biurrun [Tue, 3 Apr 2007 11:26:14 +0000 (11:26 +0000)]
Remove #if 0 code.

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

17 years agoAdd first and second output to earlyclobbers in COPY3_IF_LT macro.
Ramiro Polla [Tue, 3 Apr 2007 11:21:16 +0000 (11:21 +0000)]
Add first and second output to earlyclobbers in COPY3_IF_LT macro.
patch by Ramiro Ribeiro Polla, ramiro lisha.ufsc br
Original thread:
date: Mar 27, 2007 11:21 PM
subject: [Ffmpeg-devel] [PATCH] fix build for --cpu=i686

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

17 years agodont use *int8_t for the arguments (ive missed that in the patches ...)
Michael Niedermayer [Tue, 3 Apr 2007 06:46:12 +0000 (06:46 +0000)]
dont use *int8_t for the arguments (ive missed that in the patches ...)

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

17 years agoChanged the rle encoder a little and made it more universal.
Xiaohui Sun [Tue, 3 Apr 2007 06:40:21 +0000 (06:40 +0000)]
Changed the rle encoder a little and made it more universal.
Not only the repeated byte is calculated as (count ^ xor) + add
but also the raw encoding lenth byte is calculated as that too
patch by Xiaohui Sun sunxiaohui  dsp ac cn

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

17 years agocosmetic
Michael Niedermayer [Tue, 3 Apr 2007 02:18:00 +0000 (02:18 +0000)]
cosmetic

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

17 years agofix indention (less work to fix it myself than to check if a indention fix patch...
Michael Niedermayer [Tue, 3 Apr 2007 01:23:37 +0000 (01:23 +0000)]
fix indention (less work to fix it myself than to check if a indention fix patch is ok ...)

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