mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-04-12 10:46:29 +00:00
added simple depacketizer and test h264 file
This commit is contained in:
23
Limelight-iOS/VideoDecoder.m
Normal file
23
Limelight-iOS/VideoDecoder.m
Normal file
@@ -0,0 +1,23 @@
|
||||
//
|
||||
// VideoDecoder.m
|
||||
// Limelight-iOS
|
||||
//
|
||||
// Created by Diego Waxemberg on 1/18/14.
|
||||
// Copyright (c) 2014 Diego Waxemberg. All rights reserved.
|
||||
//
|
||||
|
||||
#import "VideoDecoder.h"
|
||||
|
||||
@implementation VideoDecoder
|
||||
- (void)decode:(uint8_t *)buffer length:(unsigned int)length
|
||||
{
|
||||
for (int i = 0; i < length; i++) {
|
||||
printf("%02x ", buffer[i]);
|
||||
if (i != 0 && i % 16 == 0) {
|
||||
NSLog(@"");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@end
|
||||
Reference in New Issue
Block a user