FFmpeg/libavformat
Clément Bœsch dbfe61100b avformat/vobsub: fix several issues.
Here is an extract of fate-samples/sub/vobsub.idx, with an additional
text at the end of each line to better identify each bitmap:

    timestamp: 00:04:55:445, filepos: 00001b000 Ace!
    timestamp: 00:05:00:049, filepos: 00001b800 Wake up, honey!
    timestamp: 00:05:02:018, filepos: 00001c800 I gotta go to work.
    timestamp: 00:05:02:035, filepos: 00001d000 <???>
    timestamp: 00:05:04:203, filepos: 00001d800 Look after Clayton, okay?
    timestamp: 00:05:05:947, filepos: 00001e800 I'll be back tonight.
    timestamp: 00:05:07:957, filepos: 00001f800 Bye! Love you.
    timestamp: 00:05:21:295, filepos: 000020800 Hey, Ace! What's up?
    timestamp: 00:05:23:356, filepos: 000021800 Hey, how's it going?
    timestamp: 00:05:24:640, filepos: 000022800 Remember what today is? The 3rd!
    timestamp: 00:05:27:193, filepos: 000023800 Look over there!
    timestamp: 00:05:28:369, filepos: 000024800 Where are they going?
    timestamp: 00:05:28:361, filepos: 000025000 <???>
    timestamp: 00:05:29:946, filepos: 000025800 Let's go see.
    timestamp: 00:05:31:230, filepos: 000026000 I can't, man. I got Clayton.

Note the two "<???>": they are basically split subtitles (with the
previous one), which the dvdsub decoder is now supposed to reconstruct
with a previous commit. But also note that while the first chunk has
increasing timestamps,

    timestamp: 00:05:02:018, filepos: 00001c800
    timestamp: 00:05:02:035, filepos: 00001d000

...it's not the case of the second one (and this is not an exception in the
original file):

    timestamp: 00:05:28:369, filepos: 000024800
    timestamp: 00:05:28:361, filepos: 000025000

For the dvdsub decoder, they need to be "filepos'ed" ordered, but the
FFDemuxSubtitlesQueue is timestamps ordered, which is the reason of the
introduction of a sub sort method in the context, to allow giving
priority to the position, and then the timestamps. With that change, the
dvdsub decoder get fed with ordered packets.

Now the packet size estimation was also broken: the filepos differences
in the vobsub index defines the full data read between two subtitles
chunks, and it is necessary to take into account what is read by the
mpegps_read_pes_header() function since the length returned by that
function doesn't count the size of the data it reads. This is fixed with
the introduction of total_read, and {old,new}_pos. By doing this change,
we can drop the unreliable len16 heuristic and simplify the whole loop.
Note that mpegps_read_pes_header() often read more than one PES packet
(typically in one call it can read 0x1ba and 0x1be chunk along with the
relevant 0x1bd packet), which triggers the "total_read + pkt_size >
psize" check. This is an expected behaviour, which could be avoided by
having a more chunked version of mpegps_read_pes_header().

The latest change is the extraction of each stream into its own
subtitles queue. If we don't do this, the maximum size for a subtitle
chunk is broken, and the previous changes can not work. Having each
stream in a different queue requires some little adjustments in the
seek code of the demuxer.

