You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
(91) |
Oct
(8) |
Nov
(15) |
Dec
(13) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(2) |
Feb
(5) |
Mar
(41) |
Apr
(41) |
May
(29) |
Jun
(61) |
Jul
(74) |
Aug
(3) |
Sep
(35) |
Oct
(24) |
Nov
(86) |
Dec
(163) |
| 2003 |
Jan
(28) |
Feb
(94) |
Mar
(27) |
Apr
(14) |
May
(5) |
Jun
(8) |
Jul
(1) |
Aug
(67) |
Sep
(113) |
Oct
(78) |
Nov
(37) |
Dec
(97) |
| 2004 |
Jan
(15) |
Feb
(35) |
Mar
(2) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(4) |
Dec
|
| 2006 |
Jan
|
Feb
(25) |
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(1) |
| 2007 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
(13) |
Mar
(1) |
Apr
(7) |
May
(1) |
Jun
|
Jul
(21) |
Aug
|
Sep
(1) |
Oct
(10) |
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Subversion d. <sa...@us...> - 2012-07-18 09:31:25
|
r1206 | funman | 2012-07-18 11:14:09 +0200 (Wed, 18 Jul 2012) | 15 lines Changed paths: M /trunk/libmpeg2/motion_comp_arm_s.S Functions MC_put_o_16_arm, MC_put_o_8_arm, MC_put_x_16_arm, MC_put_x_8_arm in libmpeg2/motion_comp_arm_s.S have addresses in .text, which is bad for shared libraries. Some environments demand that .text actually be read-only all the time, yet MC_put_o_16_arm etc require that the addresses be modified by the dynamic linking mechanism (dlopen, LoadLibrary, etc.) Even in those environments which permit the dynamic linker to modify the .text segment, the runtime cost of doing the relocation can be noticeable. This commit rewrites the linkage, discarding the tables of addresses in favor of tables of offsets. All transfers are local within each individual function, so there can be no interference by processing that occurs after assembly, such as link-time re-ordering (even of individual functions.) Patch by John Reiser <jr...@bi...> |
|
From: Subversion d. <sa...@us...> - 2010-06-24 10:01:23
|
r1205 | sam | 2010-06-24 11:45:33 +0200 (Thu, 24 Jun 2010) | 1 line Changed paths: M /trunk/include/mmx.h M /trunk/include/mpeg2convert.h M /trunk/libmpeg2/mpeg2_internal.h M /trunk/libmpeg2/vlc.h Make internal headers self-sufficient. Patch courtesy of Diego Biurrun. |
|
From: Subversion d. <sa...@us...> - 2008-10-17 02:57:24
|
r1204 | walken | 2008-10-17 04:57:13 +0200 (Fri, 17 Oct 2008) | 5 lines Changed paths: M /trunk/configure.ac Do not use -Wstrict-prototypes: this was breaking the --enable-warnings configure option, due to AC_TRY_COMPILE not declaring arguments (not even void) for the main() function it generates. |
|
From: Subversion d. <sa...@us...> - 2008-10-15 13:15:09
|
r1203 | walken | 2008-10-15 15:15:05 +0200 (Wed, 15 Oct 2008) | 4 lines Changed paths: M /trunk/libmpeg2/header.c M /trunk/libmpeg2/mpeg2_internal.h M /trunk/libmpeg2/slice.c Also pass q_scale_type thru the generic coding_t structure - we do not want header.c to manipulate the decoder structures directly. |
|
From: Subversion d. <sa...@us...> - 2008-10-15 12:42:59
|
r1202 | walken | 2008-10-15 14:42:48 +0200 (Wed, 15 Oct 2008) | 6 lines Changed paths: M /trunk/libmpeg2/decode.c M /trunk/libmpeg2/header.c M /trunk/libmpeg2/mpeg2_internal.h M /trunk/libmpeg2/slice.c Move quant matrix prescaling and chroma quant matrix selection into slice.c The idea is that we don't want header.c to know that level of detail about the decoder's internals. |
|
From: Subversion d. <sa...@us...> - 2008-10-12 11:11:59
|
r1201 | walken | 2008-10-12 13:07:36 +0200 (Sun, 12 Oct 2008) | 4 lines Changed paths: M /trunk/libmpeg2/header.c M /trunk/libmpeg2/mpeg2_internal.h M /trunk/libmpeg2/slice.c Move the alternate_scan bit to the coding_t structure - we prefer not to have header.c poke into the mpeg2_decoder_t structure nowadays. |
|
From: Subversion d. <sa...@us...> - 2008-10-10 12:11:46
|
r1200 | walken | 2008-10-10 14:11:36 +0200 (Fri, 10 Oct 2008) | 9 lines Changed paths: M /trunk/libmpeg2/header.c M /trunk/libmpeg2/mpeg2_internal.h M /trunk/libmpeg2/slice.c First step towards decoupling the slice decoder (which is the main CPU intensive part of libmpeg2) from the rest of the decoder (i.e. the chunk gathering, header parsing and state machine). Eventually I want to get to a point where decode.c and header.c do not know about the internals of the mpeg2_decoder_t type. Longer term, I want to be able to switch the slice decoders, for example to support GPU acceleration. |
|
From: Subversion d. <sa...@us...> - 2008-10-09 10:23:14
|
r1199 | walken | 2008-10-09 12:18:52 +0200 (Thu, 09 Oct 2008) | 8 lines Changed paths: M /trunk/COPYING M /trunk/doc/sample1.c M /trunk/doc/sample2.c M /trunk/doc/sample3.c M /trunk/doc/sample4.c M /trunk/doc/sample5.c M /trunk/doc/sample6.c M /trunk/include/alpha_asm.h M /trunk/include/attributes.h M /trunk/include/mmx.h M /trunk/include/mpeg2.h M /trunk/include/mpeg2convert.h M /trunk/include/tendra.h M /trunk/include/video_out.h M /trunk/include/vis.h M /trunk/libmpeg2/alloc.c M /trunk/libmpeg2/convert/convert_internal.h M /trunk/libmpeg2/convert/rgb.c M /trunk/libmpeg2/convert/rgb_mmx.c M /trunk/libmpeg2/convert/rgb_vis.c M /trunk/libmpeg2/convert/uyvy.c M /trunk/libmpeg2/cpu_accel.c M /trunk/libmpeg2/cpu_state.c M /trunk/libmpeg2/decode.c M /trunk/libmpeg2/header.c M /trunk/libmpeg2/idct.c M /trunk/libmpeg2/idct_alpha.c M /trunk/libmpeg2/idct_altivec.c M /trunk/libmpeg2/idct_mmx.c M /trunk/libmpeg2/motion_comp.c M /trunk/libmpeg2/motion_comp_alpha.c M /trunk/libmpeg2/motion_comp_altivec.c M /trunk/libmpeg2/motion_comp_arm.c M /trunk/libmpeg2/motion_comp_arm_s.S M /trunk/libmpeg2/motion_comp_mmx.c M /trunk/libmpeg2/motion_comp_vis.c M /trunk/libmpeg2/mpeg2_internal.h M /trunk/libmpeg2/slice.c M /trunk/libmpeg2/vlc.h M /trunk/libvo/video_out.c M /trunk/libvo/video_out_dx.c M /trunk/libvo/video_out_null.c M /trunk/libvo/video_out_pgm.c M /trunk/libvo/video_out_sdl.c M /trunk/libvo/video_out_x11.c M /trunk/libvo/vo_internal.h M /trunk/src/corrupt_mpeg2.c M /trunk/src/dump_state.c M /trunk/src/extract_mpeg2.c M /trunk/src/gettimeofday.c M /trunk/src/gettimeofday.h M /trunk/src/mpeg2dec.c >From Diego: The FSF changed headquarters a long time ago. Here is a patch to update the license headers in libmpeg2 to reflect that change. It also includes a similar change for the COPYING file. I just replaced yours with the copy in /usr/share/common-licenses/GPL-2 on my Debian system. |
|
From: Subversion d. <sa...@us...> - 2008-10-09 10:01:00
|
r1198 | walken | 2008-10-09 11:59:58 +0200 (Thu, 09 Oct 2008) | 5 lines Changed paths: M /trunk/bootstrap M /trunk/doc/libmpeg2.txt M /trunk/include/mpeg2.h M /trunk/libmpeg2/mpeg2_internal.h mpeg2_init_fbuf() and mpeg2_slice() are not currently useable as an API - they depend on the caller knowing implementation details of the mpeg2_decoder_t type. Move the function declarations to mpeg2_internal.h... |
|
From: Subversion d. <sa...@us...> - 2008-10-09 07:43:00
|
r1197 | walken | 2008-10-09 09:42:53 +0200 (Thu, 09 Oct 2008) | 11 lines Changed paths: M /trunk/doc/sample1.c M /trunk/doc/sample3.c M /trunk/doc/sample4.c M /trunk/doc/sample5.c M /trunk/doc/sample6.c This change modifies the code samples as follows: * Allocate aligned buffers using mpeg2_malloc(), to avoid reimplementing this in the samples (and demonstrate usage - mpeg2_malloc() is public just so people can do this) * In a few places, remove the local 'sequence' variable and replace with info->sequence - the main reason here being to limit differences between the various code samples. |
|
From: Subversion d. <sa...@us...> - 2008-10-09 07:18:05
|
r1196 | walken | 2008-10-09 09:17:59 +0200 (Thu, 09 Oct 2008) | 5 lines Changed paths: M /trunk/Makefile.am Make sure code samples will get compiled when typing 'make'. This is both to test that they do compile, and to give easy access to the binaries for running them. |
|
From: Subversion d. <sa...@us...> - 2008-10-05 11:08:43
|
r1195 | sam | 2008-10-05 12:50:51 +0200 (Sun, 05 Oct 2008) | 1 line Changed paths: D /trunk/include/sse.h D /trunk/libvo/hw_bes.h D /trunk/libvo/video_out_fb.c D /trunk/libvo/video_out_mga.c Remove obsolete files. |
|
From: Subversion d. <sa...@us...> - 2008-09-17 16:14:18
|
r1194 | jb | 2008-09-18 01:12:05 +0200 (Thu, 18 Sep 2008) | 4 lines Changed paths: M /trunk/libmpeg2/motion_comp.c Remove extra set of braces to keep things consistent Patch from Diego Biurrun |
|
From: Subversion d. <sa...@us...> - 2008-07-18 14:53:51
|
r1193 | sam | 2008-07-18 16:52:52 +0200 (Fri, 18 Jul 2008) | 1 line Changed paths: M /trunk/ChangeLog M /trunk/Makefile.am M /trunk/NEWS M /trunk/configure.ac M /trunk/include/mpeg2.h M /trunk/vc++/config.h * Bump version to 0.5.1, update NEWS and ChangeLog. |
|
From: Subversion d. <sa...@us...> - 2008-07-18 14:27:04
|
r1192 | sam | 2008-07-18 16:25:59 +0200 (Fri, 18 Jul 2008) | 1 line Changed paths: M /trunk/libmpeg2/convert/libmpeg2convert.pc.in M /trunk/libmpeg2/libmpeg2.pc.in * Make sure the .pc files still refer to /usr/include/mpeg2dec. |
|
From: Subversion d. <sa...@us...> - 2008-07-16 23:59:21
|
r1191 | sam | 2008-07-17 01:58:26 +0200 (Thu, 17 Jul 2008) | 1 line Changed paths: M /trunk/Makefile.am * Makefile.am: iterate into the vc++ directory when building, too. |
|
From: Subversion d. <sa...@us...> - 2008-07-16 23:59:20
|
r1190 | sam | 2008-07-17 01:58:24 +0200 (Thu, 17 Jul 2008) | 3 lines
Changed paths:
M /trunk/Makefile.am
D /trunk/acinclude.m4
M /trunk/configure.ac
M /trunk/libmpeg2/Makefile.am
D /trunk/libmpeg2/configure.incl
M /trunk/libvo/Makefile.am
D /trunk/libvo/configure.incl
A /trunk/m4
A /trunk/m4/cflags.m4
A /trunk/m4/inttypes.m4 (from /trunk/acinclude.m4:1189)
A /trunk/m4/keywords.m4
A /trunk/m4/nonpic.m4
M /trunk/src/Makefile.am
D /trunk/src/configure.incl
* acinclude.m4: split this file into separate .m4 subfiles.
* configure.ac: remove include constructs because aclocal isn't clever
enough to look for missing macros in these files.
|
|
From: Subversion d. <sa...@us...> - 2008-07-16 23:59:19
|
r1189 | sam | 2008-07-17 01:58:21 +0200 (Thu, 17 Jul 2008) | 1 line Changed paths: M /trunk/bootstrap * bootstrap: update bootstrapping script. |
|
From: Subversion d. <sa...@us...> - 2008-07-15 14:54:35
|
r1188 | sam | 2008-07-15 16:53:36 +0200 (Tue, 15 Jul 2008) | 3 lines
Changed paths:
M /trunk/Makefile.am
M /trunk/include/Makefile.am
* Fix installation of the headers by re-adding include to SUBDIRS (instead
of DIST_SUBDIRS) and putting them back in $(includedir)/mpeg2dec (instead
of $(includedir)/libmpeg2).
|
|
From: Subversion d. <sa...@us...> - 2008-07-12 10:00:59
|
r1187 | sam | 2008-07-12 12:00:02 +0200 (Sat, 12 Jul 2008) | 1 line Changed paths: M /trunk/configure.ac * Rename tarballs to libmpeg2 for the 0.5.0 release. |
|
From: Subversion d. <sa...@us...> - 2008-07-11 17:27:00
|
r1186 | sam | 2008-07-11 19:26:09 +0200 (Fri, 11 Jul 2008) | 1 line Changed paths: M /trunk/libmpeg2/Makefile.am * Fix the libtool invocation's -version-info middle number. |
|
From: Subversion d. <sa...@us...> - 2008-07-11 16:59:11
|
r1185 | massiot | 2008-07-11 18:58:19 +0200 (Fri, 11 Jul 2008) | 6 lines Changed paths: M /trunk/ChangeLog M /trunk/NEWS M /trunk/configure.ac M /trunk/src/dump_state.c M /trunk/vc++/config.h * src/dump_state.c: sync with the recent change in mpeg2.h (otherwise breaks regression tests) ; * ChangeLog, NEWS: sync with the 0.4.1 branch, and prepare for the 0.5.0 release ; * configure.ac, vc++/config.h: bump up revision to 0.5.0. |
|
From: Subversion d. <sa...@us...> - 2008-07-11 15:55:25
|
r1184 | sam | 2008-07-11 17:54:27 +0200 (Fri, 11 Jul 2008) | 2 lines
Changed paths:
M /trunk/libmpeg2/configure.incl
* libmpeg2/configure.incl: only avoid -fPIC on 32-bit x86 platforms, there
have been too many breakage reports.
|
|
From: Subversion d. <sa...@us...> - 2008-07-11 15:55:18
|
r1183 | sam | 2008-07-11 17:54:24 +0200 (Fri, 11 Jul 2008) | 2 lines
Changed paths:
M /trunk/configure.ac
* configure.ac: do not reset user-provided CFLAGS, they should know what
they are doing.
|
|
From: Subversion d. <sa...@us...> - 2008-07-11 15:38:32
|
r1182 | sam | 2008-07-11 17:37:39 +0200 (Fri, 11 Jul 2008) | 2 lines
Changed paths:
M /trunk/libmpeg2/Makefile.am
* libmpeg2/Makefile.am: tell libtool to update our interface version while
remaining compatible with the previous interface.
|