当前位置:  编程技术>移动开发
本页文章导读:
    ▪多媒体研究3-AAC札记1-SF索引表与Duration计算        多媒体研究3-AAC笔记1-SF索引表与Duration计算 [写在最前面的] 越发觉得iteye(以前的javaeye)是个不错的技术讨论平台,所以决定先将以前的一些技术相关的文章都搬过来。一来备忘,二来系统.........
    ▪ 多媒体研究四-AAC简述、AAC帧首部        多媒体研究4-AAC简述、AAC帧首部 [写在最前面的] 越发觉得iteye(以前的javaeye)是个不错的技术讨论平台,所以决定先将以前的一些技术相关的文章都搬过来。一来备忘,二来系统化自己的知.........
    ▪ Listview实现多个栏目(多个标题+每个标题上的内容)       Listview实现多个栏目(多个标题+每个标题下的内容)  http://qsyz2002.blog.163.com/blog/static/7216669201143115331662/      其中日期标题部分视图布局: view sourceprint?1 <?xml version=”1.0″ encoding=”utf-8″.........

[1]多媒体研究3-AAC札记1-SF索引表与Duration计算
    来源: 互联网  发布时间: 2014-02-18
多媒体研究3-AAC笔记1-SF索引表与Duration计算

[写在最前面的] 越发觉得iteye(以前的javaeye)是个不错的技术讨论平台,所以决定先将以前的一些技术相关的文章都搬过来。一来备忘,二来系统化自己的知识。主观上是为了自己的积累与提高,希望客观上能给不相识的技术伙伴一点帮助。如果转载,请标注出处。

 

在AAC媒体文件中,以Sampling Frequency Index的方式记录AAC的采样率,下面的数组为对应表:AAC_Sampling_Frequency_Table[16] = {96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050, 16000, 12000, 11025, 8000, 7350, 0, 0, 0}

    AAC媒体文件的时长难为了我不少时间,现在终于明白了如何计算。

    首先要明确一点,AAC的每帧采样个数为1024,即每个AAC帧中包含1024个采样。

这样Frame_duration(s/f)=1024(Sample/f)/Sampling_Rate(Sample/s),File_duration(s)=Frame_duration(s/f)*Frame_count(f)。

    例子,某个AAC媒体,采样率16000Hz,938帧,时长=(1024/16000)*938约为60秒。


    
[2] 多媒体研究四-AAC简述、AAC帧首部
    来源: 互联网  发布时间: 2014-02-18
多媒体研究4-AAC简述、AAC帧首部

[写在最前面的] 越发觉得iteye(以前的javaeye)是个不错的技术讨论平台,所以决定先将以前的一些技术相关的文章都搬过来。一来备忘,二来系统化自己的知识。主观上是为了自己的积累与提高,希望客观上能给不相识的技术伙伴一点帮助。如果转载,请标注出处。

 

 AAC-Advanced Audio Coding高级音频编码,目前渐成主流的音频编码,是有损音频压缩格式。已被MPEG4标准的文件容器格式采用,估计MP3后的音频霸主就是它了。

AAC帧首部7个字节:

名称 bits 信息 备注 Syncword 12 全1 同步码 ID 1 0  mpeg4
1  mpeg2   Layer 2 00   protection_absent 1     Profile 2 0  main
1  LC
2  SSR
3  reserved   Sampling Frequency 4   index见SF表 Private bit 1 0   Channel Cfg 3     Original Copy 1     Home 1     Emphasis 2   if ID==0才有 CopyRight ID 1 0   CopyRight Start 1 0   Frame Length 13   包含帧首部7字节

 


    
[3] Listview实现多个栏目(多个标题+每个标题上的内容)
    来源: 互联网  发布时间: 2014-02-18
Listview实现多个栏目(多个标题+每个标题下的内容)

 http://qsyz2002.blog.163.com/blog/static/7216669201143115331662/

 

 

 其中日期标题部分视图布局:

view sourceprint?1 <?xml version=”1.0″ encoding=”utf-8″?>  

 <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”  

 android:orientation=”vertical” android:layout_width=”fill_parent”  

 android:layout_height=”10dip” android:background=”@drawable/section_background”>  

 <TextView android:id=”@+id/section_title”  

 android:layout_width=”fill_parent” android:layout_height=”match_parent” />  

 </LinearLayout> 

 

带图片的条目布局部分:

<?xml version=”1.0″ encoding=”utf-8″?>  

 <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”  

 android:layout_width=”fill_parent” android:layout_height=”wrap_content”  

android:orientation=”horizontal” >  

 <ImageView android:id=”@+id/image” android:src=/blog_article/”@drawable/p”/index.html  

 android:layout_width=”wrap_content” android:layout_height=”wrap_content” />  

 <TextView android:id=”@+id/title” android:layout_width=”wrap_content”  

 android:layout_height=”wrap_content” />  

 </LinearLayout> 

 

 

 

