| Commit message (Expand) | Author | Age | Files | Lines |
* | add a ff_ prefix to newly exported functions from avc.c | Aurelien Jacobs | 2008-01-11 | 4 | -9/+9 |
* | Matroska muxer needs to format all NAL units, not only extradata. | Aurelien Jacobs | 2008-01-11 | 1 | -0/+10 |
* | Do not install rtp.h (which should have never been part of the public API) | Luca Abeni | 2008-01-11 | 1 | -1/+1 |
* | matroskaenc now depends on avc.o | Aurelien Jacobs | 2008-01-11 | 1 | -2/+2 |
* | Use the isom avcc formatting for h264 extradata in matroska. | Aurelien Jacobs | 2008-01-11 | 1 | -0/+3 |
* | Move isom_write_avcc() and related functions into a separate file. | Aurelien Jacobs | 2008-01-11 | 4 | -118/+172 |
* | extract isom_write_avcc into a function | Aurelien Jacobs | 2008-01-11 | 1 | -12/+19 |
* | Add one more parameter to avc_parse_nal_units so that it allows not to | Aurelien Jacobs | 2008-01-11 | 1 | -4/+4 |
* | Check return value of avc_parse_nal_units(). | Aurelien Jacobs | 2008-01-11 | 1 | -2/+6 |
* | Reindent after r11493 (always use parse_packet() vfunc in rtp_parse_packet()), | Ronald S. Bultje | 2008-01-10 | 1 | -2/+2 |
* | Make rtp_parse_packet() always call the vfunc of the dynamic payload handler | Ronald S. Bultje | 2008-01-10 | 1 | -4/+2 |
* | Pass a proper context to av_log() | Luca Abeni | 2008-01-10 | 1 | -10/+10 |
* | Fix random typos. | Diego Biurrun | 2008-01-08 | 1 | -1/+1 |
* | url_write is part of the public API so it may not be under ifdef. | Guillaume LecrefECERF | 2008-01-08 | 1 | -2/+0 |
* | check av_new_stream return value | Baptiste Coudurier | 2008-01-08 | 1 | -0/+6 |
* | check av_new_stream return value | Baptiste Coudurier | 2008-01-08 | 1 | -0/+4 |
* | Linux Media Labs MPEG-4 (LMLM4) demuxer | Ivo van Poorten | 2008-01-07 | 3 | -0/+128 |
* | Implement read_timestamp and enable seeking in PVA files. | Ivo van Poorten | 2008-01-07 | 1 | -10/+64 |
* | cosmetics | Ivo van Poorten | 2008-01-07 | 1 | -1/+1 |
* | remove unnecessary check | Ivo van Poorten | 2008-01-07 | 1 | -1/+0 |
* | use ff_parse_pes_pts for parsing an MPEG-PES timestamp | Ivo van Poorten | 2008-01-07 | 1 | -5/+3 |
* | Move parsing of MPEG-PES timestamp to mpeg.h (as an inline function) so it | Ivo van Poorten | 2008-01-07 | 2 | -11/+15 |
* | Make ff_mkv_codec_tags lie entirely in .rodata section. | Aurelien Jacobs | 2008-01-07 | 3 | -3/+3 |
* | cosmetics: Add another pair of parentheses to aid readability. | Diego Biurrun | 2008-01-06 | 1 | -1/+1 |
* | Rename two structures, identifiers starting with _[A-Z] are reserved. | Diego Biurrun | 2008-01-06 | 1 | -2/+2 |
* | cosmetics, split overly long lines | Baptiste Coudurier | 2008-01-06 | 1 | -22/+36 |
* | Make AVRtpPayloadTypes static and constant | Diego Pettenò | 2008-01-06 | 2 | -12/+9 |
* | cosmetics, superfluous space | Ivo van Poorten | 2008-01-05 | 1 | -1/+1 |
* | proper check for valid pva_pts | Ivo van Poorten | 2008-01-05 | 1 | -1/+1 |
* | do not return an error, but warn and recover when encountering an audio packet | Ivo van Poorten | 2008-01-05 | 1 | -2/+5 |
* | validate streamid before use | Ivo van Poorten | 2008-01-05 | 1 | -0/+4 |
* | change audio codec id to mp2 | Ivo van Poorten | 2008-01-05 | 1 | -1/+1 |
* | proper type and initialization of pva_pts | Ivo van Poorten | 2008-01-05 | 1 | -1/+1 |
* | remove unnecessary shift | Ivo van Poorten | 2008-01-05 | 1 | -1/+1 |
* | improve CRC API | Aurelien Jacobs | 2008-01-04 | 3 | -3/+4 |
* | Split the RTP muxer out of rtp.c, to simplify the RTSP demuxer's dependencies | Luca Abeni | 2008-01-04 | 3 | -330/+357 |
* | Split the RTP demuxing functions out of rtp.c, to simplify the RTP muxer's de... | Luca Abeni | 2008-01-04 | 3 | -526/+556 |
* | Move *malloc() out of tree.c, that way the code can be used with | Michael Niedermayer | 2008-01-04 | 1 | -3/+6 |
* | Make three rm demuxer functions non static. | Ronald S. Bultje | 2008-01-04 | 2 | -3/+45 |
* | Rationalize some dependencies between rtsp and rtp | Luca Abeni | 2008-01-03 | 2 | -2/+2 |
* | Fix the RTP muxer dependencies | Luca Abeni | 2008-01-03 | 1 | -1/+1 |
* | use one shift less in get_pts() | Ivo van Poorten | 2008-01-03 | 1 | -1/+1 |
* | mention libavfilter in warning about deprecated vhook | Aurelien Jacobs | 2008-01-03 | 1 | -1/+1 |
* | Drop RTSP default protocol. | Ronald S. Bultje | 2008-01-02 | 2 | -0/+4 |
* | cosmetics: Reindent. | Diego Biurrun | 2008-01-02 | 1 | -1/+1 |
* | Merge double-nested if into && condition. | Ronald S. Bultje | 2008-01-02 | 1 | -3/+1 |
* | move num_packets=0 where it belongs | Aurelien Jacobs | 2008-01-02 | 1 | -1/+1 |
* | TechnoTrend PVA Demuxer | Ivo van Poorten | 2008-01-02 | 3 | -0/+155 |
* | cosmetics: sort() | Diego Biurrun | 2008-01-02 | 1 | -2/+2 |
* | Add portable way to check for the existence of definitions and | Dave Yeo | 2008-01-01 | 1 | -1/+1 |