This commit is only meaningful as a whole change and can not be easily
split. The FATE test changes because it uses the vobsub demuxer.
2013-10-04 07:59:49 +02:00
..
4xm.c Merge commit 'd719981273' 2013-09-04 12:20:53 +02:00
a64.c lavc: remove unecessary a64enc include. 2013-03-17 04:38:28 +01:00
aacdec.c lavf/aacdec: add support for reading ape tags 2013-06-03 23:10:57 +00:00
ac3dec.c Merge commit 'e0f8be6413' 2013-05-05 12:31:03 +02:00
act.c cosmetics: Fix "dont" "wont" "doesnt" typos 2013-06-29 02:31:16 +02:00
adp.c ADP demuxer 2013-05-10 16:10:52 -03:00
adtsenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
adxdec.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
aea.c Merge commit '97bf7c03b1' 2012-11-12 11:32:11 +01:00
afc.c AFC demuxer 2012-11-27 10:17:28 +00:00
aiff.h Support decoding G.722 in aiff. 2013-06-09 01:10:36 +02:00
aiffdec.c Support decoding G.722 in aiff. 2013-06-09 01:10:36 +02:00
aiffenc.c lavf/aiffenc: ID3 tags support 2013-01-22 20:27:05 +01:00
allformats.c lavf: add SFTP protocol via libssh 2013-09-21 03:26:54 +02:00
amr.c Remove an incorrect and unneeded assert in the amr demuxer. 2013-09-29 07:11:56 +02:00
anm.c Merge commit '1ecdf8912b' 2013-03-14 12:41:34 +01:00
apc.c Merge commit 'ef1b23ad21' 2012-11-13 10:55:07 +01:00
ape.c Merge commit '183b9d843a' 2013-09-12 13:51:20 +02:00
apetag.c apetag: do not require seekable output 2013-06-14 17:07:36 +00:00
apetag.h Merge commit '2d2d6a4883' 2013-05-29 10:40:42 +02:00
aqtitledec.c avformat: replace "AVPROBE_SCORE_MAX / X" by AVPROBE_SCORE_EXTENSION / Y 2013-05-05 13:34:56 +02:00
asf.c Merge commit '1eb9328030' 2013-09-20 11:18:20 +02:00
asf.h Merge commit '09f3c937ed' 2013-09-20 11:43:32 +02:00
asfcrypt.c Merge commit '48a4ffa722' 2013-02-06 14:25:28 +01:00
asfcrypt.h
asfdec.c Merge commit 'cc41167aed' 2013-10-02 14:53:00 +02:00
asfenc.c Merge commit 'bb461370e3' 2013-09-20 12:06:15 +02:00
assdec.c 10l: export ff_bprint_to_extradata between libs using avpriv_ prefix. 2012-12-30 22:54:56 +01:00
assenc.c Merge commit '7308439158' 2013-09-17 12:16:55 +02:00
ast.c AST Muxer 2012-12-04 11:25:46 +00:00
ast.h AST Muxer 2012-12-04 11:25:46 +00:00
astdec.c lavc & lavf: replace deprecated av_log* functions 2013-03-15 18:10:28 +00:00
astenc.c astenc: Enable the loop flag only when needed 2013-01-05 17:07:42 +01:00
au.c Merge remote-tracking branch 'qatar/master' 2013-04-11 15:56:18 +02:00
audiointerleave.c Merge commit 'e926b5ceb1' 2013-05-01 18:28:48 +02:00
audiointerleave.h Merge remote-tracking branch 'qatar/master' 2012-10-06 13:45:08 +02:00
avc.c
avc.h
avformat.h avformat: add support to force specific AVCodecs 2013-10-02 22:56:03 +02:00
avi.h
avidec.c Merge commit '8d07258bb6' 2013-09-29 22:56:15 +02:00
avienc.c Merge commit 'd872fb0f7f' 2013-09-27 12:13:41 +02:00
avio.c retry_transfer_wrapper(): check for interrupt before operation 2013-07-12 21:27:27 +02:00
avio.h avio.h: fix indention 2013-04-08 14:15:10 +02:00
avio_internal.h Merge commit '3627ce2f1d' 2013-09-20 12:26:09 +02:00
aviobuf.c Merge commit 'd872fb0f7f' 2013-09-27 12:13:41 +02:00
avisynth.c Merge commit '97b052e568' 2013-09-06 13:39:15 +02:00
avlanguage.c
avlanguage.h
avr.c avformat: replace "AVPROBE_SCORE_MAX / X" by AVPROBE_SCORE_EXTENSION / Y 2013-05-05 13:34:56 +02:00
avs.c Merge commit 'c0c2b96c13' 2013-05-05 12:41:36 +02:00
bethsoftvid.c Merge commit '1ecdf8912b' 2013-03-14 12:41:34 +01:00
bfi.c Merge commit '640a2427aa' 2013-09-30 00:13:36 +02:00
bink.c Merge remote-tracking branch 'qatar/master' 2013-02-01 14:34:18 +01:00
bintext.c bintext: make use of AV_OPT_TYPE_IMAGE_SIZE 2013-04-05 15:42:24 +00:00
bit.c avformat: replace "AVPROBE_SCORE_MAX / X" by AVPROBE_SCORE_EXTENSION / Y 2013-05-05 13:34:56 +02:00
bluray.c Merge commit 'e6153f173a' 2012-09-05 14:33:32 +02:00
bmv.c avformat/bmv: remove unused variable 2013-09-19 22:04:34 +02:00
boadec.c avformat: replace "AVPROBE_SCORE_MAX / X" by AVPROBE_SCORE_EXTENSION / Y 2013-05-05 13:34:56 +02:00
brstm.c lavc & lavf: replace deprecated av_log* functions 2013-03-15 18:10:28 +00:00
c93.c c93: signal EOF 2012-11-24 15:04:32 +00:00
cache.c cache: check lseek() return 2012-10-18 00:55:03 +02:00
caf.c Support iLBC in caf. 2012-11-19 10:19:50 +01:00
caf.h
cafdec.c cafdec: fix overflow checking in read_header() 2013-01-20 21:30:34 +01:00
cafenc.c Fix muxing QDM2 mono into caf. 2013-06-28 09:04:16 +02:00
cavsvideodec.c Merge commit 'e0f8be6413' 2013-05-05 12:31:03 +02:00
cdg.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
cdxl.c avformat: replace "AVPROBE_SCORE_MAX / X" by AVPROBE_SCORE_EXTENSION / Y 2013-05-05 13:34:56 +02:00
concat.c Merge commit '06ebc0bf9a' 2013-09-27 11:45:37 +02:00
concatdec.c Merge commit 'df9f22d42b' 2013-06-17 00:09:31 +02:00
crcenc.c Merge commit '3f7fd59d15' 2012-09-16 14:24:11 +02:00
crypto.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
cutils.c
data_uri.c lavf: add data: URI scheme. 2013-01-01 19:29:04 +01:00
daud.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
dfa.c dfa: support decoding version=1.0 2013-04-15 12:13:41 +02:00
diracdec.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
dnxhddec.c Allow autodetection of some dnxhd files that can be decoded correctly. 2012-10-13 11:59:37 +02:00
dsicin.c Merge commit '48d6556dd4' 2013-09-12 11:19:38 +02:00
dtsdec.c avformat/dtsdec: Improve probe, reject things looking like analoge signals 2013-07-26 11:19:43 +02:00
dtshddec.c dtshd: fix seeking 2012-10-10 15:50:32 +00:00
dv.c Merge commit '7ee191cab0' 2013-09-08 11:51:36 +02:00
dv.h
dvenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
dxa.c lavf/dxa: return meaningful error codes 2012-12-05 20:18:04 +00:00
eacdata.c eacdata: do not set sample_fmt 2013-01-24 15:02:44 +00:00
electronicarts.c Merge commit 'a9221e3960' 2013-09-29 23:52:07 +02:00
epafdec.c lavc & lavf: replace deprecated av_log* functions 2013-03-15 18:10:28 +00:00
ffm.h Merge commit 'a25d912dca' 2012-10-17 14:17:55 +02:00
ffmdec.c ffmdec: remove unused variable 2012-11-08 15:54:14 +01:00
ffmenc.c Merge commit 'c2cb01d418' 2013-04-26 10:59:45 +02:00
ffmeta.h
ffmetadec.c avformat/ffmetadec: return meaningful error codes 2013-09-11 11:06:44 +00:00
ffmetaenc.c Merge commit '3f7fd59d15' 2012-09-16 14:24:11 +02:00
file.c Merge commit '51eb213d00' 2013-08-08 11:47:12 +02:00
file_open.c libavutil: Make avpriv_open a library-internal function on msvcrt 2013-08-10 00:53:33 +03:00
filmstripdec.c Merge commit '1ecdf8912b' 2013-03-14 12:41:34 +01:00
filmstripenc.c filmstripenc: fix rounding that caused fate failure 2012-11-05 00:28:21 +01:00
flacdec.c lavf/flacdec: Share the function to parse cover art blocks 2013-07-09 19:19:42 +02:00
flacdec.h lavf/flacdec: Share the function to parse cover art blocks 2013-07-09 19:19:42 +02:00
flacdec_picture.c ff_flac_parse_picture: assert that len is within the array 2013-08-07 17:18:05 +02:00
flacenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
flacenc.h
flacenc_header.c
flic.c avformat/flic: check for memory allocation failures 2013-09-11 11:06:44 +00:00
flv.h Merge remote-tracking branch 'qatar/master' 2012-06-28 23:57:31 +02:00
flvdec.c Merge commit 'c951e4b442' 2013-09-23 11:56:29 +02:00
flvenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
format.c avformat: make av_register_*put_format() thread safe 2013-06-29 03:46:10 +02:00
framecrcenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
framehash.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
frmdec.c frmdec: do not abuse ff_codec_get_id() 2013-01-12 14:39:13 +00:00
ftp.c lavf/ftp: fix possible crash 2013-08-29 01:57:38 +02:00
g722.c Merge commit '1b891d17c5' 2012-10-26 14:24:57 +02:00
g723_1.c Merge commit '7abd35a1ff' 2013-05-06 10:19:56 +02:00
g729dec.c Merge commit 'e6153f173a' 2012-09-05 14:33:32 +02:00
gif.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
gifdec.c lavf/gifdec: add loop support. 2013-04-20 00:05:35 +02:00
gopher.c
gsmdec.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
gxf.c Added codec ID to playback DNxHD 2013-06-29 18:02:37 +02:00
gxf.h
gxfenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
h261dec.c avformat/h261dec: use init_get_bits8() 2013-07-04 13:40:08 +02:00
h263dec.c Merge commit 'e0f8be6413' 2013-05-05 12:31:03 +02:00
h264dec.c Merge remote-tracking branch 'qatar/master' 2013-09-21 11:57:19 +02:00
h265dec.c avformat: H265 demuxer 2013-09-03 19:34:04 +02:00
hls.c avformat/hls: do not limit manifest lines to 1024 chars 2013-09-21 20:59:30 +02:00
hlsenc.c Merge commit '09c93b1b95' 2013-08-16 14:03:44 +02:00
hlsproto.c Merge commit 'a2b7eeeb06' 2013-07-30 10:19:20 +02:00
http.c Merge commit '5c53bf7aaf' 2013-09-27 10:38:04 +02:00
http.h miscellaneous typo fixes 2012-12-21 00:18:34 +01:00
httpauth.c Use the avstring.h locale-independent character type functions 2013-03-07 15:16:36 +02:00
httpauth.h Merge remote-tracking branch 'qatar/master' 2012-10-06 13:45:08 +02:00
icodec.c lavc & lavf: replace deprecated av_log* functions 2013-03-15 18:10:28 +00:00
icoenc.c lavf: remove some flushing in write_packet muxers callbacks. 2013-04-14 21:16:53 +02:00
id3v1.c Add a comment about an intentional misspelling to the id3v1 tags. 2013-01-04 10:32:39 +01:00
id3v1.h
id3v2.c id2v2: check the return value of decode_str() 2013-06-09 17:25:39 +02:00
id3v2.h Merge commit '1afddbe59e' 2013-03-08 19:12:03 +01:00
id3v2enc.c avformat/id3v2enc: use UTF-16 in id3v2.3 APIC frame only if non-ASCII 2013-08-11 13:06:40 +02:00
idcin.c idcin: check return value of av_malloc() 2013-07-01 22:04:48 +00:00
idroqdec.c Merge commit 'bcbe4f3ceb' 2013-09-19 13:34:25 +02:00
idroqenc.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
iff.c avformat/iff: Byte seek is unsupported 2013-06-20 21:49:02 +02:00
ilbc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
img2.c Add a WebP decoder 2013-09-18 14:10:05 -04:00
img2dec.c img2dec: fix typo (double "with with") 2013-08-12 18:04:09 +02:00
img2enc.c avformat: remove duplicate includes 2013-09-21 15:36:33 +02:00
ingenientdec.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
internal.h avformat: move PROBE_BUF_M* to internal.h 2013-08-26 00:54:30 +02:00
ipmovie.c ipmovie_probe: make buffer pointers const 2012-12-25 01:44:59 +01:00
ircam.c add forgotten AV_ prefix to some CODEC_IDs 2012-12-09 01:47:58 +00:00
ircam.h IRCAM demuxer & muxer 2012-12-05 13:01:22 +00:00
ircamdec.c IRCAM demuxer & muxer 2012-12-05 13:01:22 +00:00
ircamenc.c ircamenc: 10l do not use avio_skip() 2012-12-05 13:46:35 +00:00
isom.c isom: add xd51 hdcam , someone needs to binary search FCP for new isom... 2013-06-19 10:43:48 -04:00
isom.h Merge commit '1f70a5ad28' 2013-08-23 13:27:34 +02:00
iss.c Merge commit 'ef1b23ad21' 2012-11-13 10:55:07 +01:00
iv8.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
ivfdec.c Merge remote-tracking branch 'qatar/master' 2012-06-21 22:37:43 +02:00
ivfenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
jacosubdec.c avformat/subtitles: add a next line jumper and use it. 2013-09-08 18:48:09 +02:00
jacosubenc.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
jvdec.c avformat/jvdec: fix doxygen comments 2013-05-24 15:36:54 +02:00
latmenc.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
libavformat.v dshow: Fix MSVC support, remove av_export, which was apparently unneeded anyway. 2013-02-15 00:08:12 +01:00
libgme.c lavf: add support for libgme 2013-07-02 18:52:45 +02:00
libmodplug.c avformat/libmodplug: Reduce the probe score for small input 2013-06-20 14:58:50 +02:00
libnut.c avformat/libnut: check avformat_new_stream() return value 2013-09-11 11:06:45 +00:00
libquvi.c avformat: replace "AVPROBE_SCORE_MAX / X" by AVPROBE_SCORE_EXTENSION / Y 2013-05-05 13:34:56 +02:00
librtmp.c Merge remote-tracking branch 'qatar/master' 2012-06-04 00:33:42 +02:00
libssh.c lavf: add SFTP protocol via libssh 2013-09-21 03:26:54 +02:00
lmlm4.c lmlm4: check packet_size against lower limit too 2013-03-19 16:30:44 +01:00
loasdec.c avformat: replace "AVPROBE_SCORE_MAX / X" by AVPROBE_SCORE_EXTENSION / Y 2013-05-05 13:34:56 +02:00
log2_tab.c avutil: Duplicate ff_log2_tab instead of sharing it across libs 2012-10-12 20:39:17 +02:00
lvfdec.c avformat: replace "AVPROBE_SCORE_MAX / X" by AVPROBE_SCORE_EXTENSION / Y 2013-05-05 13:34:56 +02:00
lxfdec.c Merge remote-tracking branch 'qatar/master' 2013-09-27 13:27:31 +02:00
m4vdec.c Merge commit 'e0f8be6413' 2013-05-05 12:31:03 +02:00
Makefile lavf: add SFTP protocol via libssh 2013-09-21 03:26:54 +02:00
matroska.c lavf/matroska: Removing experimental suffix for Opus 2013-09-12 23:55:29 +02:00
matroska.h matroska: Add the CueDuration element 2013-09-21 14:33:01 +02:00
matroskadec.c Merge commit '668643b923' 2013-09-25 09:39:24 +02:00
matroskaenc.c matroska: Add the CueDuration element 2013-09-21 14:33:01 +02:00
md5enc.c lavf/md5enc: Use AV_HASH_MAX_SIZE 2013-06-15 18:50:11 -03:00
md5proto.c Merge commit 'b7f1010c8f' 2012-10-12 15:34:49 +02:00
metadata.c
metadata.h
mgsts.c
microdvddec.c avformat/subtitles: add a next line jumper and use it. 2013-09-08 18:48:09 +02:00
microdvdenc.c lavf: remove some flushing in write_packet muxers callbacks. 2013-04-14 21:16:53 +02:00
mkvtimestamp_v2.c lavf: remove some flushing in write_packet muxers callbacks. 2013-04-14 21:16:53 +02:00
mm.c Merge commit 'e0f8be6413' 2013-05-05 12:31:03 +02:00
mmf.c Merge commit '7cbc4cb442' 2013-05-15 10:15:15 +02:00
mms.c
mms.h Merge remote-tracking branch 'qatar/master' 2012-10-06 13:45:08 +02:00
mmsh.c mmsh: reimplement seeking 2013-07-07 18:50:03 +02:00
mmst.c Merge commit 'd872fb0f7f' 2013-09-27 12:13:41 +02:00
mov.c mov: fix trun / pseudo_stream_id handling 2013-10-02 19:59:10 +02:00
mov_chan.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
mov_chan.h Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
movenc.c Merge commit 'f2b00a5372' 2013-09-23 14:40:18 +02:00
movenc.h Merge remote-tracking branch 'qatar/master' 2013-09-18 13:32:55 +02:00
movenchint.c movenchint: Clear size and len if the realloc failed 2013-09-22 21:02:52 +03:00
mp3dec.c Merge commit 'c0779a67e8' 2013-09-12 15:02:23 +02:00
mp3enc.c avformat: remove duplicate includes 2013-09-21 15:36:33 +02:00
mpc.c Merge remote-tracking branch 'qatar/master' 2012-11-13 11:09:38 +01:00
mpc8.c Merge commit '17d57848fc' 2013-09-12 14:31:07 +02:00
mpeg.c avformat/vobsub: fix several issues. 2013-10-04 07:59:49 +02:00
mpeg.h Use 0x88 as stream id when muxing DTS in program streams. 2013-09-10 01:48:59 +02:00
mpegenc.c avformat/mpegenc: check, warn and clip muxrate to syntactical possible values 2013-09-29 17:02:57 +02:00
mpegts.c avformat/mpegts: check avio_tell() return code before using it 2013-09-26 16:43:55 +02:00
mpegts.h Merge commit 'b164d66e35' 2013-03-15 13:28:38 +01:00
mpegtsenc.c mpegtsenc: add option tables_version 2013-08-03 12:44:53 +02:00
mpegvideodec.c Merge commit 'e0f8be6413' 2013-05-05 12:31:03 +02:00
mpjpeg.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
mpl2dec.c avformat/subtitles: add a next line jumper and use it. 2013-09-08 18:48:09 +02:00
mpsubdec.c avformat/subtitles: add a next line jumper and use it. 2013-09-08 18:48:09 +02:00
msnwc_tcp.c lavf: add missing new line to some error messages 2012-09-01 15:59:30 +02:00
mtv.c Avoid img_segment_size == 0 in mtv demuxer. 2013-09-30 07:55:23 +02:00
mux.c Merge commit '596e5d4783' 2013-09-17 12:01:35 +02:00
mvdec.c lavc & lavf: replace deprecated av_log* functions 2013-03-15 18:10:28 +00:00
mvi.c Merge commit '28ff439efd' 2013-09-29 23:24:27 +02:00
mxf.c Merge commit '716d413c13' 2012-10-08 21:06:57 +02:00
mxf.h Merge commit '716d413c13' 2012-10-08 21:06:57 +02:00
mxfdec.c Merge commit 'ad0560fe74' 2013-10-02 14:55:18 +02:00
mxfenc.c avformat/mxfenc: instance number is just 24 bits 2013-09-29 14:33:40 +02:00
mxg.c Merge commit '7950e519bb' 2013-08-03 10:08:30 +02:00
ncdec.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
network.c avformat/network: fix duplicate include 2013-09-21 16:58:58 +02:00
network.h Merge commit '9d5ec50ead' 2013-08-10 10:18:18 +02:00
nistspheredec.c lavc & lavf: replace deprecated av_log* functions 2013-03-15 18:10:28 +00:00
noproxy-test.c Merge commit 'ec7c51c786' 2013-06-16 23:45:42 +02:00
nsvdec.c Merge commit 'c011ceef78' 2013-06-03 11:53:05 +02:00
nullenc.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
nut.c pcm: support 24-bit/32-bit little-endian planar 2013-09-27 01:33:45 +02:00
nut.h Merge commit 'd46c588f3c' 2013-05-16 09:11:04 +02:00
nutdec.c avformat/nutdec: check for allocation failures 2013-09-11 15:04:08 +00:00
nutenc.c avformat/nutenc: use av_reallocp_array() 2013-09-14 16:14:43 +00:00
nuv.c lavf: remove disabled FF_API_R_FRAME_RATE cruft 2013-03-11 18:23:50 +01:00
oggdec.c lavf/ogg: Support for end trimming Opus 2013-09-16 21:42:41 +02:00
oggdec.h lavf/ogg: Support for end trimming Opus 2013-09-16 21:42:41 +02:00
oggenc.c avformat: remove duplicate includes 2013-09-21 15:36:33 +02:00
oggparsecelt.c Merge commit '7751e4693d' 2012-09-25 15:15:16 +02:00
oggparsedirac.c Merge commit '7751e4693d' 2012-09-25 15:15:16 +02:00
oggparseflac.c Merge commit '7751e4693d' 2012-09-25 15:15:16 +02:00
oggparseogm.c Merge commit '19b9659f31' 2013-09-17 15:50:21 +02:00
oggparseopus.c lavf/oggopus: Fixing a log message 2013-09-16 23:46:39 +02:00
oggparseskeleton.c oggparseskeleton: avoid header parsing failure 2013-07-06 23:53:19 +02:00
oggparsespeex.c oggspeexparse: fix array overread 2012-12-12 11:21:23 +01:00
oggparsetheora.c Merge commit 'd872fb0f7f' 2013-09-27 12:13:41 +02:00
oggparsevorbis.c Merge commit 'd872fb0f7f' 2013-09-27 12:13:41 +02:00
oma.c Merge commit '23d0fdcf6f' 2013-09-30 02:15:36 +02:00
oma.h Merge commit '23d0fdcf6f' 2013-09-30 02:15:36 +02:00
omadec.c Merge remote-tracking branch 'qatar/master' 2013-09-30 02:21:41 +02:00
omaenc.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
options.c Merge commit 'b5a138652f' 2013-08-03 09:16:36 +02:00
options_table.h lavf/options_table: improve option help text 2013-09-17 19:47:58 +02:00
os_support.c Merge commit 'dfc6b5c814' 2013-08-09 07:16:38 +02:00
os_support.h avformat: remove duplicate includes 2013-09-21 15:36:33 +02:00
paf.c avformat/paf: Fix integer overflow and out of array read 2013-08-09 13:23:10 +02:00
pcm.c lavf/pcm: check size, do not produce invalid packets 2012-12-07 13:05:43 +00:00
pcm.h pcmdec: move read_packet function to pcm.c so it can be shared with other demuxers 2012-12-05 12:40:57 +00:00
pcmdec.c pcmdec: move read_packet function to pcm.c so it can be shared with other demuxers 2012-12-05 12:40:57 +00:00
pcmenc.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
pjsdec.c Replace all occurrences of PRI in sscanf() calls with SCN 2013-04-10 09:56:48 +02:00
pmpdec.c Merge commit 'a5f8873620' 2013-05-04 10:17:52 +02:00
psxstr.c Merge commit '7950e519bb' 2013-08-03 10:08:30 +02:00
pva.c Merge commit 'e0f8be6413' 2013-05-05 12:31:03 +02:00
pvfdec.c pvfdec: drop pointless casting of buffer in ff_get_line() 2012-12-19 15:55:39 +00:00
qcp.c Add EVRCA and SMV codec id 2013-01-07 11:43:20 +00:00
qtpalette.h
r3d.c Merge commit 'd8798276b6' 2013-09-20 15:14:31 +02:00
rawdec.c lavf: data muxer and demuxer. 2013-05-01 11:56:34 +02:00
rawdec.h rawdec: make use of AV_OPT_TYPE_VIDEO_RATE 2013-04-05 15:42:24 +00:00
rawenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
rawenc.h
rawvideodec.c rawvideodec: make use of AV_OPT_TYPE_IMAGE_SIZE 2013-04-05 15:42:24 +00:00
rdt.c Merge commit 'd872fb0f7f' 2013-09-27 12:13:41 +02:00
rdt.h
realtextdec.c avformat: replace "AVPROBE_SCORE_MAX / X" by AVPROBE_SCORE_EXTENSION / Y 2013-05-05 13:34:56 +02:00
redspark.c avformat/redspark: check coef_off 2013-08-23 20:05:35 +02:00
riff.c riff: g723_1 decodes vivo g723.1 in asf 2013-09-15 22:03:03 -04:00
riff.h Merge commit '971cce7ebb' 2013-08-06 16:41:44 +02:00
riffdec.c Merge commit 'd07aa3f02b' 2013-09-29 23:41:16 +02:00
riffenc.c Merge commit '3dd5c95dee' 2013-08-06 18:08:30 +02:00
rl2.c Merge commit '3ca14aa596' 2013-09-20 14:58:07 +02:00
rm.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
rm.h Merge commit '4c995fafd8' 2012-10-16 13:20:46 +02:00
rmdec.c Merge commit '0f310a6f33' 2013-09-19 10:38:40 +02:00
rmenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
rmsipr.c Merge commit '4c995fafd8' 2012-10-16 13:20:46 +02:00
rmsipr.h Merge commit '4c995fafd8' 2012-10-16 13:20:46 +02:00
rpl.c Escape 130 (RPL) decoder 2013-05-18 07:12:56 +02:00
rsd.c ADPCM IMA Radical decoder 2013-05-10 16:53:50 -03:00
rso.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
rso.h
rsodec.c Merge commit '6d97484d72' 2013-03-14 12:52:12 +01:00
rsoenc.c Merge commit '3f7fd59d15' 2012-09-16 14:24:11 +02:00
rtmp.h Merge commit '28306e6d62' 2013-06-02 10:30:35 +02:00
rtmpcrypt.c Merge commit 'e6153f173a' 2012-09-05 14:33:32 +02:00
rtmpcrypt.h Merge remote-tracking branch 'qatar/master' 2012-07-23 21:25:09 +02:00
rtmpdh.c Merge remote-tracking branch 'qatar/master' 2012-08-18 15:20:32 +02:00
rtmpdh.h Merge remote-tracking branch 'qatar/master' 2012-07-23 21:25:09 +02:00
rtmphttp.c Merge commit 'd872fb0f7f' 2013-09-27 12:13:41 +02:00
rtmppkt.c Merge commit '32a414f316' 2013-09-23 11:31:13 +02:00
rtmppkt.h Merge commit '8583b14252' 2013-09-18 12:09:06 +02:00
rtmpproto.c Merge remote-tracking branch 'qatar/master' 2013-10-02 14:59:42 +02:00
rtp.c rtp: Make ff_rtp_codec_id() case insensitive 2013-08-05 21:53:52 +02:00
rtp.h Merge commit '2e814d0329' 2013-08-01 11:42:30 +02:00
rtpdec.c Merge remote-tracking branch 'qatar/master' 2013-06-07 10:17:20 +02:00
rtpdec.h Merge commit 'b7e6da988b' 2013-08-01 12:03:24 +02:00
rtpdec_amr.c Merge commit '90c784cc13' 2012-12-21 17:46:43 +01:00
rtpdec_asf.c Merge commit '5626f994f2' 2013-09-19 11:01:26 +02:00
rtpdec_formats.h Merge commit 'c6f1dc8e4c' 2013-01-21 14:02:01 +01:00
rtpdec_g726.c Merge commit '7abd35a1ff' 2013-05-06 10:19:56 +02:00
rtpdec_h263.c Merge commit '7abd35a1ff' 2013-05-06 10:19:56 +02:00
rtpdec_h263_rfc2190.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
rtpdec_h264.c Merge commit '7abd35a1ff' 2013-05-06 10:19:56 +02:00
rtpdec_ilbc.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
rtpdec_jpeg.c Merge commit '90c784cc13' 2012-12-21 17:46:43 +01:00
rtpdec_latm.c Merge commit '1ecdf8912b' 2013-03-14 12:41:34 +01:00
rtpdec_mpeg4.c Merge commit '7abd35a1ff' 2013-05-06 10:19:56 +02:00
rtpdec_mpeg12.c Merge commit '7abd35a1ff' 2013-05-06 10:19:56 +02:00
rtpdec_mpegts.c Merge commit '7abd35a1ff' 2013-05-06 10:19:56 +02:00
rtpdec_qcelp.c Merge commit '90c784cc13' 2012-12-21 17:46:43 +01:00
rtpdec_qdm2.c Merge commit '90c784cc13' 2012-12-21 17:46:43 +01:00
rtpdec_qt.c Merge commit 'd872fb0f7f' 2013-09-27 12:13:41 +02:00
rtpdec_svq3.c Merge commit '90c784cc13' 2012-12-21 17:46:43 +01:00
rtpdec_vp8.c Merge remote-tracking branch 'qatar/master' 2013-03-03 11:40:37 +01:00
rtpdec_xiph.c Merge commit '7abd35a1ff' 2013-05-06 10:19:56 +02:00
rtpenc.c Merge commit '2e814d0329' 2013-08-01 11:42:30 +02:00
rtpenc.h Merge commit '1297f7b87f' 2013-07-27 08:58:26 +02:00
rtpenc_aac.c Merge remote-tracking branch 'qatar/master' 2012-11-09 10:29:51 +01:00
rtpenc_amr.c
rtpenc_chain.c avformat: remove duplicate includes 2013-09-21 15:36:33 +02:00
rtpenc_chain.h Merge remote-tracking branch 'qatar/master' 2012-11-15 11:31:13 +01:00
rtpenc_h263.c Change all uses of restrict to use av_restrict instead. 2012-06-17 00:38:39 +02:00
rtpenc_h263_rfc2190.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
rtpenc_h264.c rtpenc: fix overflow checking in avc_mp4_find_startcode() 2013-01-23 13:51:29 +02:00
rtpenc_jpeg.c Merge commit '716d413c13' 2012-10-08 21:06:57 +02:00
rtpenc_latm.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
rtpenc_mpv.c Merge commit 'f1e9398621' 2013-03-26 13:44:09 +01:00
rtpenc_vp8.c Merge commit '65e053271a' 2012-12-17 13:46:54 +01:00
rtpenc_xiph.c rtpenc_xiph: switch to av_assert 2012-08-28 22:29:20 +02:00
rtpproto.c Merge commit '4b054a3400' 2013-08-16 12:31:15 +02:00
rtpproto.h Merge commit 'b7e6da988b' 2013-08-01 12:03:24 +02:00
rtsp.c Merge remote-tracking branch 'qatar/master' 2013-08-14 12:42:44 +02:00
rtsp.h Merge remote-tracking branch 'qatar/master' 2013-08-14 12:42:44 +02:00
rtspcodes.h Merge remote-tracking branch 'qatar/master' 2012-07-11 23:57:11 +02:00
rtspdec.c Merge commit 'b7e6da988b' 2013-08-01 12:03:24 +02:00
rtspenc.c Merge commit 'f542dedf72' 2013-08-07 11:52:05 +02:00
samidec.c lavf: remove generic index flag from text subtitles. 2013-01-02 10:32:21 +01:00
sapdec.c Merge remote-tracking branch 'qatar/master' 2013-04-09 11:36:39 +02:00
sapenc.c avformat: remove duplicate includes 2013-09-21 15:36:33 +02:00
sauce.c sauce: test filetype correctly for datatype 5 (binary text) 2012-12-14 16:46:29 +11:00
sauce.h
sbgdec.c lavf/sbgdec: use proper constants for av_log(). 2012-11-24 23:56:52 +01:00
sctp.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
sdp.c Merge commit '094a7405e5' 2013-01-15 16:12:24 +01:00
seek-test.c seek-test: make duration user configurable 2013-05-21 18:13:25 +02:00
seek.c
seek.h
segafilm.c segafilm: Validate the number of audio channels 2013-09-19 22:45:40 +03:00
segment.c Reinstate proper FFmpeg license for all files. 2013-08-30 15:47:38 +00:00
sierravmd.c avformat/sierravmd: use av_freep() for freeing context fields 2013-09-16 14:53:56 +02:00
siff.c siff: set duration 2012-12-17 13:34:30 +01:00
smacker.c Merge commit 'd872fb0f7f' 2013-09-27 12:13:41 +02:00
smjpeg.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
smjpeg.h Replace Libav with FFmpeg in license headers for files created by me 2012-06-29 01:58:34 +00:00
smjpegdec.c Merge commit '1ecdf8912b' 2013-03-14 12:41:34 +01:00
smjpegenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
smoothstreamingenc.c Merge commit 'd872fb0f7f' 2013-09-27 12:13:41 +02:00
smush.c smush: check audio packet size 2012-11-17 19:58:54 +00:00
sol.c Merge remote-tracking branch 'qatar/master' 2012-11-13 11:09:38 +01:00
sox.h
soxdec.c soxdec: use meaningful error codes 2012-12-28 21:50:42 +00:00
soxenc.c soxenc: use ff_raw_write_packet() 2012-12-28 21:58:03 +00:00
spdif.c
spdif.h Merge commit '7df9e693a3' 2013-09-03 15:05:18 +02:00
spdifdec.c Merge commit 'e0f8be6413' 2013-05-05 12:31:03 +02:00
spdifenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
srtdec.c avformat/subtitles: add a next line jumper and use it. 2013-09-08 18:48:09 +02:00
srtenc.c lavf: remove some flushing in write_packet muxers callbacks. 2013-04-14 21:16:53 +02:00
srtp.c Merge remote-tracking branch 'qatar/master' 2013-04-09 11:36:39 +02:00
srtp.h Merge commit 'a2a991b2dd' 2013-01-21 15:00:45 +01:00
srtpproto.c Merge remote-tracking branch 'qatar/master' 2013-04-09 11:36:39 +02:00
subtitles.c avformat/vobsub: fix several issues. 2013-10-04 07:59:49 +02:00
subtitles.h avformat/vobsub: fix several issues. 2013-10-04 07:59:49 +02:00
subviewer1dec.c avformat: replace "AVPROBE_SCORE_MAX / X" by AVPROBE_SCORE_EXTENSION / Y 2013-05-05 13:34:56 +02:00
subviewerdec.c avformat: replace "AVPROBE_SCORE_MAX / X" by AVPROBE_SCORE_EXTENSION / Y 2013-05-05 13:34:56 +02:00
swf.c Merge remote-tracking branch 'qatar/master' 2012-08-18 15:20:32 +02:00
swf.h lavf/swf: remove unused assert include. 2013-05-26 15:48:50 +02:00
swfdec.c lavf/swfdec: remove 8-bit audio FIXME. 2013-02-21 00:59:31 +01:00
swfenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
takdec.c avformat/takdec: use init_get_bits8() 2013-08-05 10:14:42 +02:00
tcp.c tcp: Explicitly convert a pointer to a boolean integer 2013-09-09 23:57:04 +03:00
tedcaptionsdec.c avformat/tedcaptionsdec: make const arrays static const 2013-08-10 18:44:40 +02:00
tee.c vformat/tee: fix uninitialized use of ret 2013-09-07 22:43:32 +02:00
thp.c thp: set duration 2012-12-16 10:27:54 +00:00
tiertexseq.c Merge remote-tracking branch 'qatar/master' 2012-11-13 11:09:38 +01:00
tls.c avformat/tls: fix {} error for the GNUTLS case 2013-09-27 15:59:19 +02:00
tmv.c Merge remote-tracking branch 'qatar/master' 2012-11-13 11:09:38 +01:00
tta.c tta: read ape tags last 2013-06-16 18:56:56 +00:00
tty.c tty: make use of AV_OPT_TYPE_IMAGE_SIZE 2013-04-05 14:30:56 +00:00
txd.c lavf/txd: cosmetics: fix identation 2012-10-15 08:12:25 +00:00
udp.c Merge commit 'bb9378251a' 2013-08-06 15:40:05 +02:00
unix.c avformat/unix: reshuffle #includes 2013-08-21 05:51:41 +02:00
url-test.c Merge commit 'df9f22d42b' 2013-06-17 00:09:31 +02:00
url.c Merge commit 'df9f22d42b' 2013-06-17 00:09:31 +02:00
url.h Merge commit 'df9f22d42b' 2013-06-17 00:09:31 +02:00
urldecode.c Use the avstring.h locale-independent character type functions 2013-03-07 15:16:36 +02:00
urldecode.h Merge remote-tracking branch 'qatar/master' 2012-07-26 21:37:15 +02:00
utils.c avformat: add support to force specific AVCodecs 2013-10-02 22:56:03 +02:00
vc1test.c Merge commit 'e0f8be6413' 2013-05-05 12:31:03 +02:00
vc1testenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
version.h avformat: add support to force specific AVCodecs 2013-10-02 22:56:03 +02:00
vivo.c add forgotten AV_ prefix to some CODEC_IDs 2012-12-09 01:47:58 +00:00
voc.c Merge commit '36ef5369ee' 2012-08-07 22:45:46 +02:00
voc.h Merge commit 'bfe5454cd2' 2012-11-29 13:45:57 +01:00
vocdec.c Merge commit '5bbfe193a0' 2013-09-16 12:38:56 +02:00
vocenc.c vocenc: fix 10l regression 2012-11-04 04:46:10 +00:00
vorbiscomment.c vorbiscomment: Add DESCRIPTION to ff_vorbiscomment_metadata_conv 2013-07-18 12:03:21 +02:00
vorbiscomment.h
vplayerdec.c Add VPlayer subtitles demuxer and decoder. 2012-12-30 22:46:42 +01:00
vqf.c Merge commit '68ff998128' 2013-09-29 22:42:31 +02:00
w64.c Merge commit '13f57a4d88' 2013-05-03 11:06:27 +02:00
w64.h w64: fact guid support 2013-01-07 10:08:38 +00:00
wavdec.c avformat/wavdec: check smv_frames_per_jpeg 2013-09-26 14:56:32 +02:00
wavenc.c WAV muxer: reindent 2013-02-13 17:36:55 +00:00
wc3movie.c Merge remote-tracking branch 'qatar/master' 2012-11-13 11:09:38 +01:00
webvttdec.c lavf/webvttdec: use private option to specify WebVTT kind 2013-06-25 00:13:47 +02:00
webvttenc.c lavf/webvttenc: use proper printf format for int64_t values 2013-07-30 20:32:26 +00:00
westwood_aud.c Merge commit 'e0f8be6413' 2013-05-05 12:31:03 +02:00
westwood_vqa.c Merge commit 'f054e309c5' 2013-07-08 05:02:52 +02:00
wtv.c wtv: Add more sanity checks for a length read from the file 2013-09-19 22:46:35 +03:00
wtv.h Merge commit '86f042dcab' 2013-07-27 09:19:58 +02:00
wtvdec.c Merge commit '83c285f880' 2013-09-20 14:51:02 +02:00
wtvenc.c wtvenc: use ffio_fill() 2013-05-29 18:14:43 +00:00
wv.c Merge commit '794ca87d2b' 2013-05-29 10:07:30 +02:00
wv.h Merge commit '794ca87d2b' 2013-05-29 10:07:30 +02:00
wvdec.c Merge commit '794ca87d2b' 2013-05-29 10:07:30 +02:00
wvenc.c lavf: Don't explicitly flush after each written packet in muxers 2013-09-16 22:17:33 +03:00
xa.c xa: abort if number of channels or sample rate is 0 2013-06-25 22:24:55 +00:00
xmv.c Merge commit 'd4c2a3740f' 2013-09-18 11:24:27 +02:00
xwma.c Merge commit 'adc09136a4' 2013-09-29 22:59:49 +02:00
yop.c Merge commit 'd8b6866014' 2013-09-20 14:37:52 +02:00
yuv4mpeg.c avformat: remove duplicate includes 2013-09-21 15:36:33 +02:00