avi 헤더 작성 질문!!!!!!

boss0327의 이미지


그레인미디어 사 칩셋을 사용하여 DVR 제작중입니다.
음성 데이터를 영상데이터와 함께 avi 파일로 저장하려 합니다.
아래는 오디오 헤더를 작성하는 api 소스의 일 부분입니다.
상용 플레이어에서 재생할 때 스트림 데이터의 정보 값을 정상으로 보여집니다.
그런데 음성이 나오질 않아서 api를 확인 해 보니 아래와 같이 1234, 5678 12345, 56789 와 같은 이상한 데이터가 들어가 있더군요.
그래서 avi를 잘 아시는 분께 질문 드립니다.
header->dwLength , header->dwSuggestedBufferSize , format->audio_format.nAvgBytesPerSec , format->audio_format.nBlockAlign , format->audio_format.cbSize 이 놈들은 무엇을 뜻하며 어느 데이터가 들어가야 하는지 문의 드립니다.!!

memset(header, 0x0, sizeof(AviStreamHeader));

*((unsigned int*)header->fcc) = GM_MAKE_FOURCC('s','t','r','h');

header->cb = sizeof(AviStreamHeader)-8;

*((unsigned int*)header->fccType) = fcc_type;

*((unsigned int*)header->fccHandler) = 0/*type*/;

header->dwFlags = 0x0;

header->wPriority = 0;

header->wLanguage = 0;

header->dwInitialFrames = 0;

header->dwScale = 1001000;

header->dwRate = 176400;

header->dwStart = 0;

header->dwLength = 12345; //<==need update

header->dwSuggestedBufferSize = 56789;

header->dwQuality = -1;

header->dwSampleSize = 4;

memset(format, 0x0, sizeof(GmAviStreamFormat));

format->audio_format.wFormatTag = 1;

format->audio_format.nChannels = channels;

format->audio_format.nSamplesPerSec = 8000;

format->audio_format.nAvgBytesPerSec = 1234;

format->audio_format.nBlockAlign = 5678;

format->audio_format.wBitsPerSample = 16;

format->audio_format.cbSize = 3456;

bushi의 이미지

AVI 를 만든 사람이 제일 잘 알겠죠. 본문에 적힌 링크를 따라가며 공부하세요.
http://msdn.microsoft.com/en-us/library/windows/desktop/dd318189%28v=vs.85%29.aspx

헤더가 파일 선두에 와야 하는 경우,
처음 파일을 만들기 시작할 때는 헤더에 의미없는 값을 적어서 파일에 기록하고,
최종적으로 파일을 마무리하는 시점에서 헤더를 적절히 갱신해서 파일에 다시 써주게됩니다.
본문에 적힌 1234, 5678 따위의 값들은,
기록된 AVI 파일만 보고도 멍청한 프로그래머가 뭘 빼먹고 갱신하지 않았는지 쉽게 찾아내기 위한 마커라고 보시면 되겠습니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.