OSDN Git Service

coroid/libav_saccubus.git
16 years agoReplace HAVE_BFIN with ARCH_BFIN. Blackfin is a CPU architecture, not an
Diego Biurrun [Tue, 25 Sep 2007 07:30:22 +0000 (07:30 +0000)]
Replace HAVE_BFIN with ARCH_BFIN. Blackfin is a CPU architecture, not an
instruction set extension and configure sets ARCH_BFIN, not HAVE_BFIN.

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

16 years agomove all model related tables into their own struct
Aurelien Jacobs [Mon, 24 Sep 2007 22:29:11 +0000 (22:29 +0000)]
move all model related tables into their own struct

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

16 years agocosmetics: Sort CODEC_ID list.
Diego Biurrun [Mon, 24 Sep 2007 21:18:45 +0000 (21:18 +0000)]
cosmetics: Sort CODEC_ID list.

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

16 years agorename vp56_b6to3 to vp56_b2p
Aurelien Jacobs [Mon, 24 Sep 2007 20:52:11 +0000 (20:52 +0000)]
rename vp56_b6to3 to vp56_b2p

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

16 years agosome simplifications and uniformisation
Aurelien Jacobs [Mon, 24 Sep 2007 20:43:47 +0000 (20:43 +0000)]
some simplifications and uniformisation

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

16 years agoRemove check for input buffer size as it does not guarantee that
Kostya Shishkov [Mon, 24 Sep 2007 16:50:32 +0000 (16:50 +0000)]
Remove check for input buffer size as it does not guarantee that
decoder will not run out of output buffer bounds (and all suspected
decoders have their own checks now).

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

16 years agoOrganize header files and system functions checks
Ramiro Polla [Mon, 24 Sep 2007 15:52:06 +0000 (15:52 +0000)]
Organize header files and system functions checks

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

16 years agoadd support for yuva420p colorspace (yuv420p + alpha)
Aurelien Jacobs [Mon, 24 Sep 2007 15:11:49 +0000 (15:11 +0000)]
add support for yuva420p colorspace (yuv420p + alpha)

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

16 years agoadd support for yuva420p colorspace (yuv420p + alpha)
Aurelien Jacobs [Mon, 24 Sep 2007 13:21:41 +0000 (13:21 +0000)]
add support for yuva420p colorspace (yuv420p + alpha)

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

16 years agofactor out dequant table lookup outside loops, gives a 1-2% speed-up
Andreas Öman [Mon, 24 Sep 2007 13:01:15 +0000 (13:01 +0000)]
factor out dequant table lookup outside loops, gives a 1-2% speed-up
patch by Andreas Öman %andreas A olebyn P nu%
original thread:
Date: Sep 24, 2007 12:59 PM
Subject: [FFmpeg-devel] [PATCH] h264: factor out dequant table lookup outside loops

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

16 years agoAdd my name to the copyright header, since rtp_mpv now contains
Luca Abeni [Mon, 24 Sep 2007 12:15:42 +0000 (12:15 +0000)]
Add my name to the copyright header, since rtp_mpv now contains
a fair amount of code written by me

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

16 years agoremove done items
Michael Niedermayer [Mon, 24 Sep 2007 11:47:11 +0000 (11:47 +0000)]
remove done items

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

