Ilkka Ollakka
a970900a91
set qmin=3 in ffmpeg encode when bitrate is set and user hasn't defined qmin/qmax self
18 years ago
Rafaël Carré
079a1818dc
codecs & packetizers: fix warnings
use size_t instead of int to represent sizes
removes unused parameters from:
block_BytestreamInit()
mpeg4_audio/LOASSyncInfo()
cinepak/cinepak_Getv1()
speex/SendPacket()
subsass/ParseColor()
ffmpeg/postprocess/InitPostproc() & PostprocPict()
dvbsub/YuvaYuvp() & encode_pixel_line_{2,4,8}bp()
faad/DoReordering()
vlc_block_helper.h:
use size_t, removes unused parameter from block_BytestreamInit()
struct filter_t:
removes unused parameters from pf_picture_link() & pf_picture_unlink()
cmml: fix a segfault (p_item isn't an input item, despite the name) present for some months, proving that nobody did use that code ?
18 years ago
Ilkka Ollakka
99da87a84b
- fix qmax/qmin if statements
- if user requests certain bitrate, set defaults to qmax=51,qmin=10 if
user hasn't defined them otherwise. Should help normal user to get
bitrate he/she requests.
18 years ago
Pavlov Konstantin
b5263f9cf9
Fix builds with dirac >= 0.9.0, require it as well.
18 years ago
Rémi Denis-Courmont
a0e5fe35ca
Fix symbols list, fix linking on platforms that DO have strnlen
18 years ago
Felix Paul Kühne
d5d9b5b303
strnlen: export its VLC pendant properly and check its existance in cc.c. Fixes the compilation onDarwin
18 years ago
Sigmund Augdal Helberg
46e1689c11
Added a csri based renderer/decoder for ass/ssa subtitles. Can use
libass and asa as rendering backends. By equinox. Part of Google
Summer of Code
18 years ago
Ilkka Ollakka
235d2f4586
- set rc_min_rate = rc_max_rate when strict-rc is set
- disable frame.pts only mp4v (seems to be bug concerning only that
codec)
- initialize p_sys->i_hq to FF_MB_DECISION_RD if else ain't specified
(seems like it's used uninitialised otherwise)
- set mb_lmin/mb_lmax and lmin/lmax also with qmin (ffmpeg documentation
says lmax = qmax * FF_QP2LAMBDA) seems to help rate-control.
18 years ago
Christophe Mutricy
e189922f78
Missing from [24525]
19 years ago
Rémi Denis-Courmont
99fab9089e
Don't include config.h from the headers - refs #297 .
Missing some cases that I could not test.
Also ffmpeg/chroma.c is locked, so I can but leave it broken.
Fix is for the remaining modules is obvious and the issue is easy to detect.
19 years ago
Jean-Paul Saman
4df2ca0860
Use big endian definitions for ffmpeg PIX_FMT_* when running on big endian machines. Eg: PIX_FMT_RGB24 should become PIX_FMT_BGR24.
19 years ago
Rémi Denis-Courmont
4f02842805
Revert the so-called whitelisting commits that are actually blacklisting
19 years ago
Rafaël Carré
806cf51658
input options whitelisting, step 2 (refs #1371 )
19 years ago
Jean-Baptiste Kempf
5718c8409c
Support for 8bit uncompressed in AVI files.
19 years ago
Jean-Paul Saman
423ec77756
remove excess whitespace
19 years ago
Jean-Paul Saman
88de3871d4
Disable debugging print in zvbi
19 years ago
Antoine Cellerier
2289355deb
Don't pretend to have ffmpeg based muxers and demuxers if you don't.
19 years ago
Jean-Paul Saman
6a77f2907f
Don't misuse p_this->p_libvlc for putting modules variables of zvbi.
19 years ago
Jean-Paul Saman
3cdad01a54
Make sure vbi-opaque can be set from an interface.
19 years ago
Rémi Denis-Courmont
a3576a2716
- Remove config_FindModule as module_Find nowadays does the same thing
- Use module_Exists as appropriate
- Rename module_FindName as module_Find
19 years ago
Jean-Paul Saman
5de91b637b
Remove excess whiteline
19 years ago
Dennis van Amerongen
70027747aa
* modules/codec/dmo/dmo.c: add some missing fourcc capitalization
19 years ago
Jean-Paul Saman
1828f4b9db
Compile fix to check for ffmpeg version.
19 years ago
Jean-Paul Saman
e2be140078
Fix compiler warnings in modules/codec/ffmpeg/mux.c. Please test.
19 years ago
Christophe Massiot
702b20b0e8
* modules/codec/faad.c: Put sensible defaults in i_*_channels, used for
transcode.
19 years ago
Christophe Massiot
b691d5d74a
* modules/codec/x264.c: Fixed DTS when adaptive B frames are used (still
wrong for bpyramid, though).
19 years ago
Jean-Baptiste Kempf
73830e3b9e
Ffmpeg swscaler, ifdef correction.
19 years ago
Rémi Denis-Courmont
bb96821664
Simplify
19 years ago
Rémi Denis-Courmont
b216718576
Comments
19 years ago
Jean-Baptiste Kempf
a4c8807ec2
Real/Sipr, try to use a correct flavor detection, without using the MPlayer hacks...
19 years ago
Jean-Paul Saman
a14d22e1ac
Disable MMXEXT (MMX2) mode for swScaler since it crashes.
19 years ago
Jean-Paul Saman
0bb30cd10d
Chroma conversion using swscaler module.
19 years ago
Jean-Paul Saman
a89d3bb46c
Indentation.
19 years ago
Jean-Paul Saman
da7ab688b0
Test for PIX_FMT_RGBA iso swscale.
19 years ago
Jean-Paul Saman
ea411a51cd
Attempt to implement chroma conversion using swscale. This currently crashes on calling of pf_convert().
19 years ago
Jean-Baptiste Kempf
3b99d3d39f
Realv3: support for broken streams that speciy a wrong FourCC
19 years ago
Pierre d'Herbemont
5b1563c5a4
modules/codec/ffmpeg/video.c: Fix Remi Duraffort's PIX_FMT_RGBA issue by testing directly for PIX_FMT_RGBA definition, instead of testing if swscale is present.
19 years ago
Jean-Paul Saman
6f7b6bf6fd
Make PIX_FMT_RGBA dependend on ffmpeg with swscale. Patch by Remi Duraffort <ivoire at via.ecp.fr>.
19 years ago
Jean-Baptiste Kempf
d4515c0fef
Real decoder: Use the real libraries to decode atrac and sipr (sipr still doesn't work, because the flavour is misdetected)
Add a few ifdefs for Loader use.
19 years ago
Jean-Baptiste Kempf
2ed5acfdde
Real Audio: Add support for RealPlayer 10/10GOLD .so
19 years ago
Jean-Baptiste Kempf
e5147c68f4
More Real Codecs paths.
19 years ago
Jean-Baptiste Kempf
f1f4134811
RealAudio, more paths to search realAudio codecs.
19 years ago
Jean-Paul Saman
251648e322
Fix some potential segfaults, some cleanup and fix subtitling positioning.
19 years ago
Jean-Baptiste Kempf
7d648f63d8
FFmpeg - add the MPCK fourCC, that seems to be associated to some SV8.
But it may be useless, because of our mpc demuxer...
19 years ago
Jean-Paul Saman
b6a30543ef
Fixed transparency when using FFMPEG_SWSCALE in zvbi.
19 years ago
Jean-Paul Saman
cd1957d2e4
Select frames to drop a bit smarter.
19 years ago
Jean-Paul Saman
07b2c47a82
modules/codec/ffmpeg/video_filter.c is img_* API only now
19 years ago
Jean-Paul Saman
ab88bcc090
Fix ffmpeg swscaler
19 years ago
Jean-Paul Saman
d72e6273f1
Refactorize modules/codec/ffmpeg/:
- put deinterlace in its own file.
19 years ago
Jean-Paul Saman
a8de7281d4
Use p_block->i_dts as spu->i_start instead of p_block->i_pts. This fixes timing issues while transcoding and streaming Teletext subtitles as DVB subtitles.
19 years ago