diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-02-02 14:20:43 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-03 09:29:02 +0100 |
commit | d2afbd9a56e4e863bad01923006dd9b77f747035 (patch) | |
tree | 09593d24781bd903c2a3826ae45c372da1d61ab1 /libavformat/Makefile | |
parent | 22c0babbb2ac37724c2462d9cda01e3b7229df56 (diff) | |
download | ffmpeg-d2afbd9a56e4e863bad01923006dd9b77f747035.tar.gz |
frame{crc/md5}: set the stream timebase from codec timebase.
Right now those muxers use the default timebase in all cases(1/90000).
This patch avoid unnecessary rescaling and makes the printed timestamps
more readable.
Also, extend the printed information to include the timebases and packet
pts/duration and align the columns.
Obviously changes the results of all fate tests which use those two
muxers.
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 06718d2485..0d6cb91e49 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -89,8 +89,8 @@ OBJS-$(CONFIG_FLIC_DEMUXER) += flic.o OBJS-$(CONFIG_FLV_DEMUXER) += flvdec.o OBJS-$(CONFIG_FLV_MUXER) += flvenc.o avc.o OBJS-$(CONFIG_FOURXM_DEMUXER) += 4xm.o -OBJS-$(CONFIG_FRAMECRC_MUXER) += framecrcenc.o -OBJS-$(CONFIG_FRAMEMD5_MUXER) += md5enc.o +OBJS-$(CONFIG_FRAMECRC_MUXER) += framecrcenc.o framehash.o +OBJS-$(CONFIG_FRAMEMD5_MUXER) += md5enc.o framehash.o OBJS-$(CONFIG_GIF_MUXER) += gif.o OBJS-$(CONFIG_GSM_DEMUXER) += gsmdec.o OBJS-$(CONFIG_GXF_DEMUXER) += gxf.o |