⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lqt_lame.c

📁 这个库实现了录象功能
💻 C
字号:
/******************************************************************************* lqt_lame.c libquicktime - A library for reading and writing quicktime/avi/mp4 files. http://libquicktime.sourceforge.net Copyright (C) 2002 Heroine Virtual Ltd. Copyright (C) 2002-2007 Members of the libquicktime project. This library 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. This library 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 this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA*******************************************************************************/ #include "lqt_private.h"#include <quicktime/lqt_codecapi.h>#include "lame_codec.h"static char * fourccs_mp3[]  = { QUICKTIME_MP3, (char*)0 };static lqt_parameter_info_static_t encode_parameters_lame[] =  {    {      .name =        "mp3_bitrate_mode",      .real_name =   TRS("Bitrate mode"),      .type =        LQT_PARAMETER_STRINGLIST,      .val_default = { .val_string = "CBR" },      .stringlist_options = (char*[]){ TRS("CBR"), TRS("ABR"), TRS("VBR"), (char*)0 },      .help_string = TRS("CBR: Constant bitrate\nVBR: Variable bitrate\n"                         "ABR: Average bitrate")    },    {       .name =        "mp3_bitrate",      .real_name =   TRS("Nominal Bitrate (ABR/CBR)"),      .type =        LQT_PARAMETER_INT,      .val_default = { 256000 },      .help_string = TRS("Bitrate in bits per second. For CBR, this must be a "                         "valid MP3 bitrate")    },    {       .name =        "mp3_bitrate_min",      .real_name =   TRS("Minimum Bitrate (ABR)"),      .type =        LQT_PARAMETER_INT,      .val_default = { 64000 },      .help_string = TRS("Minimum ABR bitrate in bits per second. This must be a "                         "valid MP3 bitrate")    },    {       .name =        "mp3_bitrate_max",      .real_name =   TRS("Maximum Bitrate (ABR)"),      .type =        LQT_PARAMETER_INT,      .val_default = { 320000 },      .help_string = TRS("Maximum ABR bitrate in bits per second. This must be a "                         "valid MP3 bitrate")    },    {      .name =        "mp3_quality",      .real_name =   TRS("Quality (0 = best)"),      .type =        LQT_PARAMETER_INT,      .val_default = { 0 },      .val_min =     { .val_int = 0 },      .val_max =     { .val_int = 9 },      .help_string = TRS("0: Slowest encoding, best quality\n"                         "9: Fastest encoding, worst quality")    },    {      .name =        "mp3_quality_vbr",      .real_name =   TRS("VBR Quality (0 = best)"),      .type =        LQT_PARAMETER_INT,      .val_default = { 0 },      .val_min =     { .val_int = 0 },      .val_max =     { .val_int = 9 },      .help_string = TRS("VBR Quality level. 0: best, 9: worst")    },    { /* End of paramaters */ }  };static lqt_codec_info_static_t codec_info_lame =  {    .name =                "lame",    .long_name =           TRS("Lame mp3 encoder"),    .description =         TRS("Lame mp3 encoder (see http://www.mp3dev.org)"),    .fourccs =             fourccs_mp3,    .wav_ids =             (int[]){ 0x55, LQT_WAV_ID_NONE },    .type =                LQT_CODEC_AUDIO,    .direction =           LQT_DIRECTION_ENCODE,    .encoding_parameters = encode_parameters_lame,    .decoding_parameters = (lqt_parameter_info_static_t*)0,    .compatibility_flags = LQT_FILE_QT_OLD | LQT_FILE_QT | LQT_FILE_AVI | LQT_FILE_AVI_ODML  };LQT_EXTERN int get_num_codecs() { return 1; }LQT_EXTERN lqt_codec_info_static_t * get_codec_info(int index)  {  if(!index)    return &codec_info_lame;    return (lqt_codec_info_static_t*)0;  }/* *   Return the actual codec constructor */LQT_EXTERN lqt_init_audio_codec_func_t get_audio_codec(int index)  {  if(index == 0)    return quicktime_init_codec_lame;  return (lqt_init_audio_codec_func_t)0;  }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -