~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavfilter/buffersink.c

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
529
529
    { NULL },
530
530
};
531
531
 
532
 
AVFilter avfilter_vsink_ffbuffersink = {
 
532
AVFilter ff_vsink_ffbuffersink = {
533
533
    .name      = "ffbuffersink",
534
534
    .description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
535
535
    .priv_size = sizeof(BufferSinkContext),
551
551
    { NULL },
552
552
};
553
553
 
554
 
AVFilter avfilter_asink_ffabuffersink = {
 
554
AVFilter ff_asink_ffabuffersink = {
555
555
    .name      = "ffabuffersink",
556
556
    .description = NULL_IF_CONFIG_SMALL("Buffer audio frames, and make them available to the end of the filter graph."),
557
557
    .init_opaque = asink_init,
573
573
    { NULL }
574
574
};
575
575
 
576
 
AVFilter avfilter_vsink_buffer = {
 
576
AVFilter ff_vsink_buffer = {
577
577
    .name        = "buffersink",
578
578
    .description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
579
579
    .priv_size   = sizeof(BufferSinkContext),
595
595
    { NULL }
596
596
};
597
597
 
598
 
AVFilter avfilter_asink_abuffer = {
 
598
AVFilter ff_asink_abuffer = {
599
599
    .name        = "abuffersink",
600
600
    .description = NULL_IF_CONFIG_SMALL("Buffer audio frames, and make them available to the end of the filter graph."),
601
601
    .priv_class  = &abuffersink_class,