问题在于,如何在ListView中既有标题条目又有内容条目。

这里用到了设计模式中的Iterator模式。在java代码中示例有Iterator,可以迭代ArrayList,HashSet等不同的数据结构对象。

 

ListElement是接口:

package com.easymorse.listview.customer;    

 import android.content.Context;  

 import android.view.LayoutInflater;  

import android.view.View;  

  

 public interface ListElement {  

 public int getLayoutId();  

   

 public boolean isClickable();  

 

 public View getViewForListElement(LayoutInflater layoutInflater,  

 Context context, View view);  

} 

  

其中:

  • getLayoutId()返回布局的值;
  • isClickable()返回是否可点击;
  • getViewForListElement()返回视图对象。

这个接口有两个实现:

  • SectionListElement,用于实现标题条目;
  • ContentListElement,用于实现内容条目。

见SectionListElement代码:

package com.easymorse.listview.customer;    

 import android.content.Context;  

 import android.view.LayoutInflater;  

 import android.view.View;  

 import android.widget.LinearLayout;  

 import android.widget.TextView;  

  

 public class SectionListElement implements ListElement {  

  

 private String text;  
   

public void setText(String text) {  

 this.text = text;  

 }  
   

 @Override 

 public int getLayoutId() {  

 return R.layout.section;  

 }  
   

 @Override 

 public boolean isClickable() {  

 return false;  

 }     

 @Override 

public View getViewForListElement(LayoutInflater layoutInflater,  

 Context context, View view) {  

 LinearLayout layout = (LinearLayout) layoutInflater.inflate(getLayoutId(), null);  

TextView textView=(TextView) layout.findViewById(R.id.section_title);  

 textView.setText(text);  

 return layout;  

}  

    

 } 

 

见ContentListElement代码:

public class ContentListElement implements ListElement {  
   

 private String title;  

public void setTitle(String title) {  

 this.title = title;  

 }  
 

@Override 

 public int getLayoutId() {  

return R.layout.item;  
}  

 

 @Override 

 public View getViewForListElement(LayoutInflater layoutInflater,  

 Context context, View view) {  
 LinearLayout layout = (LinearLayout) layoutInflater.inflate(  

getLayoutId(), null);  

 TextView textView = (TextView) layout.findViewById(R.id.title);  

 textView.setText(title);  

 return layout; 

 

 

ListView需要ListAdapter的实现。在这里是直接集成BaseAdapter来实现的。用于交给ListView生成出列表。代码:

public class CustomerListAdapter extends BaseAdapter {  
private Context context;  

  

 protected ArrayList<ListElement> resultList;  

 

 private LayoutInflater layoutInflater;  

  

 public CustomerListAdapter(Context context) {  

 super();  

 this.context = context;  
 this.layoutInflater = (LayoutInflater) context  

 .getSystemService(“layout_inflater”);  

 this.resultList = new ArrayList<ListElement>();  

 }  

 

@Override 

 public int getCount() {  

 return this.resultList.size();  

 }  

    
@Override 

 public Object getItem(int position) {  

 return this.resultList.get(position);  

 }  

    

 @Override 

public long getItemId(int position) {  

 return position;  

}  

    

 @Override 

 public View getView(int position, View view, ViewGroup parent) {  

 return this.resultList.get(position).getViewForListElement(  

 layoutInflater, context, view);  

}  

   

 public void addList(List<ListElement> elements) {  

 this.resultList.addAll(elements);  

 }  

    

 @Override 

 public boolean isEnabled(int position) {  

 return this.resultList.get(position).isClickable();  
 }  

 
 public void addSectionHeaderItem(String text) {  

 SectionListElement element = new SectionListElement();  

 element.setText(text);  

 this.resultList.add(element);  

 }  

} 

  

在Activity中创建CustomerListAdapter以及设置它的代码部分:

CustomerListAdapter adapter = new CustomerListAdapter(this);  


 adapter.addSectionHeaderItem(“2002-3-1″);  

  

 ArrayList<ListElement> elements = new ArrayList<ListElement>();  

 for (int i = 0; i < 5; i++) {  

ContentListElement element = new ContentListElement();  

 element.setTitle(“哈利波特第” + (i+1) + “集”);  

elements.add(element);  

}  

 adapter.addList(elements);  

   

adapter.addSectionHeaderItem(“2002-2-2″);  

    

 elements = new ArrayList<ListElement>();  

 for (int i = 0; i < 3; i++) {  

ContentListElement element = new ContentListElement();  

 element.setTitle(“指环王第” + (i+1) + “集”);  

elements.add(element);  

}  

 adapter.addList(elements);  

   

 this.setListAdapter(adapter); 

  

这里ListActivity,还需要注意两件事情,Activity要继承ListActivity。另外,在layout中:

ListView的id要用系统自带的

 


    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
sqlserver iis7站长之家
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3