- 05 Sep, 2013 5 commits
-
-
Rémi Denis-Courmont authored
Makes version 1.14 happy.
-
Rémi Denis-Courmont authored
There is no use to CPU memory edges when decoding in hardware (arguably libavcodec should be "enhanced" to not add them in that case). This unbreaks VDPAU.
-
Steinar H. Gunderson authored
Some browsers, such as Firefox, are very picky about WebM streams needing to start with a keyframe. To be able to handle this correctly when streaming, the avformat mux needs to mark keyframe-containing blocks (or clusters, in Matroska terminology) as such even after they have been muxed. The next patch in the series will make httpd actually care about this flag. Unfortunately, as avformat does not actually propagate this status, we need to use some heuristics to figure out which blocks contain keyframes. The natural thing to do would be to say that when we write a keyframe, the block that comes back has to be a keyframe block, but the WebM/Matroska muxer thwarts this by having its own internal buffering of clusters, flushing the _previous_ cluster when we send it a keyframe. Thus, we need to explicitly send a flush (a NULL packet) before the one that comes back when we mux a keyframe. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Steinar H. Gunderson authored
The previous value, 32 kB, causes formats like WebM to overflow and split the blocks, which has negative consequences for streaming. We're unlikely to have a memory crunch in this area, so increase it to something generous. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Rafaël Carré authored
-
- 04 Sep, 2013 4 commits
-
-
Rémi Denis-Courmont authored
API design bug in PulseAudio...
-
Rafaël Carré authored
-
Ilkka Ollakka authored
-
Ilkka Ollakka authored
livehttp: use playlist max duration instead segment max duration to calculate if we can remove segment in live case
-
- 03 Sep, 2013 10 commits
-
-
Timothy B. Terriberry authored
This macro is called _Z_OF on my system, not OF. But it's only there to support K&R function declarations, so just get rid of it entirely. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Timothy B. Terriberry authored
This macro is called _Z_OF on my system, not OF. But it's only there to support K&R function declarations, so just get rid of it entirely. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
David R Robison authored
This should allow to balance the GPU load across multiple nVidia graphics cards. This patch introduces a new command line argument that allows the user to set the nVidia card affinity. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Jean-Baptiste Kempf authored
But with the correct Integrity.
-
Timothy B. Terriberry authored
This fills in the initial vlc_meta_t object with more of the fields it knows about, ensuring fields that we can edit with taglib don't show up in the 'Extra metadata' panel. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Timothy B. Terriberry authored
This places them in the same order as they appear in vlc_meta.h to make it easier to see which ones are present and which ones are missing. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Timothy B. Terriberry authored
vorbis_ParseComment() supports several different methods of specifying the total number of tracks. Update the taglib module to support reading in the same set. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Timothy B. Terriberry authored
This propagates more of the data between a vlc_meta_t object and the taglib object used to write out new metadata. This should support everything except Setting, URL, NowPlaying, ArtworkURL, and TrackID. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
- 02 Sep, 2013 15 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
sys->first_pts is the time the stream started originally, but was mistaken as the time of the stream was paused. Now, it is assumed that pausing and resuming take approximately the same time. This is usually true, and if it is not, there is no way for either VLC or PulseAudio to know (since ALSA does not expose pause/resume latency informations for the underlying devices). In practice, this makes no real difference other than removing a bogus warning about being late when resuming from pause.
-
Timothy B. Terriberry authored
QTextEdit doesn't have a textEdited() signal, but textChanged() works well enough if we disable it while we're changing the text ourselves. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Timothy B. Terriberry authored
Also, don't abort parsing the rest of the comments if we encounter an empty one. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Timothy B. Terriberry authored
Otherwise it won't get saved to the file. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Timothy B. Terriberry authored
This requires a taglib version with Opus support, but such a version has not yet been released, even though support has been in git almost a year. This version is scheduled as version 1.9 Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Ludovic Fauvet authored
The default implementation of QLineEdit only calls the fixup method if the user presses Enter and the content is not currently valid.
-
Jean-Baptiste Kempf authored
-
Sergey Radionov authored
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
David R Robison authored
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
Paul Clark authored
Some inputs (e.g. RTSP) can provide negative rates (rewind) just fine Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
Jean-Baptiste Kempf authored
Close #9291
-
Denis Charmet authored
Since libavcodec decoder doesn't expect matroska formatted wavpack anymore.
-
- 01 Sep, 2013 6 commits
-
-
David Fuhrmann authored
-
David Fuhrmann authored
-
Konstantin Pavlov authored
-
Konstantin Pavlov authored
-
Rafaël Carré authored
Some APE files can have a single packet duration of up to 30s Is there even a hard limit in this format, or can packets be longer? Previous gap limit was an arbitrary 22s, written in a way reminiscent of the MPEG 90kHz clock, which does not make sense anymore since reference clock in all our demuxers use our own 1MHz clock. Also explicitely use CLOCK_FREQ
-
Rémi Denis-Courmont authored
This enables direct rendering for H.264 software decoding.
-