An error occurred fetching the project authors.
- 10 Jul, 2004 1 commit
-
-
Laurent Aimar authored
-
- 25 Apr, 2004 6 commits
-
-
Gildas Bazin authored
+ avoid a few unneeded memcpy(). + fixed memory leaks. * modules/codec/flac.c: + added a "flac" shortcut.
-
Gildas Bazin authored
-
Gildas Bazin authored
-
Gildas Bazin authored
* modules/codec/vorbis.c,flac.c,theora.c,speex.c: use encoder if forced.
-
Gildas Bazin authored
+ new options to allow forcing an encoder and passing options to it. (aenc=foo{optionbar=bar,etc...},venc=foo{optionbar=bar,etc...} where foo is the encoder plugin name). + got rid of aopts/vopts which is not needed anymore ;)
-
Gildas Bazin authored
* modules/stream_out/duplicate.c: small coding style changes. * modules/stream_out/transcode.c: + Forward the aopts{foo=bar,etc..} and vopts={foo=bar,etc...} options to the encoders. + Got rid of the ffmpeg encoder specific options. * modules/codec/ffmpeg/*: + Changed the encoder options to normal config options. + Parse the options forwarded by transcode. * include/vlc_codec.h: + encoder_t cleanup. + include a "sout_cfg_t *" in encoder_t to allow passing options.
-
- 23 Apr, 2004 2 commits
-
-
Laurent Aimar authored
* transcode: added H264 codec id. * demux: added h264 demux shortcut.
-
Gildas Bazin authored
* modules/codec/ffmpeg/*: use av_free() instead of free() where necessary.
-
- 15 Apr, 2004 1 commit
-
-
Gildas Bazin authored
* modules/stream_out/transcode.c: try more sensible width/height values when testing the video encoder.
-
- 09 Apr, 2004 1 commit
-
-
Gildas Bazin authored
-
- 05 Apr, 2004 1 commit
-
-
Gildas Bazin authored
* modules/stream_out/transcode.c: hack to work around ffmpeg encoding which doesn't like frames with identical pts. * modules/codec/ffmpeg/encoder.c: one missing AV_NOPTS_VALUE.
-
- 11 Mar, 2004 1 commit
-
-
Laurent Aimar authored
-
- 07 Mar, 2004 2 commits
-
-
Laurent Aimar authored
channels. (Badly done but it gives some results ;)
-
Laurent Aimar authored
-
- 06 Mar, 2004 4 commits
-
-
Gildas Bazin authored
-
Gildas Bazin authored
-
Gildas Bazin authored
* modules/packetizer/copy.c: better not send pts instead of invalid ones. * modules/stream_out/transcode.c: when no pts, use dts wherever possible (low delay / b frame).
-
Laurent Aimar authored
-
- 03 Mar, 2004 2 commits
-
-
Gildas Bazin authored
* ALL: changed the prototype of module_Need() to accept a "strict" boolean argument. If "strict" is true and a module name is provided then module_Need() will only look for the specified module If "strict" is false, then module_Need() will first look for the specified module and if it wasn't found, will continue with the other modules with the same "capability".
-
Christophe Massiot authored
- use AV_NOPTS_VALUE instead of 0 when it's available - reworked the hurry-up mode to start with disabling the B frames first - reworked the hurry-up mode to remove my thread mess - check that we don't feed ffmpeg with twice the same PTS (crashes ffmpeg) - correctly flag the picture types * modules/stream_out/transcode.c: - use AV_NOPTS_VALUE instead of 0 when it's available - copy block_t::i_flags to sout_buffer_t::i_flags (temporary)
-
- 24 Feb, 2004 1 commit
-
-
Gildas Bazin authored
* modules/stream_out/transcode.c: compilation fixes for ffmpeg-0.4.8.
-
- 21 Feb, 2004 1 commit
-
-
Gildas Bazin authored
* modules/stream_out/transcode.c: fixed memleak. Set aspect ratio info even for raw video input.
-
- 20 Feb, 2004 3 commits
-
-
Christophe Massiot authored
-
Christophe Massiot authored
-
Christophe Massiot authored
- new ffmpeg options available from the command-line : interleaved video, noise reduction, rate control parameters, i_quant_factor, trellis quantification, mpeg4 matrix, and thread count - portable functions to use ffmpeg multithreading capabilities on all platforms - hurry up mode now turns off rd and trellis, and also raises the noise reduction parameter (thus noise reduction is mandatory with hurry up) - if threads=1, no ffmpeg thread is launched, but the ffmpeg encoding will be done in a separate thread than the packetizer and decoder - fixed a bug with mp3 decoding and weird ffmpeg return code
-
- 18 Feb, 2004 1 commit
-
-
Laurent Aimar authored
-
- 12 Feb, 2004 1 commit
-
-
Gildas Bazin authored
* modules/stream_out/transcode.c: fixed color inversion when transcoding from raw RV24.
-
- 30 Jan, 2004 1 commit
-
-
Laurent Aimar authored
-
- 25 Jan, 2004 1 commit
-
-
Gildas Bazin authored
* modules/stream_out/*: coding style changes + strings review.
-
- 19 Jan, 2004 3 commits
-
-
Laurent Aimar authored
-
Laurent Aimar authored
-
Laurent Aimar authored
-
- 17 Jan, 2004 2 commits
-
-
Gildas Bazin authored
* modules/stream_out/transcode.c: fixed segfault.
-
Gildas Bazin authored
* modules/stream_out/transcode.c: fixed mem leak.
-
- 07 Jan, 2004 1 commit
-
-
Gildas Bazin authored
* src/playlist/*: fixed memory leaks. * modules/codec/rawvideo.c: fixed dts/pts problem and added support for fourcc IYUV. * modules/stream_out/transcode.c: added support for fourcc IYUV.
-
- 03 Jan, 2004 1 commit
-
-
Gildas Bazin authored
* modules/stream_out/transcode.c: added YV12 raw video fourcc (chroma planes will likely be inverted though).
-
- 14 Dec, 2003 1 commit
-
-
Gildas Bazin authored
Added a nasty hack to reset LC_NUMERIC to "C" because the stream output MRL parsing can't deal with "," in floating point numbers. * modules/codec/ffmpeg/encoder.c: sanity checks. * modules/stream_out/transcode.c: sanity checks.
-
- 08 Dec, 2003 1 commit
-
-
Gildas Bazin authored
* modules/stream_out/transcode.c: added a floating point "scale" option for video transcoding. When specified, you don't need to specify the width and height of the output video. Also changed the width and height options so that if only one of them is specified, the other one is calculated automatically so as to keep the aspect ratio of the video. * modules/mux/ogg.c: fixed crash when removing streams. * modules/codec/theora.c: for now the theora encoder requires a width and height which are multiple of 16.
-
- 07 Dec, 2003 1 commit
-
-
Jean-Paul Saman authored
All AddText( vout_thread_t *p_vout, char *psz_string, .. ) calls have as second argument char * now, just like the function definition in include/video_output.h. All uses already passed a char * to the AddText() functions.
-