Blame frontend/brhist.h

Packit 47f805
/*
Packit 47f805
 *    Bitrate histogram include file
Packit 47f805
 *
Packit 47f805
 *    Copyright (c) 2000 Mark Taylor
Packit 47f805
 *
Packit 47f805
 * This library is free software; you can redistribute it and/or
Packit 47f805
 * modify it under the terms of the GNU Library General Public
Packit 47f805
 * License as published by the Free Software Foundation; either
Packit 47f805
 * version 2 of the License, or (at your option) any later version.
Packit 47f805
 *
Packit 47f805
 * This library is distributed in the hope that it will be useful,
Packit 47f805
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 47f805
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Packit 47f805
 * Library General Public License for more details.
Packit 47f805
 *
Packit 47f805
 * You should have received a copy of the GNU Library General Public
Packit 47f805
 * License along with this library; if not, write to the
Packit 47f805
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Packit 47f805
 * Boston, MA 02111-1307, USA.
Packit 47f805
 */
Packit 47f805
Packit 47f805
#ifndef LAME_BRHIST_H
Packit 47f805
#define LAME_BRHIST_H
Packit 47f805
Packit 47f805
#include "lame.h"
Packit 47f805
Packit 47f805
#if defined(__cplusplus)
Packit 47f805
extern "C" {
Packit 47f805
#endif
Packit 47f805
Packit 47f805
int     brhist_init(const lame_global_flags * gf, const int bitrate_kbps_min,
Packit 47f805
                    const int bitrate_kbps_max);
Packit 47f805
void    brhist_disp(const lame_global_flags * gf);
Packit 47f805
void    brhist_jump_back(void);
Packit 47f805
Packit 47f805
#if defined(__cplusplus)
Packit 47f805
}
Packit 47f805
#endif
Packit 47f805
Packit 47f805
#endif /* LAME_BRHIST_H */