16 years agoFix a warning by removing an useless assignment (buf_ptr should be only
Luca Abeni [Mon, 24 Sep 2007 10:43:26 +0000 (10:43 +0000)]
Fix a warning by removing an useless assignment (buf_ptr should be only
used in the RTP muxer, and not in the demuxer)

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

16 years agocosmetic (get rid of _ at the start of local variable names)
Michael Niedermayer [Mon, 24 Sep 2007 07:31:43 +0000 (07:31 +0000)]
cosmetic (get rid of _ at the start of local variable names)

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

16 years agoDo not try to decode more data than output buffer may hold
Kostya Shishkov [Mon, 24 Sep 2007 03:32:24 +0000 (03:32 +0000)]
Do not try to decode more data than output buffer may hold

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

16 years agoVIS-specific code should be enabled conditional to HAVE_VIS, not ARCH_SPARC.
Diego Biurrun [Sun, 23 Sep 2007 21:59:09 +0000 (21:59 +0000)]
VIS-specific code should be enabled conditional to HAVE_VIS, not ARCH_SPARC.

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

16 years agocreate and use check_asm() function
Måns Rullgård [Sun, 23 Sep 2007 21:52:09 +0000 (21:52 +0000)]
create and use check_asm() function

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

16 years agocosmetics: Move LDCONFIG variable to a more sensible place in config.mak.
Diego Biurrun [Sun, 23 Sep 2007 21:37:16 +0000 (21:37 +0000)]
cosmetics: Move LDCONFIG variable to a more sensible place in config.mak.

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

16 years agosome experimental iterative quantization code
Michael Niedermayer [Sun, 23 Sep 2007 21:11:36 +0000 (21:11 +0000)]
some experimental iterative quantization code
disabled as it is VERY slow
gain is 0.1-0.2 psnr at low qp

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

16 years agoMove VIS CFLAGS settings into configure.
Diego Biurrun [Sun, 23 Sep 2007 21:06:08 +0000 (21:06 +0000)]
Move VIS CFLAGS settings into configure.

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

16 years agoVIS-specific code should be compiled conditional to HAVE_VIS, not ARCH_SPARC.
Diego Biurrun [Sun, 23 Sep 2007 21:02:22 +0000 (21:02 +0000)]
VIS-specific code should be compiled conditional to HAVE_VIS, not ARCH_SPARC.

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

16 years agoAdd a proper test for VIS instruction support.
Diego Biurrun [Sun, 23 Sep 2007 21:01:00 +0000 (21:01 +0000)]
Add a proper test for VIS instruction support.
some help by Jan Knutar, jknutar nic fi

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

16 years agoFix decoding of VMDs representing sprites (Last Dynasty, Woodruff).
Kostya Shishkov [Sun, 23 Sep 2007 16:11:07 +0000 (16:11 +0000)]
Fix decoding of VMDs representing sprites (Last Dynasty, Woodruff).

Fixes issue 101

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

16 years agoLooks like this APE decoder support versions starting from 3.95
Kostya Shishkov [Sun, 23 Sep 2007 07:40:34 +0000 (07:40 +0000)]
Looks like this APE decoder support versions starting from 3.95

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

16 years agospelling
Diego Biurrun [Sat, 22 Sep 2007 10:40:48 +0000 (10:40 +0000)]
spelling

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

16 years agoApply skip_loop_filter before checking if we can parallelize with the selected
Reimar Döffinger [Sat, 22 Sep 2007 10:28:22 +0000 (10:28 +0000)]
Apply skip_loop_filter before checking if we can parallelize with the selected
loop filter

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

16 years agoGuard against output buffer overflows
Kostya Shishkov [Sat, 22 Sep 2007 09:21:43 +0000 (09:21 +0000)]
Guard against output buffer overflows

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

16 years agoDo not decode more data than output buffer may hold
Kostya Shishkov [Sat, 22 Sep 2007 09:09:47 +0000 (09:09 +0000)]
Do not decode more data than output buffer may hold

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

16 years agoduplicate note
Michael Niedermayer [Sat, 22 Sep 2007 09:02:53 +0000 (09:02 +0000)]
duplicate note

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

16 years agoindent
Michael Niedermayer [Sat, 22 Sep 2007 08:58:49 +0000 (08:58 +0000)]
indent

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

16 years agofix segfault with http://samples.mplayerhq.hu/nsv/nsv_samples/ot171_novideo.nsv.bz2
Michael Niedermayer [Sat, 22 Sep 2007 08:55:17 +0000 (08:55 +0000)]
fix segfault with samples.mplayerhq.hu/nsv/nsv_samples/ot171_novideo.nsv.bz2
bug introduced in r8466
closes issue179

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

16 years agoProper check for --help and -h parameters
Ramiro Polla [Fri, 21 Sep 2007 23:30:57 +0000 (23:30 +0000)]
Proper check for --help and -h parameters

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

16 years agoLet the dependency checker decide about x11_grab_device_demuxer
Ramiro Polla [Fri, 21 Sep 2007 20:01:43 +0000 (20:01 +0000)]
Let the dependency checker decide about x11_grab_device_demuxer

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

16 years agoHDYC fourcc, sample hdyc/Test2.avi
Baptiste Coudurier [Fri, 21 Sep 2007 18:23:46 +0000 (18:23 +0000)]
HDYC fourcc, sample hdyc/Test2.avi

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

16 years agoReplace one-lined if;elses to && ||
Ramiro Polla [Fri, 21 Sep 2007 16:42:54 +0000 (16:42 +0000)]
Replace one-lined if;elses to && ||

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

16 years agoadd D-10 NTSC support
Baptiste Coudurier [Fri, 21 Sep 2007 16:30:58 +0000 (16:30 +0000)]
add D-10 NTSC support

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

16 years agoextract correct d10 aes3 audio channels number
Baptiste Coudurier [Fri, 21 Sep 2007 16:28:17 +0000 (16:28 +0000)]
extract correct d10 aes3 audio channels number

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

16 years agoSimplify H.264 decode_cabac_mb_cbp_luma(), giving a ~0.5% speedup.
Andreas Öman [Fri, 21 Sep 2007 00:26:31 +0000 (00:26 +0000)]
Simplify H.264 decode_cabac_mb_cbp_luma(), giving a ~0.5% speedup.
patch by Andreas Öman, andreas olebyn nu
Date: Thu, 20 Sep 2007 12:59:19 +0200
Subject: [FFmpeg-devel] [PATCH] simplify h264's decode_cabac_mb_cbp_luma()

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

16 years agoallcodecs.h and allformats.h are not used anymore
Aurelien Jacobs [Thu, 20 Sep 2007 20:42:50 +0000 (20:42 +0000)]
allcodecs.h and allformats.h are not used anymore

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

16 years agoremove last dependencies on allformats.h and allcodecs.h
Aurelien Jacobs [Thu, 20 Sep 2007 20:36:15 +0000 (20:36 +0000)]
remove last dependencies on allformats.h and allcodecs.h

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

16 years agocosmetics: typo
Diego Biurrun [Wed, 19 Sep 2007 21:28:42 +0000 (21:28 +0000)]
cosmetics: typo

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

16 years agoMake parse_date return INT64_MIN in case of unparsable input.
Stefano Sabatini [Wed, 19 Sep 2007 12:38:07 +0000 (12:38 +0000)]
Make parse_date return INT64_MIN in case of unparsable input.
Patch by Stefano Sabatini: [stefano sabatini-lala poste it]
Original thread:
[FFmpeg-devel] [PATCH] Enhace documentation forlibavformat/utils.c:parse_date
Date: 08/17/2007 09:40 PM

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

16 years agoAdd extralibs to the dependency checker
Ramiro Polla [Tue, 18 Sep 2007 19:07:52 +0000 (19:07 +0000)]
Add extralibs to the dependency checker

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

16 years agogpl for the X11 grabber has already been checked for
Ramiro Polla [Tue, 18 Sep 2007 18:58:02 +0000 (18:58 +0000)]
gpl for the X11 grabber has already been checked for

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

16 years agoUse enable and disable macros where appropriate
Ramiro Polla [Tue, 18 Sep 2007 18:46:26 +0000 (18:46 +0000)]
Use enable and disable macros where appropriate

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

16 years agoRemove inline from function that is exported.
Ivan Kalvachev [Tue, 18 Sep 2007 18:12:53 +0000 (18:12 +0000)]
Remove inline from function that is exported.
Issue noticed by Bernhard Rosenkraenzer.

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

16 years agoProperly check for -lm
Ramiro Polla [Tue, 18 Sep 2007 18:01:07 +0000 (18:01 +0000)]
Properly check for -lm

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

16 years agoAdd support for VP6A in flv.
Aurelien Jacobs [Tue, 18 Sep 2007 15:36:29 +0000 (15:36 +0000)]
Add support for VP6A in flv.
Those files really contain 2 standard VP6 video streams:
 - the "normal" video stream
 - the alpha plan video stream (which is a standard
   YV12 video with it's U an V plans all set to 0)
closes issue166

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

16 years agocosmetics: sort()
Diego Biurrun [Tue, 18 Sep 2007 10:35:16 +0000 (10:35 +0000)]
cosmetics: sort()

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

16 years agoAdd explanatory comments to the parse_date function.
Stefano Sabatini [Tue, 18 Sep 2007 08:26:10 +0000 (08:26 +0000)]
Add explanatory comments to the parse_date function.
patch by Stefano Sabatini, stefano.sabatini-lala poste it

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

16 years agoRemove forced -pthread for freebsd.
Ramiro Polla [Mon, 17 Sep 2007 19:35:42 +0000 (19:35 +0000)]
Remove forced -pthread for freebsd.
Configure properly detects which flags are needed on --enable-pthreads

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

16 years agoIndent
Ramiro Polla [Mon, 17 Sep 2007 19:33:55 +0000 (19:33 +0000)]
Indent

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

16 years agoRemove --disable-bktr option from configure
Ramiro Polla [Mon, 17 Sep 2007 19:30:55 +0000 (19:30 +0000)]
Remove --disable-bktr option from configure
--disable-demuxer=bktr should be used instead

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

16 years agoblackfin vsad primitives
Marc Hoffman [Mon, 17 Sep 2007 13:23:16 +0000 (13:23 +0000)]
blackfin vsad primitives

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

16 years agoproperly tell the compiler that A0 and A1 are clobbered
Marc Hoffman [Mon, 17 Sep 2007 13:17:50 +0000 (13:17 +0000)]
properly tell the compiler that A0 and A1 are clobbered

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

16 years agoFix an ffserver crash when a non-existing rtsp: url is requested
Luca Abeni [Mon, 17 Sep 2007 12:47:44 +0000 (12:47 +0000)]
Fix an ffserver crash when a non-existing rtsp: url is requested

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

16 years agodisable loads of debug messages to reduce object size
Aurelien Jacobs [Mon, 17 Sep 2007 12:01:37 +0000 (12:01 +0000)]
disable loads of debug messages to reduce object size

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

16 years agoRemove redundant ARCH_SPARC #ifdef, the file is compiled conditional to
Diego Biurrun [Mon, 17 Sep 2007 10:14:56 +0000 (10:14 +0000)]
Remove redundant ARCH_SPARC #ifdef, the file is compiled conditional to
ARCH_SPARC anyway.

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

16 years agoReplace manual variable setting with the disable function.
Diego Biurrun [Mon, 17 Sep 2007 10:08:27 +0000 (10:08 +0000)]
Replace manual variable setting with the disable function.

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

16 years agoRemove cross_prefix from ln command.
Matthias Schneider [Mon, 17 Sep 2007 08:23:23 +0000 (08:23 +0000)]
Remove cross_prefix from ln command.
patch by Matthias Schneider, ma30002000 yahoo de

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

16 years agoUse AVFMT_FLAG_GENPTS for the input file (the RTP output format needs all the
Luca Abeni [Mon, 17 Sep 2007 07:50:04 +0000 (07:50 +0000)]
Use AVFMT_FLAG_GENPTS for the input file (the RTP output format needs all the
PTSs to be set)

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

16 years agoloosen dependencies over allformats.h
Aurelien Jacobs [Sun, 16 Sep 2007 23:00:44 +0000 (23:00 +0000)]
loosen dependencies over allformats.h

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

16 years agoremove obsolete and wrong extern declaration
Aurelien Jacobs [Sun, 16 Sep 2007 22:50:12 +0000 (22:50 +0000)]
remove obsolete and wrong extern declaration

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

16 years agomonkey audio demuxer now can parse ape tags
Benjamin Zores [Sun, 16 Sep 2007 19:51:10 +0000 (19:51 +0000)]
monkey audio demuxer now can parse ape tags

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

16 years agoMove av_exit() to before main()
Ramiro Polla [Sun, 16 Sep 2007 18:08:51 +0000 (18:08 +0000)]
Move av_exit() to before main()

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

16 years agoSplit av_exit() out of main()
Ramiro Polla [Sun, 16 Sep 2007 18:08:01 +0000 (18:08 +0000)]
Split av_exit() out of main()

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

16 years agoDefine mandir as $(PREFIX)/share/man rather than as $(PREFIX)/man
Stefano Sabatini [Sun, 16 Sep 2007 17:44:49 +0000 (17:44 +0000)]
Define mandir as $(PREFIX)/share/man rather than as $(PREFIX)/man
to better comply with the FHS.
patch by Stefano Sabatini, stefano.sabatini-lala poste it

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

16 years agocosmetics: typo
Diego Biurrun [Sun, 16 Sep 2007 16:23:34 +0000 (16:23 +0000)]
cosmetics: typo

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

16 years agowarning fix:
Diego Biurrun [Sun, 16 Sep 2007 14:37:01 +0000 (14:37 +0000)]
warning fix:
nutdec.c: In function ‘nut_read_timestamp’:
nutdec.c:759: warning: label ‘resync’ defined but not used

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

16 years agofix image corruption when with multi-threaded decoding.
Andreas Öman [Sun, 16 Sep 2007 10:37:07 +0000 (10:37 +0000)]
fix image corruption when with multi-threaded decoding.
dequant-tables were not correctly reinitialized in the slave
contexts when a PPS came with updated matrices.
Patch by Andreas Öman %andreas A olebyn P nu%
Original thread:
date: Sep 16, 2007 6:14 AM
subject: [FFmpeg-devel] Parallelized h264 image corruption bug

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

16 years agoRegister myself as APE maintainer
Kostya Shishkov [Sun, 16 Sep 2007 04:47:12 +0000 (04:47 +0000)]
Register myself as APE maintainer

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

16 years agoln is not available on all platforms, so introduce a variable for it
Dave Yeo [Sat, 15 Sep 2007 11:09:30 +0000 (11:09 +0000)]
ln is not available on all platforms, so introduce a variable for it
that can be set to a suitable platform-specific command.
patch by Dave Yeo, daveryeo telus net

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

16 years agoEnable error resilience in WMV3/VC-1 decoder
Kostya Shishkov [Sat, 15 Sep 2007 11:06:27 +0000 (11:06 +0000)]
Enable error resilience in WMV3/VC-1 decoder

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

16 years agoMake distclean should remove .vhookdep.
Stefano Sabatini [Sat, 15 Sep 2007 09:49:27 +0000 (09:49 +0000)]
Make distclean should remove .vhookdep.
patch by Stefano Sabatini, stefano.sabatini-lala poste it

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

16 years agoHALFPQ should be used only for when PQUANT is selected
Kostya Shishkov [Sat, 15 Sep 2007 09:24:53 +0000 (09:24 +0000)]
HALFPQ should be used only for when PQUANT is selected

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

16 years agoIn case when any quantizer may occur, HALFPQ should be zero
Kostya Shishkov [Sat, 15 Sep 2007 09:23:58 +0000 (09:23 +0000)]
In case when any quantizer may occur, HALFPQ should be zero

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

16 years agoSet codec_id correctly for RJPG codec_tag
Reimar Döffinger [Sat, 15 Sep 2007 08:19:01 +0000 (08:19 +0000)]
Set codec_id correctly for RJPG codec_tag

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

16 years agoskip incomplete frames
Justin Ruggles [Sat, 15 Sep 2007 02:44:28 +0000 (02:44 +0000)]
skip incomplete frames

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

16 years agobetter AC3 header error reporting
Justin Ruggles [Sat, 15 Sep 2007 02:41:24 +0000 (02:41 +0000)]
better AC3 header error reporting

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

16 years agofix random dithering of zero-bit mantissas
Justin Ruggles [Sat, 15 Sep 2007 00:43:40 +0000 (00:43 +0000)]
fix random dithering of zero-bit mantissas

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

16 years agocosmetics: rename variables. tbl->tab for consistency with other AC3 tables
Justin Ruggles [Sat, 15 Sep 2007 00:19:21 +0000 (00:19 +0000)]
cosmetics: rename variables. tbl->tab for consistency with other AC3 tables

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

16 years agofix decoding of DolbyNet AC3
Justin Ruggles [Sat, 15 Sep 2007 00:00:57 +0000 (00:00 +0000)]
fix decoding of DolbyNet AC3

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

16 years agoSupport fragmentation for AAC frames
Luca Abeni [Fri, 14 Sep 2007 09:00:31 +0000 (09:00 +0000)]
Support fragmentation for AAC frames

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

16 years agoSupport for AAC streaming over RTP. Fragmentation is not implemented yet
Luca Abeni [Fri, 14 Sep 2007 08:17:06 +0000 (08:17 +0000)]
Support for AAC streaming over RTP. Fragmentation is not implemented yet

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

16 years agoCheck unp_size for possible overflows too
Kostya Shishkov [Fri, 14 Sep 2007 06:01:29 +0000 (06:01 +0000)]
Check unp_size for possible overflows too

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

16 years agospelling/wording/grammar
Diego Biurrun [Thu, 13 Sep 2007 14:17:09 +0000 (14:17 +0000)]
spelling/wording/grammar

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

16 years agomisc wording/grammar/spelling improvements
Diego Biurrun [Thu, 13 Sep 2007 13:45:49 +0000 (13:45 +0000)]
misc wording/grammar/spelling improvements

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

16 years agoForward error code when reading a v4l2 frame
Benoit Fouet [Thu, 13 Sep 2007 12:46:30 +0000 (12:46 +0000)]
Forward error code when reading a v4l2 frame
Patch by Benoit Fouet (benoit.fouet AT purplelabs DOT com)

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

16 years agoPass correct CPU flags to compilation of sparc/simple_idct_vis.o.
Diego Biurrun [Thu, 13 Sep 2007 09:13:56 +0000 (09:13 +0000)]
Pass correct CPU flags to compilation of sparc/simple_idct_vis.o.
based on a patch by Denes Balatoni, dbalatoni interware hu

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

16 years agoAdd checks on input/output buffers size for some audio decoders
Kostya Shishkov [Thu, 13 Sep 2007 05:59:58 +0000 (05:59 +0000)]
Add checks on input/output buffers size for some audio decoders

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

16 years agoMonkey Audio decoder
Kostya Shishkov [Thu, 13 Sep 2007 03:22:47 +0000 (03:22 +0000)]
Monkey Audio decoder

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

16 years agoa little bit more bitstream syntax for the residual
Michael Niedermayer [Wed, 12 Sep 2007 22:33:40 +0000 (22:33 +0000)]
a little bit more bitstream syntax for the residual

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

16 years agomake intra dc prediction less contradictory
Michael Niedermayer [Wed, 12 Sep 2007 22:26:26 +0000 (22:26 +0000)]
make intra dc prediction less contradictory

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

16 years agostop parsing udta if size is wrong/garbage, fix issue 154, fix RQ004F14.MOV
Baptiste Coudurier [Wed, 12 Sep 2007 10:18:01 +0000 (10:18 +0000)]
stop parsing udta if size is wrong/garbage, fix issue 154, fix RQ004F14.MOV

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

16 years agolink fixes
Diego Biurrun [Wed, 12 Sep 2007 10:04:44 +0000 (10:04 +0000)]
link fixes

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

16 years agoRecurse into libswscale on uninstall.
Dave Yeo [Wed, 12 Sep 2007 09:35:30 +0000 (09:35 +0000)]
Recurse into libswscale on uninstall.
patch by Dave Yeo, daveryeo telus net

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

16 years agoTypo
Ramiro Polla [Tue, 11 Sep 2007 23:46:46 +0000 (23:46 +0000)]
Typo

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

16 years agofix timestamps used for ratecontrol
Michael Niedermayer [Tue, 11 Sep 2007 22:46:41 +0000 (22:46 +0000)]
fix timestamps used for ratecontrol
these were wrong (in pts vs dts sense) when b frames were in use
they were also wrong if the average framerate was smaller than 1/timebase
resulting in totally wrong final bitrate

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

16 years agor_frame_rate
Michael Niedermayer [Tue, 11 Sep 2007 10:25:34 +0000 (10:25 +0000)]
r_frame_rate

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

16 years agomove unrelated functions declarations out of allformats.h
Aurelien Jacobs [Tue, 11 Sep 2007 09:27:46 +0000 (09:27 +0000)]
move unrelated functions declarations out of allformats.h

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