mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 01:25:25 +00:00
Merge remote-tracking branch 'cehoyos/master'
* cehoyos/master: Fix standalone compilation of the iec61883 input device. Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
8d87c0b3ad
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user