[FFmpeg-cvslog] CrystalHD: Always identify H.264 streams as Annex B.

Philip Langdale git at videolan.org
Wed Jun 22 06:04:41 CEST 2011


ffmpeg | branch: master | Philip Langdale <philipl at overt.org> | Sat Jun 18 10:58:42 2011 -0700| [b2ad33dead8e97b8eee4e707e54dcd64b4854b8d] | committer: Philip Langdale

CrystalHD: Always identify H.264 streams as Annex B.

Now that we're converting all streams to Annex B format, we
can identify them as such to the hardware.

Signed-off-by: Philip Langdale <philipl at overt.org>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b2ad33dead8e97b8eee4e707e54dcd64b4854b8d
---

 libavcodec/crystalhd.c |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/libavcodec/crystalhd.c b/libavcodec/crystalhd.c
index 632d774..173f356 100644
--- a/libavcodec/crystalhd.c
+++ b/libavcodec/crystalhd.c
@@ -402,8 +402,6 @@ static av_cold int init(AVCodecContext *avctx)
             uint8_t *dummy_p;
             int dummy_int;
 
-            format.startCodeSz = (avctx->extradata[4] & 0x03) + 1;
-
             priv->bsfc = av_bitstream_filter_init("h264_mp4toannexb");
             if (!priv->bsfc) {
                 av_log(avctx, AV_LOG_ERROR,
@@ -412,11 +410,9 @@ static av_cold int init(AVCodecContext *avctx)
             }
             av_bitstream_filter_filter(priv->bsfc, avctx, NULL, &dummy_p,
                                        &dummy_int, NULL, 0, 0);
-
-            format.pMetaData  = avctx->extradata;
-            format.metaDataSz = avctx->extradata_size;
         }
-        break;
+        subtype = BC_MSUBTYPE_H264;
+        // Fall-through
     case BC_MSUBTYPE_H264:
         format.startCodeSz = 4;
         // Fall-through



More information about the ffmpeg-cvslog mailing list