[FFmpeg-cvslog] avdevice/decklink_dec: Fix ;;

Michael Niedermayer git at videolan.org
Thu Feb 15 15:06:47 EET 2018


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Thu Feb 15 13:48:52 2018 +0100| [75027066d8e85ccf42b83f6cf1c3085221148f42] | committer: Michael Niedermayer

avdevice/decklink_dec: Fix ;;

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=75027066d8e85ccf42b83f6cf1c3085221148f42
---

 libavdevice/decklink_dec.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp
index c3bb46e18f..28a748a28f 100644
--- a/libavdevice/decklink_dec.cpp
+++ b/libavdevice/decklink_dec.cpp
@@ -1070,7 +1070,7 @@ av_cold int ff_decklink_read_header(AVFormatContext *avctx)
         break;
     case bmdFormat8BitARGB:
         st->codecpar->codec_id    = AV_CODEC_ID_RAWVIDEO;
-        st->codecpar->codec_tag   = avcodec_pix_fmt_to_codec_tag((enum AVPixelFormat)st->codecpar->format);;
+        st->codecpar->codec_tag   = avcodec_pix_fmt_to_codec_tag((enum AVPixelFormat)st->codecpar->format);
         st->codecpar->format      = AV_PIX_FMT_0RGB;
         st->codecpar->bit_rate    = av_rescale(ctx->bmd_width * ctx->bmd_height * 32, st->time_base.den, st->time_base.num);
         break;



More information about the ffmpeg-cvslog mailing list