summaryrefslogtreecommitdiff
path: root/libavdevice/decklink_dec.cpp
diff options
context:
space:
mode:
authorPatrick Felt <patrick.felt@echostar.com>2016-08-02 22:46:28 -0700
committerTimothy Gu <timothygu99@gmail.com>2016-08-02 22:46:28 -0700
commite9659d1a0b77c65be114fe5cd4228cac3356f6eb (patch)
treef6f459e28de311a5f0921da6616ce8f6b88573a1 /libavdevice/decklink_dec.cpp
parente0b8cba0580e8a1ccf02f4c6c9bc1f448eec1ac8 (diff)
decklink: Remove unneeded spaces in initializers
Diffstat (limited to 'libavdevice/decklink_dec.cpp')
-rw-r--r--libavdevice/decklink_dec.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp
index fc81d4d10e..934bad8588 100644
--- a/libavdevice/decklink_dec.cpp
+++ b/libavdevice/decklink_dec.cpp
@@ -206,8 +206,8 @@ private:
decklink_input_callback::decklink_input_callback(AVFormatContext *_avctx) : m_refCount(0)
{
avctx = _avctx;
- decklink_cctx *cctx = (struct decklink_cctx *) avctx->priv_data;
- ctx = (struct decklink_ctx *) cctx->ctx;
+ decklink_cctx *cctx = (struct decklink_cctx *)avctx->priv_data;
+ ctx = (struct decklink_ctx *)cctx->ctx;
initial_audio_pts = initial_video_pts = AV_NOPTS_VALUE;
pthread_mutex_init(&m_mutex, NULL);
}
@@ -431,8 +431,8 @@ HRESULT decklink_input_callback::VideoInputFormatChanged(
static HRESULT decklink_start_input(AVFormatContext *avctx)
{
- struct decklink_cctx *cctx = (struct decklink_cctx *) avctx->priv_data;
- struct decklink_ctx *ctx = (struct decklink_ctx *) cctx->ctx;
+ struct decklink_cctx *cctx = (struct decklink_cctx *)avctx->priv_data;
+ struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx;
ctx->input_callback = new decklink_input_callback(avctx);
ctx->dli->SetCallback(ctx->input_callback);
@@ -443,8 +443,8 @@ extern "C" {
av_cold int ff_decklink_read_close(AVFormatContext *avctx)
{
- struct decklink_cctx *cctx = (struct decklink_cctx *) avctx->priv_data;
- struct decklink_ctx *ctx = (struct decklink_ctx *) cctx->ctx;
+ struct decklink_cctx *cctx = (struct decklink_cctx *)avctx->priv_data;
+ struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx;
if (ctx->capture_started) {
ctx->dli->StopStreams();
@@ -462,7 +462,7 @@ av_cold int ff_decklink_read_close(AVFormatContext *avctx)
av_cold int ff_decklink_read_header(AVFormatContext *avctx)
{
- struct decklink_cctx *cctx = (struct decklink_cctx *) avctx->priv_data;
+ struct decklink_cctx *cctx = (struct decklink_cctx *)avctx->priv_data;
struct decklink_ctx *ctx;
AVStream *st;
HRESULT result;
@@ -638,8 +638,8 @@ error:
int ff_decklink_read_packet(AVFormatContext *avctx, AVPacket *pkt)
{
- struct decklink_cctx *cctx = (struct decklink_cctx *) avctx->priv_data;
- struct decklink_ctx *ctx = (struct decklink_ctx *) cctx->ctx;
+ struct decklink_cctx *cctx = (struct decklink_cctx *)avctx->priv_data;
+ struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx;
AVFrame *frame = ctx->video_st->codec->coded_frame;
avpacket_queue_get(&ctx->queue, pkt, 1);