mirror of
https://github.com/mpv-player/mpv
synced 2024-12-22 06:42:03 +00:00
6489b112ad
All relevant authors of the current code have agreed. As always, there are the usual historical artifacts that could be mentioned. For example, there used to be a large number of decoders by various authors who were not asked, but whose code was all 100% removed. (Mostly due to FFmpeg providing all codecs.) One point of contention is that Nick Kurshev might have refactored the old audio decoder code in 2001. Basically, there are hints that it might have been done by him, such as Arpi's commit message stating that the code was imported from MPlayerXP (Nick's fork), or all the files having his name in the "maintainer" field. On the other hand, the murky history of ad.h weakens this - it could be that Arpi started this work, and Nick took it (and possibly finished it). In any case, Nick could not be reached, so there is no agreement for LGPL relicensing from him. We're changing the license anyway, and assume that his change in itself is not copyrightable. He only moved code, and in addition used the equivalent video decoder framework (done by Arpi, who agreed) as template. For example, ad_functions_s was basically vd_functions_s, which the signature of the decode callback changed to the same as audio_decode(). ad_functions_s also had a comment that said it interfaces with "video decoder drivers" (I'm fixing this comment in this commit). I verified that no additional code was added that is copyright-relevant, still in today's code, and not copied from the existing code at the time (either from the previous audio decoder code or the video framework code). What apparently matters here is that none of the old code was not written by Nick, and the authors of the old code have given his agreement, and (probably) that Nick didn't add actual new code (none that would have survived), that was not trivially based on the old one (i.e. no new copyrightable "work"). A copyright expert told me that this kind of change can be considered not relevant for copyright, so here we go. Rewriting this would end with the same code anyway, and the naming conventions can't be copyrighted.
50 lines
1.6 KiB
C
50 lines
1.6 KiB
C
/*
|
|
* This file is part of mpv.
|
|
*
|
|
* mpv is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* mpv is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef MPLAYER_AD_H
|
|
#define MPLAYER_AD_H
|
|
|
|
#include "common/codecs.h"
|
|
#include "demux/stheader.h"
|
|
#include "demux/demux.h"
|
|
|
|
#include "audio/format.h"
|
|
#include "audio/audio.h"
|
|
#include "dec_audio.h"
|
|
|
|
struct mp_decoder_list;
|
|
|
|
/* interface of audio decoder drivers */
|
|
struct ad_functions {
|
|
const char *name;
|
|
void (*add_decoders)(struct mp_decoder_list *list);
|
|
int (*init)(struct dec_audio *da, const char *decoder);
|
|
void (*uninit)(struct dec_audio *da);
|
|
int (*control)(struct dec_audio *da, int cmd, void *arg);
|
|
// Return whether or not the packet has been consumed.
|
|
bool (*send_packet)(struct dec_audio *da, struct demux_packet *pkt);
|
|
// Return whether decoding is still going on (false if EOF was reached).
|
|
// Never returns false & *out set, but can return true with !*out.
|
|
bool (*receive_frame)(struct dec_audio *da, struct mp_audio **out);
|
|
};
|
|
|
|
enum ad_ctrl {
|
|
ADCTRL_RESET = 1, // flush and reset state, e.g. after seeking
|
|
};
|
|
|
|
#endif /* MPLAYER_AD_H */
|