Skip to content

Commit

Permalink
[h264Extract] Fix filling (duh!)
Browse files Browse the repository at this point in the history
  • Loading branch information
mean committed Oct 12, 2014
1 parent a88fa0f commit 3c37746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avidemux_core/ADM_coreUtils/src/ADM_infoExtractorH264.cpp
Expand Up @@ -608,7 +608,7 @@ uint8_t extractSPSInfo_lavcodec (uint8_t * data, uint32_t len, ADM_SPSInfo *spsi
uint8_t *myData = new uint8_t[myLen];
bool r=false;

memset(myData,myLen,1);
memset(myData,1,myLen);
mixDump(data,len);
// put dummy SPS tag + dummy filler at the end
// so that lavcodec can split it
Expand Down

0 comments on commit 3c37746

Please sign in to comment.