Changes in / [db4a2976:0a32a1b4] in ffmpeg
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Changelog
rdb4a2976 r0a32a1b4 28 28 - palettegen and paletteuse filters 29 29 - VP9 RTP payload format (draft 0) experimental depacketizer 30 - RTP depacketizer for DV (RFC 6469)30 - DV RTP payload format (RFC 6469) depacketizer 31 31 - DXVA2-accelerated HEVC decoding 32 32 - AAC ELD 480 decoding -
libavformat/Makefile
rdb4a2976 r0a32a1b4 33 33 rtpdec_amr.o \ 34 34 rtpdec_asf.o \ 35 rtpdec_dv.o 35 rtpdec_dv.o \ 36 36 rtpdec_g726.o \ 37 37 rtpdec_h261.o \ -
libavformat/rtpdec_dv.c
rdb4a2976 r0a32a1b4 18 18 * License along with FFmpeg; if not, write to the Free Software 19 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 20 * 20 21 */ 21 22 22 23 #include "libavutil/avstring.h" 23 24 24 #include "libavcodec/bytestream.h" 25 25 … … 47 47 static av_cold void dv_free_context(PayloadContext *data) 48 48 { 49 dv_free_dyn_buffer(&data->buf);50 49 av_free(data); 51 50 } -
libavformat/version.h
rdb4a2976 r0a32a1b4 31 31 32 32 #define LIBAVFORMAT_VERSION_MAJOR 56 33 33 34 #define LIBAVFORMAT_VERSION_MINOR 23 34 #define LIBAVFORMAT_VERSION_MICRO 10 435 #define LIBAVFORMAT_VERSION_MICRO 103 35 36 36 37 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
Note:
See TracChangeset
for help on using the changeset viewer.