~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavfilter/split.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:
113
113
    { NULL }
114
114
};
115
115
 
116
 
AVFilter avfilter_vf_split = {
 
116
AVFilter ff_vf_split = {
117
117
    .name        = "split",
118
118
    .description = NULL_IF_CONFIG_SMALL("Pass on the input to N video outputs."),
119
119
    .priv_size   = sizeof(SplitContext),
134
134
    { NULL }
135
135
};
136
136
 
137
 
AVFilter avfilter_af_asplit = {
 
137
AVFilter ff_af_asplit = {
138
138
    .name        = "asplit",
139
139
    .description = NULL_IF_CONFIG_SMALL("Pass on the audio input to N audio outputs."),
140
140
    .priv_size   = sizeof(SplitContext),