commit_msg
stringlengths
1
24.2k
commit_hash
stringlengths
2
84
project
stringlengths
2
40
source
stringclasses
4 values
labels
int64
0
1
repo_url
stringlengths
26
70
commit_url
stringlengths
74
118
commit_date
stringlengths
25
25
configure: Check for a different SDL function This one is available both in SDL 1.2 and in 1.3 (which is the current version available e.g. in macports), while 1.3 doesn't contain SDL_Linked_Version(). The current check for SDL_Linked_Version() (available since SDL 1.2.13) was added in 8f1b06c8, because including the headers for SDL_Init() redirects the main() function, requiring the main function signature to match the one of SDL_main (including argc/argv). Signed-off-by: Martin Storsjö <[email protected]>
9bd41bb191f7c3bb6edeeb3b09bd2c6d6e4aa677
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9bd41bb191f7c3bb6edeeb3b09bd2c6d6e4aa677
2012-03-29 21:25:59+03:00
frwu: use MKTAG to check marker instead of AV_RL32 Using intreadwrite.h for this is overkill. Signed-off-by: Paul B Mahol <[email protected]> Signed-off-by: Ronald S. Bultje <[email protected]>
05d089a80bf01de696b918c3491d1127eba7cbc0
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/05d089a80bf01de696b918c3491d1127eba7cbc0
2012-03-12 11:41:02-07:00
vc1: add missing entries to ff_vc1_fps_nr. Fixes out of array read Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
2440040c7bde23f295ef04b159a677b81749012f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2440040c7bde23f295ef04b159a677b81749012f
2012-03-10 23:12:42+01:00
DV demuxer: Stricter check for avio_read result. Signed-off-by: Reimar Döffinger <[email protected]>
b52bd2a4ab99223eee39f0100a1395e3c98a09ad
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b52bd2a4ab99223eee39f0100a1395e3c98a09ad
2012-03-10 10:43:14+01:00
matroskaenc: change cluster_pos to use -1 as the "I'm not currently working on a cluster" signal instead of 0. This avoids problems where avio_tell() returns 0. I've updated all the checks against cluster_pos Signed-off-by: Michael Niedermayer <[email protected]>
bda5b6627a558cf10c4d09eeff264289a1370cc1
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bda5b6627a558cf10c4d09eeff264289a1370cc1
2012-03-14 21:51:38+01:00
g722enc: check for trellis data allocation error
8e2555d3b1855374707a4d53bf93d3e07d61e05c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8e2555d3b1855374707a4d53bf93d3e07d61e05c
2012-02-25 11:49:41-05:00
wmadec: fix off by 1 error on the pow_tab index check. Fixes global out of array read. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
d964db5742f317ff6c6ed6cf3e168b5b38566069
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d964db5742f317ff6c6ed6cf3e168b5b38566069
2012-03-02 16:44:49+01:00
rv34: remove dead code in intra availability check This was an incorrect copy-and-paste to a code not needing the original code. Spotted by Jason in a previous review but forgotten in the commit. Signed-off-by: Ronald S. Bultje <[email protected]>
294c05ce8a7fbe3de74023065c264c1d720ec3cd
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/294c05ce8a7fbe3de74023065c264c1d720ec3cd
2012-03-07 10:29:52-08:00
h264: don't use redzone in loopfilter on win64. Red zone usage is not allowed in the Win64 ABI.
8fb26950ed3c4cd1e175c4439726884926cba022
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8fb26950ed3c4cd1e175c4439726884926cba022
2012-02-19 15:31:03-08:00
flvdec: Remove the now redundant check for known broken metadata creator The index validation identifies these indexes as broken. Signed-off-by: Martin Storsjö <[email protected]>
e60bdb7e5ce55505599fe13238ae54d98c2cc0f7
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e60bdb7e5ce55505599fe13238ae54d98c2cc0f7
2012-02-27 12:07:24+02:00
jpeglsdec: Prevent out of array write. Signed-off-by: Michael Niedermayer <[email protected]>
00ab9cdae1a96dfea33cd505076a83823f390aa4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/00ab9cdae1a96dfea33cd505076a83823f390aa4
2012-02-14 01:22:38+01:00
doc: document amerge filter as an alternative for the -map_channel limitation.
d055c3286c979095650453f08a4d69fb6d995f92
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d055c3286c979095650453f08a4d69fb6d995f92
2012-02-02 14:31:17+01:00
wma: don't return 0 on invalid packets. Return 0 means "please return the same data again", i.e. it causes an infinite loop. Instead, return an error. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: [email protected]
9d3050d3e95e307ebc34a943484c7add838d1220
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9d3050d3e95e307ebc34a943484c7add838d1220
2012-02-18 09:13:38-08:00
avfilter: add some asserts() to check refcounts. Signed-off-by: Michael Niedermayer <[email protected]>
c6baa4046ac48d1cc39a9c8e1c037d3679f64e1e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c6baa4046ac48d1cc39a9c8e1c037d3679f64e1e
2012-01-22 19:30:40+01:00
lavf: Fix try_decode_frame() so it doesnt loop infinitely. Signed-off-by: Michael Niedermayer <[email protected]>
6072a19b4f311cb172d45e90daad90824e40e4b6
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6072a19b4f311cb172d45e90daad90824e40e4b6
2012-01-04 04:08:46+01:00
Optimize output buffer size check in base64 decode. Signed-off-by: Reimar Döffinger <[email protected]>
6af4c9814adb9fd87d2de723473c76e53e2c2b37
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6af4c9814adb9fd87d2de723473c76e53e2c2b37
2012-01-20 23:28:26+01:00
fate: Update file checksums after the mov muxer change in a78dbada55d6 Signed-off-by: Martin Storsjö <[email protected]>
5c7c9a9f3354164c793baf7796c8ed432a184b0c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5c7c9a9f3354164c793baf7796c8ed432a184b0c
2012-01-10 16:54:23+02:00
thumbnail: fix error code in case of invalid args.
f1f87439e51b581aa080b2672ec5cf72198626b7
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f1f87439e51b581aa080b2672ec5cf72198626b7
2011-12-27 11:15:21+01:00
issdemux: Check packet_size for validity Reviewed-by: Paul B Mahol <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
bf5cc805190b5811b786a454f01cccf9a7e366b9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bf5cc805190b5811b786a454f01cccf9a7e366b9
2011-12-29 15:25:07+01:00
mxfdec: Use MaterialPackage - Track - TrackID instead of the system_item hack
5fb800f49a72fe1de2d85774218c1855015fbd7d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5fb800f49a72fe1de2d85774218c1855015fbd7d
2011-12-08 19:11:57+01:00
options: set minimum for "threads" to zero A negative number of threads does not make sense and 0 is used for autodetection. Adds a symbolic name for autodetection.
c32e4029d99fb1bff3df86f62a3ce61d2419aae0
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c32e4029d99fb1bff3df86f62a3ce61d2419aae0
2011-12-22 21:50:07+01:00
cinepak: check strip_size Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Martin Storsjö <[email protected]>
867b496681b3cdc774b80764fbea42f7c9aca842
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/867b496681b3cdc774b80764fbea42f7c9aca842
2011-11-18 11:58:43+02:00
cinepak: remove redundant coordinate checks Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Martin Storsjö <[email protected]>
a4009c6a9adc9ea38eb56967b6a5e933451ae545
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a4009c6a9adc9ea38eb56967b6a5e933451ae545
2011-11-18 11:58:45+02:00
flvenc: adjust for negative DTS for all codecs, not just H.264
52375ba5677e54ebd5dc4e14ffaa0a3e9b676ce7
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/52375ba5677e54ebd5dc4e14ffaa0a3e9b676ce7
2011-10-20 13:06:15-04:00
fifo: Make writes atomic. Prior to this a X bytes write could be seen as less than X bytes being available if the check was done at an unfortunate moment. Signed-off-by: Michael Niedermayer <[email protected]>
9eb0d8bab1c475edf73c36146d1c3d31ea47f997
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9eb0d8bab1c475edf73c36146d1c3d31ea47f997
2011-12-23 00:18:36+01:00
ff_dv_frame_profile2: Check input buffer size. Based on code by DivX, Inc. / drffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
51b0694bc051cda2bfed048a35e694d1047c6ef0
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/51b0694bc051cda2bfed048a35e694d1047c6ef0
2011-10-04 04:22:55+02:00
dwt: removed some warnings in make checkheaders (cherry picked from commit 1124056ac054842f36866b4dabb9f8aae0ad06b6) Signed-off-by: Michael Niedermayer <[email protected]>
4bb2b5afc995ccf290860d349dfbff4561e25fc4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4bb2b5afc995ccf290860d349dfbff4561e25fc4
2011-11-04 23:59:28+01:00
nellymoser: check output buffer size before decoding
8b31c086b6065084644b86a63c9171f3094cf6ad
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8b31c086b6065084644b86a63c9171f3094cf6ad
2011-10-02 10:19:04-04:00
h264: check for invalid bit depth value. Signed-off-by: Michael Niedermayer <[email protected]>
c2b7f7748be447e1446f63b13da472ba7e00f329
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c2b7f7748be447e1446f63b13da472ba7e00f329
2011-10-02 19:00:54+02:00
ffplay: limit lowres to the maximum supported. Fixes Ticket591 Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Marton Balint <[email protected]>
d8407ee2b1e9f62763a2f47d55f80f7993718c99
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d8407ee2b1e9f62763a2f47d55f80f7993718c99
2011-11-08 22:34:39+01:00
swresample: check for invalid sample formats. Bug-Found-by: Justin Ruggles Signed-off-by: Michael Niedermayer <[email protected]>
834b3760a7ca112573e813bd6c3573a8c0daf4ed
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/834b3760a7ca112573e813bd6c3573a8c0daf4ed
2011-10-01 01:39:17+02:00
swscale: remove alp/chr/lumSrcOffset. They are hacks added to reuse the same scaling function for different formats and they may cause problems when SIMD implementation of the same functions are used along with pure C functions.
ea281753120f55fc3a3102ac54ba291d0ffcd43d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ea281753120f55fc3a3102ac54ba291d0ffcd43d
2011-06-07 10:03:18-04:00
vf_unsharp: set default chroma size value to 5x5 The previous default value 0x0 was not good, since it is not even valid. Signed-off-by: Anton Khirnov <[email protected]>
1ee20141900c98f9dc25eca121c66c3ff468c1e4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1ee20141900c98f9dc25eca121c66c3ff468c1e4
2011-09-29 07:20:05+02:00
Use explicit struct initializers for AVOutputFormat/AVInputFormat declarations.
30b4ee7901ec5dbe24f1c75c0c0b43ba551c858b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/30b4ee7901ec5dbe24f1c75c0c0b43ba551c858b
2011-09-24 12:11:17+02:00
adpcm: check buffer size in Funcom ISS decoder before reading header. Also use the post-header data size to control termination of the main decoding loop.
9662539c103d54cacf9adbf1345013e011c08d4f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9662539c103d54cacf9adbf1345013e011c08d4f
2011-09-29 16:54:01-04:00
Fix -loop_input.
08d2cee49c323715b66df0e4ff45ec0e07aaea7b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/08d2cee49c323715b66df0e4ff45ec0e07aaea7b
2011-08-03 11:45:33+02:00
aac: Don't attempt to output configure an invalid channel configuration.
94d47382e0558d05e4ba2dd2e3717405d2a703ad
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/94d47382e0558d05e4ba2dd2e3717405d2a703ad
2011-08-09 12:16:40-07:00
wav: remove an invalid free(). Signed-off-by: Anton Khirnov <[email protected]>
8d0786ec6d066f892f29da6593e99e73a7dfd014
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8d0786ec6d066f892f29da6593e99e73a7dfd014
2011-06-13 20:47:06+02:00
Hack around gcc 4.6 breaking asm using call. gcc 4.6 no longer decrements esp to account for local variables. Thus using call will end up overwriting some local variable. So add an extra one it can safely clobber. This is a huge hack because it's basically pure chance it works, no idea how this is supposed to be done. Fixes trac ticket #397. Signed-off-by: Reimar Döffinger <[email protected]>
c928e9172928f3cddab949b107dd53b6bf79555e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c928e9172928f3cddab949b107dd53b6bf79555e
2011-09-20 19:05:51+02:00
h264: Fix 10-bit H.264 x86 chroma v loopfilter asm. The tc variable was not splatted correctly. Signed-off-by: Ronald S. Bultje <[email protected]>
6c031a3338d49dd61cf34fd703631f5a47205912
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6c031a3338d49dd61cf34fd703631f5a47205912
2011-06-10 14:44:57-04:00
eac3enc: use frame exponent strategy when applicable. This checks if the set of selected exponent strategies for all blocks in a channel are in the frame exponent strategy table, and if so, writes the table index instead of each strategy. This saves up to 7 bits per channel per frame, so the overall effect on quality is small.
08a747afb98c11da48b89339c2f1c5fdc56ced7e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/08a747afb98c11da48b89339c2f1c5fdc56ced7e
2011-07-19 14:15:00-04:00
postprocess: Remove test for impossible condition (was: Re: postprocess.c: replace check for p==NULL with *p==0)
c96f3750c22ef1576a46140f3101e3585041f41f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c96f3750c22ef1576a46140f3101e3585041f41f
2011-06-02 14:43:14+02:00
lavf: remove duplicate assignment in avformat_alloc_context. AVClass is already initialized in avformat_get_context_defaults.
29e3489602aeb72dbd8ceebfcfa7025e8a57acaf
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/29e3489602aeb72dbd8ceebfcfa7025e8a57acaf
2011-05-17 23:01:42+02:00
lavdev: improve feedback in case of invalid frame rate/size Show the invalid string in the error message. While at it also prefer "Could not" over "Couldn't", plain forms are preferred over contractions (simplify readability, especially for non English-savvy people). Signed-off-by: Anton Khirnov <[email protected]>
41b68dce4d148b6a227d001b32deb275c01aa550
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/41b68dce4d148b6a227d001b32deb275c01aa550
2011-06-23 08:49:49+02:00
SVQ3: Check that things match up after a frame. Signed-off-by: Michael Niedermayer <[email protected]>
b0e7a932e6ea9bb83e7e15c4cd4c1bda110d16e2
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b0e7a932e6ea9bb83e7e15c4cd4c1bda110d16e2
2011-05-05 15:43:58+02:00
ffmpeg.c: check for interlaced flag in the correct place. In the corresponding codec context, not global options storage.
648e55ff1beea72b53f8fb231b3ef0fb16cd3e62
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/648e55ff1beea72b53f8fb231b3ef0fb16cd3e62
2011-05-08 10:43:24+02:00
If a MP3 file contains the string NSVs, the NSV probe will think it is a NSV file instead of a MP3 file. Check for 0xBEEF after a Video/Audio chunck for more accuracy. Signed-off-by: Michael Niedermayer <[email protected]>
b7903ab16b7c17fa09497632a0472ab3157574ed
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b7903ab16b7c17fa09497632a0472ab3157574ed
2011-05-12 14:37:50+02:00
dpx: Do not use DPX encoder for decoding. 10l to the one who hasn't checked this.
b178cd76b27ad317e6a93db63f5630f268ce21fe
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b178cd76b27ad317e6a93db63f5630f268ce21fe
2011-05-02 11:04:20+02:00
file: Fix mmap error check. Signed-off-by: Michael Niedermayer <[email protected]>
10ff2967ea8d17f7e46599497214280a21ca409a
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/10ff2967ea8d17f7e46599497214280a21ca409a
2011-05-05 00:52:03+02:00
fade: fix draw_slice() check on fade->factor value draw_slice() checks that the fade factor is < 65536 and only calculates the fade if so. But the fade factor is clipped in end_frame() by av_clip_uint16() to 65535, so the fade is calculated for every frame. This patch alters the check so that it compares with < 65535 (UINT16_MAX). Signed-off-by: Anton Khirnov <[email protected]>
b04d1abb40d32d8d08df39733e1b04a8a2f814ab
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b04d1abb40d32d8d08df39733e1b04a8a2f814ab
2011-04-25 22:45:44+02:00
mpegts: force the default timebase The mpegts muxer does not set the stream time base using av_set_pts_info, but expects it to have the default value of 1/90000. If the calling code changes stream pts before writing the header, other muxers override the time base at that point (like mpegenc.c).
0a962e61e956addb7cdc829e41b82fd76bea55db
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0a962e61e956addb7cdc829e41b82fd76bea55db
2011-04-14 13:51:26+02:00
ac3enc: move extract_exponents inner loop to ac3dsp Signed-off-by: Mans Rullgard <[email protected]>
2310ee4b1cca48609d06774b7c3c70a5f38f3473
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2310ee4b1cca48609d06774b7c3c70a5f38f3473
2011-04-04 18:27:22+01:00
CrystalHD: Remove redundant interlaced check. Signed-off-by: Philip Langdale <[email protected]>
3583eb93410a73cac8ddf291baa405005ff4c405
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3583eb93410a73cac8ddf291baa405005ff4c405
2011-03-26 16:09:48-07:00
Use strtoul to parse rtptime and seq values. strtol could return negative values, leading to various error messages, mainly "non-monotonically increasing dts".
907783f221ad9594a528681e30777705f11bf0b5
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/907783f221ad9594a528681e30777705f11bf0b5
2011-03-26 17:13:36+01:00
yadif: add parens around macro parameters This fixes compilation with preprocessors which do not add whitespace around replaced tokens, resulting in invalid expressions like 1--1. Signed-off-by: Mans Rullgard <[email protected]>
49e617f9565b6528fe707bae7ea4b62b10c771a5
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/49e617f9565b6528fe707bae7ea4b62b10c771a5
2011-03-08 02:08:31+01:00
configure: use pkg-config helpers This makes existing pkg-config uses as well as the libsdl checks use the new pkg-config helper functions, which should be more robust against broken systems. Signed-off-by: Mans Rullgard <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
849f80fecbada7c512737e13edec9516541996e3
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/849f80fecbada7c512737e13edec9516541996e3
2011-03-19 20:06:17+01:00
yadif: add parens around macro parameters This fixes compilation with preprocessors which do not add whitespace around replaced tokens, resulting in invalid expressions like 1--1. Signed-off-by: Mans Rullgard <[email protected]>
391a1327bd076c25c2b2509ab7ae0081c443b94e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/391a1327bd076c25c2b2509ab7ae0081c443b94e
2011-03-05 14:51:03+00:00
get rid of divisions in the inner loop of the drawtext filter Signed-off-by: Michael Niedermayer <[email protected]>
7d27902263af28c6c4875f1f815988d812e4b122
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7d27902263af28c6c4875f1f815988d812e4b122
2011-02-22 01:49:54+01:00
Add some debug log messages to AAC extradata On Wed, Apr 20, 2011 at 11:39 AM, Justin Ruggles <[email protected]> wrote: > On 04/20/2011 02:26 PM, Alex Converse wrote: > >> --- >>  libavcodec/aacdec.c |   10 +++++++++- >>  1 files changed, 9 insertions(+), 1 deletions(-) >> >> >> >> 0002-Add-some-Debug-log-messages-to-AAC-extradata.patch >> >> >> diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c >> index c9761a1..3ec274f 100644 >> --- a/libavcodec/aacdec.c >> +++ b/libavcodec/aacdec.c >> @@ -79,7 +79,6 @@ >>             Parametric Stereo. >>   */ >> >> - >>  #include "avcodec.h" >>  #include "internal.h" >>  #include "get_bits.h" > > > stray whitespace change > oops, fixed >From 94e8d0eea77480630f84368c97646cabc0f50628 Mon Sep 17 00:00:00 2001 From: Alex Converse <[email protected]> Date: Wed, 20 Apr 2011 11:23:34 -0700 Subject: [PATCH] Add some debug log messages to AAC extradata MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------1" This is a multi-part message in MIME format. --------------1 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: 8bit
785c4418289e5aace9823823a8d19974e40d4b64
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/785c4418289e5aace9823823a8d19974e40d4b64
2011-04-22 20:36:57-07:00
vmdaudio: simplify vmdaudio_decode_frame() by handling block_type first, then making a single call to vmdaudio_loadsound(). This also adds output buffer size checks for AUDIO and SILENCE block types. Signed-off-by: Ronald S. Bultje <[email protected]>
1574eff3d23ad799d25454a449b01f94795495ea
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1574eff3d23ad799d25454a449b01f94795495ea
2011-02-23 21:51:12-05:00
VP8: slightly faster loopfilter sharpness logic (cherry picked from commit 8a2c99b48688008dd0a01c4826161ad4f7c25436)
e9266a2be04ea505285e32e411ef6120e9cbeba4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e9266a2be04ea505285e32e411ef6120e9cbeba4
2011-02-06 20:31:44+01:00
vmdaudio: validate block type Signed-off-by: Ronald S. Bultje <[email protected]> (cherry picked from commit 22f893e1c9f9387f0a021f775757130fa48e0180)
ebed7b6865761d0d903757c5121ca2dbfba055dd
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ebed7b6865761d0d903757c5121ca2dbfba055dd
2011-02-26 03:16:02+01:00
mpegtsenc: support CODEC_ID_AAC_LATM $subject. Have used this for loopback testing with mpegts.c. -- Peter (A907 E02F A6E5 0CD2 34CD 20D2 6760 79C5 AC40 DD6B) [2. text/x-diff; 0001-mpegtsenc-support-CODEC_ID_AAC_LATM.patch] From 0f7f9db4b7da1793996af6dda84298507703759a Mon Sep 17 00:00:00 2001 From: Peter Ross <[email protected]> Date: Sun, 9 Jan 2011 09:45:50 +1100 Subject: [PATCH] mpegtsenc: support CODEC_ID_AAC_LATM Signed-off-by: Mans Rullgard <[email protected]> (cherry picked from commit 4d54df8e07dca3e30ebcaffd1a0e750a876700a2)
59884f55d1eaf1481771ee97b977000b8be1ddc7
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/59884f55d1eaf1481771ee97b977000b8be1ddc7
2011-01-30 03:41:00+01:00
Fix and enable horizontal >=SSE2 mbedge loopfilter. Originally committed as revision 24409 to svn://svn.ffmpeg.org/ffmpeg/trunk
003243c3c2bdfa485eedbed593a0bb2feae66ab9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/003243c3c2bdfa485eedbed593a0bb2feae66ab9
2010-07-22 01:35:26+00:00
fate: make lavfi tests output only md5 Instead of saving huge raw files, use the md5: output pseudo-protocol to calculate the checksum of the file directly. This is especially useful when testing on remote targets as it avoids transferring 3.6GB over the network.
f4b1e21a6304cda58ac36401d8f8dec7ff61d056
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f4b1e21a6304cda58ac36401d8f8dec7ff61d056
2011-01-22 00:30:12+00:00
Change return statement, the REP_RET is a mistake since the else case (x86-64, sse2) doesn't actually loop, so REP_RET isn't necessary. Originally committed as revision 24268 to svn://svn.ffmpeg.org/ffmpeg/trunk
526e831a4603685bfc3dfd1f13f0c036c86dd072
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/526e831a4603685bfc3dfd1f13f0c036c86dd072
2010-07-16 18:29:14+00:00
Fix strict-aliasing violations in MPV_motion_internal. Patch by Eli Friedman, eli D friedman A gmail Originally committed as revision 23894 to svn://svn.ffmpeg.org/ffmpeg/trunk
99267eb702d35b863e13fcb4fc829acbf7016e55
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/99267eb702d35b863e13fcb4fc829acbf7016e55
2010-06-30 01:47:42+00:00
mingw32: properly check if vfw capture is supported by the system headers Remove check for an specific w32api version, checking instead if vfw.h supports vfw capture. The defines in w32api 3.12 were wrong, so this must be accounted for in the check. Originally committed as revision 24203 to svn://svn.ffmpeg.org/ffmpeg/trunk
ec1ee802a2e1cb3317bd44851cc28f95b5916051
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ec1ee802a2e1cb3317bd44851cc28f95b5916051
2010-07-11 22:17:17+00:00
ARM: fix build with TI compiler The TI compiler defines __eabi__ to signal that ARM EABI is in use. We must check for this in addition to the gcc macro __ARM_EABI__. Originally committed as revision 23804 to svn://svn.ffmpeg.org/ffmpeg/trunk
f30d51d74f06cefe1e8f47ea454b07b361401076
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f30d51d74f06cefe1e8f47ea454b07b361401076
2010-06-26 18:34:56+00:00
aacenc: Select the TLS (two-loop search) as the default scalefactor coder. Originally committed as revision 23133 to svn://svn.ffmpeg.org/ffmpeg/trunk
960323a2304253bad5c9896e6b1060eb136b579b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/960323a2304253bad5c9896e6b1060eb136b579b
2010-05-14 16:49:21+00:00
Do not initialize res in url_fseek(), in the case !s->seek directly return AVERROR(EPIPE) rather than the pre-defined value of res. Slightly improve readability. Originally committed as revision 22939 to svn://svn.ffmpeg.org/ffmpeg/trunk
9d30e0682a792436e1880fd6ce51966d50ec9c2b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9d30e0682a792436e1880fd6ce51966d50ec9c2b
2010-04-21 21:19:25+00:00
Coloring the log with ANSI. Ive checked this on black and white background and found no problem in terms of readability. flames welcome. Originally committed as revision 22946 to svn://svn.ffmpeg.org/ffmpeg/trunk
51e026d115efa7f36d14a25069286e5ac5a05d25
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/51e026d115efa7f36d14a25069286e5ac5a05d25
2010-04-22 18:58:39+00:00
Extradata length checks for Huffyuv. Patch by Michael Kaufmann hallo $(name) dash $(surname) ch Originally committed as revision 22856 to svn://svn.ffmpeg.org/ffmpeg/trunk
2818bdf22bb838c797b106e0897add6df4f88594
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2818bdf22bb838c797b106e0897add6df4f88594
2010-04-12 16:16:43+00:00
Remove $(MSG) override for install-lib targets This is no longer needed and causes incorrect output in some cases. Originally committed as revision 22583 to svn://svn.ffmpeg.org/ffmpeg/trunk
838c7c74070b66fc5b0c1a527d266c5154bd98ac
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/838c7c74070b66fc5b0c1a527d266c5154bd98ac
2010-03-17 14:43:05+00:00
Change function prototypes for width=8 inner and mbedge loopfilter functions so that it does both U and V planes at the same time. This will have speed advantages when using SSE2 (or higher) optimizations, since we can do both the U and V rows together in a single xmm register. This also renames filter16 to filter16y and filter8 to filter8uv so that it's more obvious what each function is used for. Originally committed as revision 24337 to svn://svn.ffmpeg.org/ffmpeg/trunk
3facfc99daecd10c2b87761d111d4dee1e3736b7
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3facfc99daecd10c2b87761d111d4dee1e3736b7
2010-07-19 21:18:04+00:00
mkvenc: Handle negative timestamps correctly Originally committed as revision 22372 to svn://svn.ffmpeg.org/ffmpeg/trunk
f9ff7179ff901aa1e2721ff2d13482a792e6e82f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f9ff7179ff901aa1e2721ff2d13482a792e6e82f
2010-03-09 04:23:36+00:00
oggdec: Set data_offset to the right value Otherwise it gets set automatically to a page midstream and prevents seeking to the first page. Originally committed as revision 22454 to svn://svn.ffmpeg.org/ffmpeg/trunk
50a9d32310e7a67fa3a9b2c92d5ed70ac00261e4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/50a9d32310e7a67fa3a9b2c92d5ed70ac00261e4
2010-03-11 07:17:29+00:00
Quant changes only once per MB so move the corresponding scale factor assignment out of the block decoding loop. Indeo4 doesn't use any scale table but the quant level itself as scale. Therefore access scale table only if its pointer != NULL. Originally committed as revision 23569 to svn://svn.ffmpeg.org/ffmpeg/trunk
79d46cbea6c30c11de8da9ca64ac293b773966e2
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/79d46cbea6c30c11de8da9ca64ac293b773966e2
2010-06-10 17:31:12+00:00
Define HAVE_AV_CONFIG_H for checkheaders in libs Originally committed as revision 22332 to svn://svn.ffmpeg.org/ffmpeg/trunk
09ad80855c0e65ca11d4ed461bf15d1cbd6f20fa
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/09ad80855c0e65ca11d4ed461bf15d1cbd6f20fa
2010-03-08 18:43:35+00:00
Replace not anymore valid syntax "-title X" with "-metadata title=X". Originally committed as revision 22062 to svn://svn.ffmpeg.org/ffmpeg/trunk
9c16add67b0692e89feb2707d3159a2924470c4c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9c16add67b0692e89feb2707d3159a2924470c4c
2010-02-25 19:38:54+00:00
Remove recording_time check which is no longer necessary after r21687. Patch by Wolfram Gloger, wmglo A dent D med D uni-muenchen D de Originally committed as revision 21760 to svn://svn.ffmpeg.org/ffmpeg/trunk
23b361bacaa73e40a55e1ba48440abefb274bf95
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/23b361bacaa73e40a55e1ba48440abefb274bf95
2010-02-11 21:54:09+00:00
Band quant tables should not be assigned inside band tile loop, one time is enough. Patch by Maxim (max_pole, gmx de) Originally committed as revision 22279 to svn://svn.ffmpeg.org/ffmpeg/trunk
7fcb98a7ec51123ecfd810a167d96f128eed9b79
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7fcb98a7ec51123ecfd810a167d96f128eed9b79
2010-03-07 12:12:42+00:00
ref_offset must be added after checking references validity. Originally committed as revision 21661 to svn://svn.ffmpeg.org/ffmpeg/trunk
50f8e98507617f192af5b35279289bca0bf001b5
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/50f8e98507617f192af5b35279289bca0bf001b5
2010-02-07 01:13:56+00:00
fix compilation, sorry ive not checked cvslog for a while :((( svq3 decoder does not work yet though but i didnt want to keep compilation broken longer Originally committed as revision 22060 to svn://svn.ffmpeg.org/ffmpeg/trunk
fc7f7f171f7c5cf77cd3e56a69c5709be062fe62
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fc7f7f171f7c5cf77cd3e56a69c5709be062fe62
2010-02-25 18:39:01+00:00
Restructure check_mv() ~20 cpu cycles faster loopfilter Originally committed as revision 21505 to svn://svn.ffmpeg.org/ffmpeg/trunk
2cf0d46d4c3e4590086ec29860772ea54ccd98e6
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2cf0d46d4c3e4590086ec29860772ea54ccd98e6
2010-01-28 11:12:46+00:00
Make qp check for loop filter skiping also work with MBAFF. Originally committed as revision 21276 to svn://svn.ffmpeg.org/ffmpeg/trunk
7da0d82104866b6c10104ce5735d3beaf77d2889
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7da0d82104866b6c10104ce5735d3beaf77d2889
2010-01-18 00:34:28+00:00
Add -timelimit option This option limits the CPU time used by ffmpeg to the number of seconds specified. After this time, the OS sends a SIGXCPU signal, which we handle and attempt to exit cleanly. If the process is stuck, the OS will deliver a SIGKILL one second later, forcibly terminating the process. This functionality is useful in automated setups where a runaway ffmpeg process would otherwise go undetected. Originally committed as revision 21347 to svn://svn.ffmpeg.org/ffmpeg/trunk
ffcc6e24f5dfa98dfcdcae39f5f85c1f5b8d52e1
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ffcc6e24f5dfa98dfcdcae39f5f85c1f5b8d52e1
2010-01-20 06:42:39+00:00
Set thread_count in the decoder before to open it. This is safer since avcodec_open() may initialize some structure using the thread_count default value which will be changed later, causing potential security / stability issues. Also do not explicitely set the thread_count value in the decoder, since this is already done by avcodec_thread_init(). See the thread: "[FFmpeg-devel] [PATCH] Make ffplay define in the encoder the number of threads *before* to open it", started in date 2008-03-08. Originally committed as revision 20954 to svn://svn.ffmpeg.org/ffmpeg/trunk
de4898a22909ff8a9ff846820627094bdd68b648
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/de4898a22909ff8a9ff846820627094bdd68b648
2009-12-28 21:49:56+00:00
Add a check for struct sockaddr->sa_len, which is an indication of whether the system wants a length entry in all socket structures or not. Patch by Martin Storsjö <$firstname $firstname st>. Originally committed as revision 21351 to svn://svn.ffmpeg.org/ffmpeg/trunk
3b2372bff1237529ec03698f53d2ba06ae8ea00a
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3b2372bff1237529ec03698f53d2ba06ae8ea00a
2010-01-20 17:24:23+00:00
Check for getaddrinfo(), patch by Martin Storsjö <$firstname()$firstname,st>. Originally committed as revision 21142 to svn://svn.ffmpeg.org/ffmpeg/trunk
84882df62b07a6ddb358e5795d8edcfde0bd71aa
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/84882df62b07a6ddb358e5795d8edcfde0bd71aa
2010-01-11 17:01:56+00:00
Check sample_aspect_ratio validity for mpeg4/h263/h263p encoding. Merged from ffmbc0.3 Originally committed as revision 20861 to svn://svn.ffmpeg.org/ffmpeg/trunk
954a0b482a1463f0c2fa3edb758568e049585189
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/954a0b482a1463f0c2fa3edb758568e049585189
2009-12-14 11:34:46+00:00
configure: return result of test from check_asm This makes it possible to use check_asm in conditionals. Originally committed as revision 20105 to svn://svn.ffmpeg.org/ffmpeg/trunk
49214f61a5071a3e5f12c3d13f13a3d8cfdbb5bb
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/49214f61a5071a3e5f12c3d13f13a3d8cfdbb5bb
2009-09-30 21:38:11+00:00
Detect Windows Media DRM protected files and display warning if no key was provided. Patch by Daniel G. Taylor, dan programmer-art org Originally committed as revision 20209 to svn://svn.ffmpeg.org/ffmpeg/trunk
febd1c90a64c1df2d72600d0fe1f020e88d10953
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/febd1c90a64c1df2d72600d0fe1f020e88d10953
2009-10-11 23:09:33+00:00
Small refactoring: Instead of 4 loops for decoding AC coefficients based on their grouping, create one loop that indexes into a table of AC VLC tables. There is also a small optimization here: Do not call unpack_vlcs() if there are no fragments in the list with outstanding coefficients. My profiling indicates that this can save upwards of 1 million dezicycles per frame throughout the course of unpack_dct_coeffs(). Originally committed as revision 20699 to svn://svn.ffmpeg.org/ffmpeg/trunk
9d8bb0318a0bc59a04c71555a3c575f8146eab41
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9d8bb0318a0bc59a04c71555a3c575f8146eab41
2009-12-02 04:06:27+00:00
Check for return value of initFilter(). Originally committed as revision 29586 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
1ddb5747df964d0a0382169e9a22c471da9ff864
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1ddb5747df964d0a0382169e9a22c471da9ff864
2009-08-29 23:06:22+00:00
Replace manual gcc version check by AV_GCC_VERSION_AT_LEAST macro. Originally committed as revision 29701 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
53e5462040f6f7273fb6b0d7592eea1f5d26829f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/53e5462040f6f7273fb6b0d7592eea1f5d26829f
2009-09-22 14:38:49+00:00
limit raw packet buffer size used for codec probing Originally committed as revision 19272 to svn://svn.ffmpeg.org/ffmpeg/trunk
af122d6a80686d9c786b4b46213ef1f5a9699b3e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/af122d6a80686d9c786b4b46213ef1f5a9699b3e
2009-06-25 18:48:57+00:00
When BitsPerSample tag is not present in TIFF, that means file is monochrome, so initialize picture before decoding. This fixes decoding monochrome files produced by lavc TIFF encoder. Originally committed as revision 20091 to svn://svn.ffmpeg.org/ffmpeg/trunk
53f9f9c91b1aecd5c5ce375bcc07806c33ff74d5
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/53f9f9c91b1aecd5c5ce375bcc07806c33ff74d5
2009-09-30 05:49:18+00:00
Get rid of monstrous static table and initialize VLCs for RV3/4 dynamically. Originally committed as revision 18681 to svn://svn.ffmpeg.org/ffmpeg/trunk
3df18b3ed1177037892ce5b3db113d52dcdcdbf3
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3df18b3ed1177037892ce5b3db113d52dcdcdbf3
2009-04-25 05:47:38+00:00
override mov fourcc for pcm audio, this is safer when stream copying Originally committed as revision 18355 to svn://svn.ffmpeg.org/ffmpeg/trunk
50d2d05d3436922e89fcdfdd87411669eab61c02
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/50d2d05d3436922e89fcdfdd87411669eab61c02
2009-04-07 20:37:30+00:00