diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/post.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-engine/post.c b/src/xine-engine/post.c index af791c1f7..aa182d627 100644 --- a/src/xine-engine/post.c +++ b/src/xine-engine/post.c @@ -33,7 +33,7 @@ void _x_post_init(post_plugin_t *post, int num_audio_inputs, int num_video_input post->input = xine_list_new(); post->output = xine_list_new(); post->xine_post.audio_input = calloc(num_audio_inputs + 1, sizeof(xine_audio_port_t *)); - post->xine_post.audio_input = calloc(num_video_inputs + 1, sizeof(xine_video_port_t *)); + post->xine_post.video_input = calloc(num_video_inputs + 1, sizeof(xine_video_port_t *)); } |