在Android程序中获取avc中的数据

在Android程序中获取avc中的数据,也就是AVCDecoderConfigurationRecord 。

你可以先录制一小段视频保存在sd卡中。

然后根据以下代码来获取数据。这样就可以根据不同的手机或者不同的分辨率来调整sps pps或者avc了

[java] view plain copy print ?
  1. package com.ppmeet.util;  
  2.   
  3. import java.io.File;  
  4. import java.io.FileInputStream;  
  5. import java.io.IOException;  
  6. import java.io.InputStream;  
  7.   
  8. /** 
  9.  * class name:MyDetect<BR> 
  10.  * class description:动态获取avc中的数据<BR> 
  11.  * PS: <BR> 
  12.  *  
  13.  * @version 1.00 2011/10/21 
  14.  * @author CODYY)peijiangping 
  15.  */  
  16. public class MyDetect {  
  17.     final static int MAX_HEADER_LENGTH = 128;  
  18.     public static int mdataPosition = 32;  
  19.     private static byte[] checkBuffer = new byte[1024 * 4];  
  20.     public static byte[] avcdata = null;  
  21.   
  22.     public static boolean checkMP4_MOOV(String fileName) throws IOException {  
  23.         File fin = new File(fileName);  
  24.         if (fin.isFile()) {  
  25.             InputStream is = new FileInputStream(fin.getAbsolutePath());  
  26.             int pos;  
  27.             int fms = 0;  
  28.             boolean isOK;  
  29.             int n;  
  30.             while (true) {  
  31.                 isOK = false;  
  32.                 n = is.read(checkBuffer);  
  33.                 if (n < 0) {  
  34.                     break;  
  35.                 }  
  36.                 for (pos = 0; pos < n; pos++) {  
  37.                     byte tmp = checkBuffer[pos];  
  38.                     switch (tmp) {  
  39.                     case (byte'a':  
  40.                         if (fms == 0)  
  41.                             fms = 1;  
  42.                         else  
  43.                             fms = 0;  
  44.                         break;  
  45.   
  46.                     case (byte'v':  
  47.                         if (fms == 1)  
  48.                             fms = 2;  
  49.                         else  
  50.                             fms = 0;  
  51.                         break;  
  52.                     case (byte'c':  
  53.                         if (fms == 2)  
  54.                             fms = 3;  
  55.                         else  
  56.                             fms = 0;  
  57.                         break;  
  58.                     case (byte'C':  
  59.                         if (fms == 3)  
  60.                             fms = 4;  
  61.                         else  
  62.                             fms = 0;  
  63.                         break;  
  64.                     case (byte0x01:  
  65.                         if (fms == 4)  
  66.                             fms = 5;  
  67.                         else  
  68.                             fms = 0;  
  69.                         break;  
  70.                     default:  
  71.                         fms = 0;  
  72.                         break;  
  73.                     }  
  74.                     if (fms == 5) {  
  75.                         isOK = true;  
  76.                         break;  
  77.                     }  
  78.                 }  
  79.                 if (isOK) {  
  80.                     for (int i = 0; i < checkBuffer.length - pos; i++) {  
  81.                         checkBuffer[i] = checkBuffer[i + pos];  
  82.                     }  
  83.                     if (pos > checkBuffer.length - MAX_HEADER_LENGTH) {  
  84.                         is.read(checkBuffer, checkBuffer.length - pos,  
  85.                                 MAX_HEADER_LENGTH);  
  86.                     }  
  87.                     getAVCData(checkBuffer);  
  88.                     return true;  
  89.                 }  
  90.             }  
  91.         }  
  92.         return false;  
  93.     }  
  94.   
  95.     private static byte[] getAVCData(byte[] avc) {  
  96.         int avcsize = 0;  
  97.         for (int index = 0; index < avc.length; index++) {  
  98.             for (int i = 0; i < avc.length; i++) {  
  99.                 if (i > 31 && avc[i] == 0) {  
  100.                     avcsize = i;  
  101.                     break;  
  102.                 }  
  103.             }  
  104.             avcdata = new byte[avcsize];  
  105.             System.arraycopy(avc, 0, avcdata, 0, avcsize);  
  106.         }  
  107.         return avcdata;  
  108.     }  


你可能感兴趣的:(在Android程序中获取avc中的数据)