Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
d9bdf7d9ae | |||
a588e1e560 | |||
36e7385d0e | |||
5108323aa9 |
@ -1,7 +1,7 @@
|
|||||||
Entries are sorted chronologically from oldest to youngest within each release,
|
Entries are sorted chronologically from oldest to youngest within each release,
|
||||||
releases are sorted from youngest to oldest.
|
releases are sorted from youngest to oldest.
|
||||||
|
|
||||||
version <next>:
|
version 2.5:
|
||||||
- HEVC/H.265 RTP payload format (draft v6) packetizer
|
- HEVC/H.265 RTP payload format (draft v6) packetizer
|
||||||
- SUP/PGS subtitle demuxer
|
- SUP/PGS subtitle demuxer
|
||||||
- ffprobe -show_pixel_formats option
|
- ffprobe -show_pixel_formats option
|
||||||
|
@ -31,7 +31,7 @@ PROJECT_NAME = FFmpeg
|
|||||||
# This could be handy for archiving the generated documentation or
|
# This could be handy for archiving the generated documentation or
|
||||||
# if some version control system is used.
|
# if some version control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER =
|
PROJECT_NUMBER = 2.5
|
||||||
|
|
||||||
# With the PROJECT_LOGO tag one can specify a logo or icon that is included
|
# With the PROJECT_LOGO tag one can specify a logo or icon that is included
|
||||||
# in the documentation. The maximum height of the logo should not exceed 55
|
# in the documentation. The maximum height of the logo should not exceed 55
|
||||||
|
@ -2780,7 +2780,7 @@ static void spectral_to_sample(AACContext *ac)
|
|||||||
apply_channel_coupling(ac, che, type, i, AFTER_IMDCT, apply_independent_coupling);
|
apply_channel_coupling(ac, che, type, i, AFTER_IMDCT, apply_independent_coupling);
|
||||||
che->present = 0;
|
che->present = 0;
|
||||||
} else if (che) {
|
} else if (che) {
|
||||||
av_log(ac->avctx, AV_LOG_WARNING, "ChannelElement %d.%d missing \n", type, i);
|
av_log(ac->avctx, AV_LOG_VERBOSE, "ChannelElement %d.%d missing \n", type, i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -350,7 +350,7 @@ static int iec61883_read_header(AVFormatContext *context)
|
|||||||
if (!dv->max_packets)
|
if (!dv->max_packets)
|
||||||
dv->max_packets = 100;
|
dv->max_packets = 100;
|
||||||
|
|
||||||
if (dv->type == IEC61883_HDV) {
|
if (CONFIG_MPEGTS_DEMUXER && dv->type == IEC61883_HDV) {
|
||||||
|
|
||||||
/* Init HDV receive */
|
/* Init HDV receive */
|
||||||
|
|
||||||
@ -444,7 +444,7 @@ static int iec61883_close(AVFormatContext *context)
|
|||||||
pthread_mutex_destroy(&dv->mutex);
|
pthread_mutex_destroy(&dv->mutex);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (dv->type == IEC61883_HDV) {
|
if (CONFIG_MPEGTS_DEMUXER && dv->type == IEC61883_HDV) {
|
||||||
iec61883_mpeg2_recv_stop(dv->iec61883_mpeg2);
|
iec61883_mpeg2_recv_stop(dv->iec61883_mpeg2);
|
||||||
iec61883_mpeg2_close(dv->iec61883_mpeg2);
|
iec61883_mpeg2_close(dv->iec61883_mpeg2);
|
||||||
avpriv_mpegts_parse_close(dv->mpeg_demux);
|
avpriv_mpegts_parse_close(dv->mpeg_demux);
|
||||||
|
@ -519,6 +519,9 @@ OBJS-$(CONFIG_UNIX_PROTOCOL) += unix.o
|
|||||||
|
|
||||||
OBJS-$(HAVE_LIBC_MSVCRT) += file_open.o
|
OBJS-$(HAVE_LIBC_MSVCRT) += file_open.o
|
||||||
|
|
||||||
|
# libavdevice dependencies
|
||||||
|
OBJS-$(CONFIG_IEC61883_INDEV) += dv.o
|
||||||
|
|
||||||
# Windows resource file
|
# Windows resource file
|
||||||
SLIBOBJS-$(HAVE_GNU_WINDRES) += avformatres.o
|
SLIBOBJS-$(HAVE_GNU_WINDRES) += avformatres.o
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user